]>
Commit | Line | Data |
---|---|---|
79aceca5 | 1 | /* |
3fc6c082 | 2 | * PowerPC emulation for qemu: main translation routines. |
5fafdf24 | 3 | * |
76a66253 | 4 | * Copyright (c) 2003-2007 Jocelyn Mayer |
79aceca5 FB |
5 | * |
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. | |
10 | * | |
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. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
8167ee88 | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
79aceca5 | 18 | */ |
c6a1c22b FB |
19 | #include <stdarg.h> |
20 | #include <stdlib.h> | |
21 | #include <stdio.h> | |
22 | #include <string.h> | |
23 | #include <inttypes.h> | |
24 | ||
79aceca5 | 25 | #include "cpu.h" |
c6a1c22b | 26 | #include "exec-all.h" |
79aceca5 | 27 | #include "disas.h" |
57fec1fe | 28 | #include "tcg-op.h" |
ca10f867 | 29 | #include "qemu-common.h" |
0cfe11ea | 30 | #include "host-utils.h" |
79aceca5 | 31 | |
a7812ae4 PB |
32 | #include "helper.h" |
33 | #define GEN_HELPER 1 | |
34 | #include "helper.h" | |
35 | ||
8cbcb4fa AJ |
36 | #define CPU_SINGLE_STEP 0x1 |
37 | #define CPU_BRANCH_STEP 0x2 | |
38 | #define GDBSTUB_SINGLE_STEP 0x4 | |
39 | ||
a750fc0b | 40 | /* Include definitions for instructions classes and implementations flags */ |
9fddaa0c | 41 | //#define PPC_DEBUG_DISAS |
76a66253 | 42 | //#define DO_PPC_STATISTICS |
79aceca5 | 43 | |
d12d51d5 | 44 | #ifdef PPC_DEBUG_DISAS |
93fcfe39 | 45 | # define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__) |
d12d51d5 AL |
46 | #else |
47 | # define LOG_DISAS(...) do { } while (0) | |
48 | #endif | |
a750fc0b JM |
49 | /*****************************************************************************/ |
50 | /* Code translation helpers */ | |
c53be334 | 51 | |
f78fb44e | 52 | /* global register indexes */ |
a7812ae4 | 53 | static TCGv_ptr cpu_env; |
1d542695 | 54 | static char cpu_reg_names[10*3 + 22*4 /* GPR */ |
f78fb44e | 55 | #if !defined(TARGET_PPC64) |
1d542695 | 56 | + 10*4 + 22*5 /* SPE GPRh */ |
f78fb44e | 57 | #endif |
a5e26afa | 58 | + 10*4 + 22*5 /* FPR */ |
47e4661c AJ |
59 | + 2*(10*6 + 22*7) /* AVRh, AVRl */ |
60 | + 8*5 /* CRF */]; | |
f78fb44e AJ |
61 | static TCGv cpu_gpr[32]; |
62 | #if !defined(TARGET_PPC64) | |
63 | static TCGv cpu_gprh[32]; | |
64 | #endif | |
a7812ae4 PB |
65 | static TCGv_i64 cpu_fpr[32]; |
66 | static TCGv_i64 cpu_avrh[32], cpu_avrl[32]; | |
67 | static TCGv_i32 cpu_crf[8]; | |
bd568f18 | 68 | static TCGv cpu_nip; |
6527f6ea | 69 | static TCGv cpu_msr; |
cfdcd37a AJ |
70 | static TCGv cpu_ctr; |
71 | static TCGv cpu_lr; | |
3d7b417e | 72 | static TCGv cpu_xer; |
cf360a32 | 73 | static TCGv cpu_reserve; |
a7812ae4 | 74 | static TCGv_i32 cpu_fpscr; |
a7859e89 | 75 | static TCGv_i32 cpu_access_type; |
f78fb44e | 76 | |
2e70f6ef PB |
77 | #include "gen-icount.h" |
78 | ||
79 | void ppc_translate_init(void) | |
80 | { | |
f78fb44e AJ |
81 | int i; |
82 | char* p; | |
2dc766da | 83 | size_t cpu_reg_names_size; |
b2437bf2 | 84 | static int done_init = 0; |
f78fb44e | 85 | |
2e70f6ef PB |
86 | if (done_init) |
87 | return; | |
f78fb44e | 88 | |
a7812ae4 | 89 | cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env"); |
a7812ae4 | 90 | |
f78fb44e | 91 | p = cpu_reg_names; |
2dc766da | 92 | cpu_reg_names_size = sizeof(cpu_reg_names); |
47e4661c AJ |
93 | |
94 | for (i = 0; i < 8; i++) { | |
2dc766da | 95 | snprintf(p, cpu_reg_names_size, "crf%d", i); |
a7812ae4 PB |
96 | cpu_crf[i] = tcg_global_mem_new_i32(TCG_AREG0, |
97 | offsetof(CPUState, crf[i]), p); | |
47e4661c | 98 | p += 5; |
2dc766da | 99 | cpu_reg_names_size -= 5; |
47e4661c AJ |
100 | } |
101 | ||
f78fb44e | 102 | for (i = 0; i < 32; i++) { |
2dc766da | 103 | snprintf(p, cpu_reg_names_size, "r%d", i); |
a7812ae4 | 104 | cpu_gpr[i] = tcg_global_mem_new(TCG_AREG0, |
f78fb44e AJ |
105 | offsetof(CPUState, gpr[i]), p); |
106 | p += (i < 10) ? 3 : 4; | |
2dc766da | 107 | cpu_reg_names_size -= (i < 10) ? 3 : 4; |
f78fb44e | 108 | #if !defined(TARGET_PPC64) |
2dc766da | 109 | snprintf(p, cpu_reg_names_size, "r%dH", i); |
a7812ae4 PB |
110 | cpu_gprh[i] = tcg_global_mem_new_i32(TCG_AREG0, |
111 | offsetof(CPUState, gprh[i]), p); | |
f78fb44e | 112 | p += (i < 10) ? 4 : 5; |
2dc766da | 113 | cpu_reg_names_size -= (i < 10) ? 4 : 5; |
f78fb44e | 114 | #endif |
1d542695 | 115 | |
2dc766da | 116 | snprintf(p, cpu_reg_names_size, "fp%d", i); |
a7812ae4 PB |
117 | cpu_fpr[i] = tcg_global_mem_new_i64(TCG_AREG0, |
118 | offsetof(CPUState, fpr[i]), p); | |
ec1ac72d | 119 | p += (i < 10) ? 4 : 5; |
2dc766da | 120 | cpu_reg_names_size -= (i < 10) ? 4 : 5; |
a5e26afa | 121 | |
2dc766da | 122 | snprintf(p, cpu_reg_names_size, "avr%dH", i); |
e2542fe2 | 123 | #ifdef HOST_WORDS_BIGENDIAN |
fe1e5c53 AJ |
124 | cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0, |
125 | offsetof(CPUState, avr[i].u64[0]), p); | |
126 | #else | |
a7812ae4 | 127 | cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0, |
fe1e5c53 AJ |
128 | offsetof(CPUState, avr[i].u64[1]), p); |
129 | #endif | |
1d542695 | 130 | p += (i < 10) ? 6 : 7; |
2dc766da | 131 | cpu_reg_names_size -= (i < 10) ? 6 : 7; |
ec1ac72d | 132 | |
2dc766da | 133 | snprintf(p, cpu_reg_names_size, "avr%dL", i); |
e2542fe2 | 134 | #ifdef HOST_WORDS_BIGENDIAN |
fe1e5c53 AJ |
135 | cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0, |
136 | offsetof(CPUState, avr[i].u64[1]), p); | |
137 | #else | |
a7812ae4 | 138 | cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0, |
fe1e5c53 AJ |
139 | offsetof(CPUState, avr[i].u64[0]), p); |
140 | #endif | |
1d542695 | 141 | p += (i < 10) ? 6 : 7; |
2dc766da | 142 | cpu_reg_names_size -= (i < 10) ? 6 : 7; |
f78fb44e | 143 | } |
f10dc08e | 144 | |
a7812ae4 | 145 | cpu_nip = tcg_global_mem_new(TCG_AREG0, |
bd568f18 AJ |
146 | offsetof(CPUState, nip), "nip"); |
147 | ||
6527f6ea AJ |
148 | cpu_msr = tcg_global_mem_new(TCG_AREG0, |
149 | offsetof(CPUState, msr), "msr"); | |
150 | ||
a7812ae4 | 151 | cpu_ctr = tcg_global_mem_new(TCG_AREG0, |
cfdcd37a AJ |
152 | offsetof(CPUState, ctr), "ctr"); |
153 | ||
a7812ae4 | 154 | cpu_lr = tcg_global_mem_new(TCG_AREG0, |
cfdcd37a AJ |
155 | offsetof(CPUState, lr), "lr"); |
156 | ||
a7812ae4 | 157 | cpu_xer = tcg_global_mem_new(TCG_AREG0, |
3d7b417e AJ |
158 | offsetof(CPUState, xer), "xer"); |
159 | ||
cf360a32 | 160 | cpu_reserve = tcg_global_mem_new(TCG_AREG0, |
18b21a2f NF |
161 | offsetof(CPUState, reserve_addr), |
162 | "reserve_addr"); | |
cf360a32 | 163 | |
a7812ae4 PB |
164 | cpu_fpscr = tcg_global_mem_new_i32(TCG_AREG0, |
165 | offsetof(CPUState, fpscr), "fpscr"); | |
e1571908 | 166 | |
a7859e89 AJ |
167 | cpu_access_type = tcg_global_mem_new_i32(TCG_AREG0, |
168 | offsetof(CPUState, access_type), "access_type"); | |
169 | ||
f10dc08e | 170 | /* register helpers */ |
a7812ae4 | 171 | #define GEN_HELPER 2 |
f10dc08e AJ |
172 | #include "helper.h" |
173 | ||
2e70f6ef PB |
174 | done_init = 1; |
175 | } | |
176 | ||
79aceca5 FB |
177 | /* internal defines */ |
178 | typedef struct DisasContext { | |
179 | struct TranslationBlock *tb; | |
0fa85d43 | 180 | target_ulong nip; |
79aceca5 | 181 | uint32_t opcode; |
9a64fbe4 | 182 | uint32_t exception; |
3cc62370 FB |
183 | /* Routine used to access memory */ |
184 | int mem_idx; | |
76db3ba4 | 185 | int access_type; |
3cc62370 | 186 | /* Translation flags */ |
76db3ba4 | 187 | int le_mode; |
d9bce9d9 JM |
188 | #if defined(TARGET_PPC64) |
189 | int sf_mode; | |
9a64fbe4 | 190 | #endif |
3cc62370 | 191 | int fpu_enabled; |
a9d9eb8f | 192 | int altivec_enabled; |
0487d6a8 | 193 | int spe_enabled; |
3fc6c082 | 194 | ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */ |
ea4e754f | 195 | int singlestep_enabled; |
79aceca5 FB |
196 | } DisasContext; |
197 | ||
3fc6c082 | 198 | struct opc_handler_t { |
79aceca5 FB |
199 | /* invalid bits */ |
200 | uint32_t inval; | |
9a64fbe4 | 201 | /* instruction type */ |
0487d6a8 | 202 | uint64_t type; |
79aceca5 FB |
203 | /* handler */ |
204 | void (*handler)(DisasContext *ctx); | |
a750fc0b | 205 | #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU) |
b55266b5 | 206 | const char *oname; |
a750fc0b JM |
207 | #endif |
208 | #if defined(DO_PPC_STATISTICS) | |
76a66253 JM |
209 | uint64_t count; |
210 | #endif | |
3fc6c082 | 211 | }; |
79aceca5 | 212 | |
636aa200 | 213 | static inline void gen_reset_fpstatus(void) |
7c58044c JM |
214 | { |
215 | #ifdef CONFIG_SOFTFLOAT | |
a44d2ce1 | 216 | gen_helper_reset_fpstatus(); |
7c58044c JM |
217 | #endif |
218 | } | |
219 | ||
636aa200 | 220 | static inline void gen_compute_fprf(TCGv_i64 arg, int set_fprf, int set_rc) |
7c58044c | 221 | { |
0f2f39c2 | 222 | TCGv_i32 t0 = tcg_temp_new_i32(); |
af12906f | 223 | |
7c58044c JM |
224 | if (set_fprf != 0) { |
225 | /* This case might be optimized later */ | |
0f2f39c2 | 226 | tcg_gen_movi_i32(t0, 1); |
af12906f | 227 | gen_helper_compute_fprf(t0, arg, t0); |
a7812ae4 | 228 | if (unlikely(set_rc)) { |
0f2f39c2 | 229 | tcg_gen_mov_i32(cpu_crf[1], t0); |
a7812ae4 | 230 | } |
af12906f | 231 | gen_helper_float_check_status(); |
7c58044c JM |
232 | } else if (unlikely(set_rc)) { |
233 | /* We always need to compute fpcc */ | |
0f2f39c2 | 234 | tcg_gen_movi_i32(t0, 0); |
af12906f | 235 | gen_helper_compute_fprf(t0, arg, t0); |
0f2f39c2 | 236 | tcg_gen_mov_i32(cpu_crf[1], t0); |
7c58044c | 237 | } |
af12906f | 238 | |
0f2f39c2 | 239 | tcg_temp_free_i32(t0); |
7c58044c JM |
240 | } |
241 | ||
636aa200 | 242 | static inline void gen_set_access_type(DisasContext *ctx, int access_type) |
a7859e89 | 243 | { |
76db3ba4 AJ |
244 | if (ctx->access_type != access_type) { |
245 | tcg_gen_movi_i32(cpu_access_type, access_type); | |
246 | ctx->access_type = access_type; | |
247 | } | |
a7859e89 AJ |
248 | } |
249 | ||
636aa200 | 250 | static inline void gen_update_nip(DisasContext *ctx, target_ulong nip) |
d9bce9d9 JM |
251 | { |
252 | #if defined(TARGET_PPC64) | |
253 | if (ctx->sf_mode) | |
bd568f18 | 254 | tcg_gen_movi_tl(cpu_nip, nip); |
d9bce9d9 JM |
255 | else |
256 | #endif | |
bd568f18 | 257 | tcg_gen_movi_tl(cpu_nip, (uint32_t)nip); |
d9bce9d9 JM |
258 | } |
259 | ||
636aa200 | 260 | static inline void gen_exception_err(DisasContext *ctx, uint32_t excp, uint32_t error) |
e06fcd75 AJ |
261 | { |
262 | TCGv_i32 t0, t1; | |
263 | if (ctx->exception == POWERPC_EXCP_NONE) { | |
264 | gen_update_nip(ctx, ctx->nip); | |
265 | } | |
266 | t0 = tcg_const_i32(excp); | |
267 | t1 = tcg_const_i32(error); | |
268 | gen_helper_raise_exception_err(t0, t1); | |
269 | tcg_temp_free_i32(t0); | |
270 | tcg_temp_free_i32(t1); | |
271 | ctx->exception = (excp); | |
272 | } | |
e1833e1f | 273 | |
636aa200 | 274 | static inline void gen_exception(DisasContext *ctx, uint32_t excp) |
e06fcd75 AJ |
275 | { |
276 | TCGv_i32 t0; | |
277 | if (ctx->exception == POWERPC_EXCP_NONE) { | |
278 | gen_update_nip(ctx, ctx->nip); | |
279 | } | |
280 | t0 = tcg_const_i32(excp); | |
281 | gen_helper_raise_exception(t0); | |
282 | tcg_temp_free_i32(t0); | |
283 | ctx->exception = (excp); | |
284 | } | |
e1833e1f | 285 | |
636aa200 | 286 | static inline void gen_debug_exception(DisasContext *ctx) |
e06fcd75 AJ |
287 | { |
288 | TCGv_i32 t0; | |
5518f3a6 BS |
289 | |
290 | if (ctx->exception != POWERPC_EXCP_BRANCH) | |
291 | gen_update_nip(ctx, ctx->nip); | |
e06fcd75 AJ |
292 | t0 = tcg_const_i32(EXCP_DEBUG); |
293 | gen_helper_raise_exception(t0); | |
294 | tcg_temp_free_i32(t0); | |
295 | } | |
9a64fbe4 | 296 | |
636aa200 | 297 | static inline void gen_inval_exception(DisasContext *ctx, uint32_t error) |
e06fcd75 AJ |
298 | { |
299 | gen_exception_err(ctx, POWERPC_EXCP_PROGRAM, POWERPC_EXCP_INVAL | error); | |
300 | } | |
a9d9eb8f | 301 | |
f24e5695 | 302 | /* Stop translation */ |
636aa200 | 303 | static inline void gen_stop_exception(DisasContext *ctx) |
3fc6c082 | 304 | { |
d9bce9d9 | 305 | gen_update_nip(ctx, ctx->nip); |
e1833e1f | 306 | ctx->exception = POWERPC_EXCP_STOP; |
3fc6c082 FB |
307 | } |
308 | ||
f24e5695 | 309 | /* No need to update nip here, as execution flow will change */ |
636aa200 | 310 | static inline void gen_sync_exception(DisasContext *ctx) |
2be0071f | 311 | { |
e1833e1f | 312 | ctx->exception = POWERPC_EXCP_SYNC; |
2be0071f FB |
313 | } |
314 | ||
79aceca5 | 315 | #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \ |
5c55ff99 | 316 | GEN_OPCODE(name, opc1, opc2, opc3, inval, type) |
79aceca5 | 317 | |
c7697e1f | 318 | #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \ |
5c55ff99 | 319 | GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type) |
c7697e1f | 320 | |
79aceca5 FB |
321 | typedef struct opcode_t { |
322 | unsigned char opc1, opc2, opc3; | |
1235fc06 | 323 | #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */ |
18fba28c FB |
324 | unsigned char pad[5]; |
325 | #else | |
326 | unsigned char pad[1]; | |
327 | #endif | |
79aceca5 | 328 | opc_handler_t handler; |
b55266b5 | 329 | const char *oname; |
79aceca5 FB |
330 | } opcode_t; |
331 | ||
a750fc0b | 332 | /*****************************************************************************/ |
79aceca5 FB |
333 | /*** Instruction decoding ***/ |
334 | #define EXTRACT_HELPER(name, shift, nb) \ | |
636aa200 | 335 | static inline uint32_t name(uint32_t opcode) \ |
79aceca5 FB |
336 | { \ |
337 | return (opcode >> (shift)) & ((1 << (nb)) - 1); \ | |
338 | } | |
339 | ||
340 | #define EXTRACT_SHELPER(name, shift, nb) \ | |
636aa200 | 341 | static inline int32_t name(uint32_t opcode) \ |
79aceca5 | 342 | { \ |
18fba28c | 343 | return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \ |
79aceca5 FB |
344 | } |
345 | ||
346 | /* Opcode part 1 */ | |
347 | EXTRACT_HELPER(opc1, 26, 6); | |
348 | /* Opcode part 2 */ | |
349 | EXTRACT_HELPER(opc2, 1, 5); | |
350 | /* Opcode part 3 */ | |
351 | EXTRACT_HELPER(opc3, 6, 5); | |
352 | /* Update Cr0 flags */ | |
353 | EXTRACT_HELPER(Rc, 0, 1); | |
354 | /* Destination */ | |
355 | EXTRACT_HELPER(rD, 21, 5); | |
356 | /* Source */ | |
357 | EXTRACT_HELPER(rS, 21, 5); | |
358 | /* First operand */ | |
359 | EXTRACT_HELPER(rA, 16, 5); | |
360 | /* Second operand */ | |
361 | EXTRACT_HELPER(rB, 11, 5); | |
362 | /* Third operand */ | |
363 | EXTRACT_HELPER(rC, 6, 5); | |
364 | /*** Get CRn ***/ | |
365 | EXTRACT_HELPER(crfD, 23, 3); | |
366 | EXTRACT_HELPER(crfS, 18, 3); | |
367 | EXTRACT_HELPER(crbD, 21, 5); | |
368 | EXTRACT_HELPER(crbA, 16, 5); | |
369 | EXTRACT_HELPER(crbB, 11, 5); | |
370 | /* SPR / TBL */ | |
3fc6c082 | 371 | EXTRACT_HELPER(_SPR, 11, 10); |
636aa200 | 372 | static inline uint32_t SPR(uint32_t opcode) |
3fc6c082 FB |
373 | { |
374 | uint32_t sprn = _SPR(opcode); | |
375 | ||
376 | return ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5); | |
377 | } | |
79aceca5 FB |
378 | /*** Get constants ***/ |
379 | EXTRACT_HELPER(IMM, 12, 8); | |
380 | /* 16 bits signed immediate value */ | |
381 | EXTRACT_SHELPER(SIMM, 0, 16); | |
382 | /* 16 bits unsigned immediate value */ | |
383 | EXTRACT_HELPER(UIMM, 0, 16); | |
21d21583 AJ |
384 | /* 5 bits signed immediate value */ |
385 | EXTRACT_HELPER(SIMM5, 16, 5); | |
27a4edb3 AJ |
386 | /* 5 bits signed immediate value */ |
387 | EXTRACT_HELPER(UIMM5, 16, 5); | |
79aceca5 FB |
388 | /* Bit count */ |
389 | EXTRACT_HELPER(NB, 11, 5); | |
390 | /* Shift count */ | |
391 | EXTRACT_HELPER(SH, 11, 5); | |
cd633b10 AJ |
392 | /* Vector shift count */ |
393 | EXTRACT_HELPER(VSH, 6, 4); | |
79aceca5 FB |
394 | /* Mask start */ |
395 | EXTRACT_HELPER(MB, 6, 5); | |
396 | /* Mask end */ | |
397 | EXTRACT_HELPER(ME, 1, 5); | |
fb0eaffc FB |
398 | /* Trap operand */ |
399 | EXTRACT_HELPER(TO, 21, 5); | |
79aceca5 FB |
400 | |
401 | EXTRACT_HELPER(CRM, 12, 8); | |
402 | EXTRACT_HELPER(FM, 17, 8); | |
403 | EXTRACT_HELPER(SR, 16, 4); | |
e4bb997e | 404 | EXTRACT_HELPER(FPIMM, 12, 4); |
fb0eaffc | 405 | |
79aceca5 FB |
406 | /*** Jump target decoding ***/ |
407 | /* Displacement */ | |
408 | EXTRACT_SHELPER(d, 0, 16); | |
409 | /* Immediate address */ | |
636aa200 | 410 | static inline target_ulong LI(uint32_t opcode) |
79aceca5 FB |
411 | { |
412 | return (opcode >> 0) & 0x03FFFFFC; | |
413 | } | |
414 | ||
636aa200 | 415 | static inline uint32_t BD(uint32_t opcode) |
79aceca5 FB |
416 | { |
417 | return (opcode >> 0) & 0xFFFC; | |
418 | } | |
419 | ||
420 | EXTRACT_HELPER(BO, 21, 5); | |
421 | EXTRACT_HELPER(BI, 16, 5); | |
422 | /* Absolute/relative address */ | |
423 | EXTRACT_HELPER(AA, 1, 1); | |
424 | /* Link */ | |
425 | EXTRACT_HELPER(LK, 0, 1); | |
426 | ||
427 | /* Create a mask between <start> and <end> bits */ | |
636aa200 | 428 | static inline target_ulong MASK(uint32_t start, uint32_t end) |
79aceca5 | 429 | { |
76a66253 | 430 | target_ulong ret; |
79aceca5 | 431 | |
76a66253 JM |
432 | #if defined(TARGET_PPC64) |
433 | if (likely(start == 0)) { | |
6f2d8978 | 434 | ret = UINT64_MAX << (63 - end); |
76a66253 | 435 | } else if (likely(end == 63)) { |
6f2d8978 | 436 | ret = UINT64_MAX >> start; |
76a66253 JM |
437 | } |
438 | #else | |
439 | if (likely(start == 0)) { | |
6f2d8978 | 440 | ret = UINT32_MAX << (31 - end); |
76a66253 | 441 | } else if (likely(end == 31)) { |
6f2d8978 | 442 | ret = UINT32_MAX >> start; |
76a66253 JM |
443 | } |
444 | #endif | |
445 | else { | |
446 | ret = (((target_ulong)(-1ULL)) >> (start)) ^ | |
447 | (((target_ulong)(-1ULL) >> (end)) >> 1); | |
448 | if (unlikely(start > end)) | |
449 | return ~ret; | |
450 | } | |
79aceca5 FB |
451 | |
452 | return ret; | |
453 | } | |
454 | ||
a750fc0b | 455 | /*****************************************************************************/ |
a750fc0b | 456 | /* PowerPC instructions table */ |
933dc6eb | 457 | |
76a66253 | 458 | #if defined(DO_PPC_STATISTICS) |
79aceca5 | 459 | #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \ |
5c55ff99 | 460 | { \ |
79aceca5 FB |
461 | .opc1 = op1, \ |
462 | .opc2 = op2, \ | |
463 | .opc3 = op3, \ | |
18fba28c | 464 | .pad = { 0, }, \ |
79aceca5 FB |
465 | .handler = { \ |
466 | .inval = invl, \ | |
9a64fbe4 | 467 | .type = _typ, \ |
79aceca5 | 468 | .handler = &gen_##name, \ |
76a66253 | 469 | .oname = stringify(name), \ |
79aceca5 | 470 | }, \ |
3fc6c082 | 471 | .oname = stringify(name), \ |
79aceca5 | 472 | } |
c7697e1f | 473 | #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \ |
5c55ff99 | 474 | { \ |
c7697e1f JM |
475 | .opc1 = op1, \ |
476 | .opc2 = op2, \ | |
477 | .opc3 = op3, \ | |
478 | .pad = { 0, }, \ | |
479 | .handler = { \ | |
480 | .inval = invl, \ | |
481 | .type = _typ, \ | |
482 | .handler = &gen_##name, \ | |
483 | .oname = onam, \ | |
484 | }, \ | |
485 | .oname = onam, \ | |
486 | } | |
76a66253 JM |
487 | #else |
488 | #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \ | |
5c55ff99 | 489 | { \ |
c7697e1f JM |
490 | .opc1 = op1, \ |
491 | .opc2 = op2, \ | |
492 | .opc3 = op3, \ | |
493 | .pad = { 0, }, \ | |
494 | .handler = { \ | |
495 | .inval = invl, \ | |
496 | .type = _typ, \ | |
497 | .handler = &gen_##name, \ | |
5c55ff99 BS |
498 | }, \ |
499 | .oname = stringify(name), \ | |
500 | } | |
501 | #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \ | |
502 | { \ | |
503 | .opc1 = op1, \ | |
504 | .opc2 = op2, \ | |
505 | .opc3 = op3, \ | |
506 | .pad = { 0, }, \ | |
507 | .handler = { \ | |
508 | .inval = invl, \ | |
509 | .type = _typ, \ | |
510 | .handler = &gen_##name, \ | |
511 | }, \ | |
512 | .oname = onam, \ | |
513 | } | |
514 | #endif | |
2e610050 | 515 | |
5c55ff99 | 516 | /* SPR load/store helpers */ |
636aa200 | 517 | static inline void gen_load_spr(TCGv t, int reg) |
5c55ff99 BS |
518 | { |
519 | tcg_gen_ld_tl(t, cpu_env, offsetof(CPUState, spr[reg])); | |
520 | } | |
2e610050 | 521 | |
636aa200 | 522 | static inline void gen_store_spr(int reg, TCGv t) |
5c55ff99 BS |
523 | { |
524 | tcg_gen_st_tl(t, cpu_env, offsetof(CPUState, spr[reg])); | |
525 | } | |
2e610050 | 526 | |
54623277 | 527 | /* Invalid instruction */ |
99e300ef | 528 | static void gen_invalid(DisasContext *ctx) |
9a64fbe4 | 529 | { |
e06fcd75 | 530 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
9a64fbe4 FB |
531 | } |
532 | ||
79aceca5 FB |
533 | static opc_handler_t invalid_handler = { |
534 | .inval = 0xFFFFFFFF, | |
9a64fbe4 | 535 | .type = PPC_NONE, |
79aceca5 FB |
536 | .handler = gen_invalid, |
537 | }; | |
538 | ||
e1571908 AJ |
539 | /*** Integer comparison ***/ |
540 | ||
636aa200 | 541 | static inline void gen_op_cmp(TCGv arg0, TCGv arg1, int s, int crf) |
e1571908 AJ |
542 | { |
543 | int l1, l2, l3; | |
544 | ||
269f3e95 AJ |
545 | tcg_gen_trunc_tl_i32(cpu_crf[crf], cpu_xer); |
546 | tcg_gen_shri_i32(cpu_crf[crf], cpu_crf[crf], XER_SO); | |
e1571908 AJ |
547 | tcg_gen_andi_i32(cpu_crf[crf], cpu_crf[crf], 1); |
548 | ||
549 | l1 = gen_new_label(); | |
550 | l2 = gen_new_label(); | |
551 | l3 = gen_new_label(); | |
552 | if (s) { | |
ea363694 AJ |
553 | tcg_gen_brcond_tl(TCG_COND_LT, arg0, arg1, l1); |
554 | tcg_gen_brcond_tl(TCG_COND_GT, arg0, arg1, l2); | |
e1571908 | 555 | } else { |
ea363694 AJ |
556 | tcg_gen_brcond_tl(TCG_COND_LTU, arg0, arg1, l1); |
557 | tcg_gen_brcond_tl(TCG_COND_GTU, arg0, arg1, l2); | |
e1571908 AJ |
558 | } |
559 | tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_EQ); | |
560 | tcg_gen_br(l3); | |
561 | gen_set_label(l1); | |
562 | tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_LT); | |
563 | tcg_gen_br(l3); | |
564 | gen_set_label(l2); | |
565 | tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_GT); | |
566 | gen_set_label(l3); | |
567 | } | |
568 | ||
636aa200 | 569 | static inline void gen_op_cmpi(TCGv arg0, target_ulong arg1, int s, int crf) |
e1571908 | 570 | { |
ea363694 AJ |
571 | TCGv t0 = tcg_const_local_tl(arg1); |
572 | gen_op_cmp(arg0, t0, s, crf); | |
573 | tcg_temp_free(t0); | |
e1571908 AJ |
574 | } |
575 | ||
576 | #if defined(TARGET_PPC64) | |
636aa200 | 577 | static inline void gen_op_cmp32(TCGv arg0, TCGv arg1, int s, int crf) |
e1571908 | 578 | { |
ea363694 | 579 | TCGv t0, t1; |
a7812ae4 PB |
580 | t0 = tcg_temp_local_new(); |
581 | t1 = tcg_temp_local_new(); | |
e1571908 | 582 | if (s) { |
ea363694 AJ |
583 | tcg_gen_ext32s_tl(t0, arg0); |
584 | tcg_gen_ext32s_tl(t1, arg1); | |
e1571908 | 585 | } else { |
ea363694 AJ |
586 | tcg_gen_ext32u_tl(t0, arg0); |
587 | tcg_gen_ext32u_tl(t1, arg1); | |
e1571908 | 588 | } |
ea363694 AJ |
589 | gen_op_cmp(t0, t1, s, crf); |
590 | tcg_temp_free(t1); | |
591 | tcg_temp_free(t0); | |
e1571908 AJ |
592 | } |
593 | ||
636aa200 | 594 | static inline void gen_op_cmpi32(TCGv arg0, target_ulong arg1, int s, int crf) |
e1571908 | 595 | { |
ea363694 AJ |
596 | TCGv t0 = tcg_const_local_tl(arg1); |
597 | gen_op_cmp32(arg0, t0, s, crf); | |
598 | tcg_temp_free(t0); | |
e1571908 AJ |
599 | } |
600 | #endif | |
601 | ||
636aa200 | 602 | static inline void gen_set_Rc0(DisasContext *ctx, TCGv reg) |
e1571908 AJ |
603 | { |
604 | #if defined(TARGET_PPC64) | |
605 | if (!(ctx->sf_mode)) | |
606 | gen_op_cmpi32(reg, 0, 1, 0); | |
607 | else | |
608 | #endif | |
609 | gen_op_cmpi(reg, 0, 1, 0); | |
610 | } | |
611 | ||
612 | /* cmp */ | |
99e300ef | 613 | static void gen_cmp(DisasContext *ctx) |
e1571908 AJ |
614 | { |
615 | #if defined(TARGET_PPC64) | |
616 | if (!(ctx->sf_mode && (ctx->opcode & 0x00200000))) | |
617 | gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], | |
618 | 1, crfD(ctx->opcode)); | |
619 | else | |
620 | #endif | |
621 | gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], | |
622 | 1, crfD(ctx->opcode)); | |
623 | } | |
624 | ||
625 | /* cmpi */ | |
99e300ef | 626 | static void gen_cmpi(DisasContext *ctx) |
e1571908 AJ |
627 | { |
628 | #if defined(TARGET_PPC64) | |
629 | if (!(ctx->sf_mode && (ctx->opcode & 0x00200000))) | |
630 | gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode), | |
631 | 1, crfD(ctx->opcode)); | |
632 | else | |
633 | #endif | |
634 | gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode), | |
635 | 1, crfD(ctx->opcode)); | |
636 | } | |
637 | ||
638 | /* cmpl */ | |
99e300ef | 639 | static void gen_cmpl(DisasContext *ctx) |
e1571908 AJ |
640 | { |
641 | #if defined(TARGET_PPC64) | |
642 | if (!(ctx->sf_mode && (ctx->opcode & 0x00200000))) | |
643 | gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], | |
644 | 0, crfD(ctx->opcode)); | |
645 | else | |
646 | #endif | |
647 | gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], | |
648 | 0, crfD(ctx->opcode)); | |
649 | } | |
650 | ||
651 | /* cmpli */ | |
99e300ef | 652 | static void gen_cmpli(DisasContext *ctx) |
e1571908 AJ |
653 | { |
654 | #if defined(TARGET_PPC64) | |
655 | if (!(ctx->sf_mode && (ctx->opcode & 0x00200000))) | |
656 | gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode), | |
657 | 0, crfD(ctx->opcode)); | |
658 | else | |
659 | #endif | |
660 | gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode), | |
661 | 0, crfD(ctx->opcode)); | |
662 | } | |
663 | ||
664 | /* isel (PowerPC 2.03 specification) */ | |
99e300ef | 665 | static void gen_isel(DisasContext *ctx) |
e1571908 AJ |
666 | { |
667 | int l1, l2; | |
668 | uint32_t bi = rC(ctx->opcode); | |
669 | uint32_t mask; | |
a7812ae4 | 670 | TCGv_i32 t0; |
e1571908 AJ |
671 | |
672 | l1 = gen_new_label(); | |
673 | l2 = gen_new_label(); | |
674 | ||
675 | mask = 1 << (3 - (bi & 0x03)); | |
a7812ae4 | 676 | t0 = tcg_temp_new_i32(); |
fea0c503 AJ |
677 | tcg_gen_andi_i32(t0, cpu_crf[bi >> 2], mask); |
678 | tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1); | |
e1571908 AJ |
679 | if (rA(ctx->opcode) == 0) |
680 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0); | |
681 | else | |
682 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
683 | tcg_gen_br(l2); | |
684 | gen_set_label(l1); | |
685 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
686 | gen_set_label(l2); | |
a7812ae4 | 687 | tcg_temp_free_i32(t0); |
e1571908 AJ |
688 | } |
689 | ||
79aceca5 | 690 | /*** Integer arithmetic ***/ |
79aceca5 | 691 | |
636aa200 BS |
692 | static inline void gen_op_arith_compute_ov(DisasContext *ctx, TCGv arg0, |
693 | TCGv arg1, TCGv arg2, int sub) | |
74637406 AJ |
694 | { |
695 | int l1; | |
696 | TCGv t0; | |
79aceca5 | 697 | |
74637406 AJ |
698 | l1 = gen_new_label(); |
699 | /* Start with XER OV disabled, the most likely case */ | |
700 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
a7812ae4 | 701 | t0 = tcg_temp_local_new(); |
74637406 AJ |
702 | tcg_gen_xor_tl(t0, arg0, arg1); |
703 | #if defined(TARGET_PPC64) | |
704 | if (!ctx->sf_mode) | |
705 | tcg_gen_ext32s_tl(t0, t0); | |
706 | #endif | |
707 | if (sub) | |
708 | tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0, l1); | |
709 | else | |
710 | tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1); | |
711 | tcg_gen_xor_tl(t0, arg1, arg2); | |
712 | #if defined(TARGET_PPC64) | |
713 | if (!ctx->sf_mode) | |
714 | tcg_gen_ext32s_tl(t0, t0); | |
715 | #endif | |
716 | if (sub) | |
717 | tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1); | |
718 | else | |
719 | tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0, l1); | |
720 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
721 | gen_set_label(l1); | |
722 | tcg_temp_free(t0); | |
79aceca5 FB |
723 | } |
724 | ||
636aa200 BS |
725 | static inline void gen_op_arith_compute_ca(DisasContext *ctx, TCGv arg1, |
726 | TCGv arg2, int sub) | |
74637406 AJ |
727 | { |
728 | int l1 = gen_new_label(); | |
d9bce9d9 JM |
729 | |
730 | #if defined(TARGET_PPC64) | |
74637406 AJ |
731 | if (!(ctx->sf_mode)) { |
732 | TCGv t0, t1; | |
a7812ae4 PB |
733 | t0 = tcg_temp_new(); |
734 | t1 = tcg_temp_new(); | |
d9bce9d9 | 735 | |
74637406 AJ |
736 | tcg_gen_ext32u_tl(t0, arg1); |
737 | tcg_gen_ext32u_tl(t1, arg2); | |
738 | if (sub) { | |
739 | tcg_gen_brcond_tl(TCG_COND_GTU, t0, t1, l1); | |
bdc4e053 | 740 | } else { |
74637406 AJ |
741 | tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1); |
742 | } | |
a9730017 AJ |
743 | tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA); |
744 | gen_set_label(l1); | |
745 | tcg_temp_free(t0); | |
746 | tcg_temp_free(t1); | |
74637406 AJ |
747 | } else |
748 | #endif | |
a9730017 AJ |
749 | { |
750 | if (sub) { | |
751 | tcg_gen_brcond_tl(TCG_COND_GTU, arg1, arg2, l1); | |
752 | } else { | |
753 | tcg_gen_brcond_tl(TCG_COND_GEU, arg1, arg2, l1); | |
754 | } | |
755 | tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA); | |
756 | gen_set_label(l1); | |
74637406 | 757 | } |
d9bce9d9 JM |
758 | } |
759 | ||
74637406 | 760 | /* Common add function */ |
636aa200 BS |
761 | static inline void gen_op_arith_add(DisasContext *ctx, TCGv ret, TCGv arg1, |
762 | TCGv arg2, int add_ca, int compute_ca, | |
763 | int compute_ov) | |
74637406 AJ |
764 | { |
765 | TCGv t0, t1; | |
d9bce9d9 | 766 | |
74637406 | 767 | if ((!compute_ca && !compute_ov) || |
a7812ae4 | 768 | (!TCGV_EQUAL(ret,arg1) && !TCGV_EQUAL(ret, arg2))) { |
74637406 AJ |
769 | t0 = ret; |
770 | } else { | |
a7812ae4 | 771 | t0 = tcg_temp_local_new(); |
74637406 | 772 | } |
79aceca5 | 773 | |
74637406 | 774 | if (add_ca) { |
a7812ae4 | 775 | t1 = tcg_temp_local_new(); |
74637406 AJ |
776 | tcg_gen_andi_tl(t1, cpu_xer, (1 << XER_CA)); |
777 | tcg_gen_shri_tl(t1, t1, XER_CA); | |
d2e9fd8f | 778 | } else { |
779 | TCGV_UNUSED(t1); | |
74637406 | 780 | } |
79aceca5 | 781 | |
74637406 AJ |
782 | if (compute_ca && compute_ov) { |
783 | /* Start with XER CA and OV disabled, the most likely case */ | |
784 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~((1 << XER_CA) | (1 << XER_OV))); | |
785 | } else if (compute_ca) { | |
786 | /* Start with XER CA disabled, the most likely case */ | |
787 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); | |
788 | } else if (compute_ov) { | |
789 | /* Start with XER OV disabled, the most likely case */ | |
790 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
791 | } | |
79aceca5 | 792 | |
74637406 AJ |
793 | tcg_gen_add_tl(t0, arg1, arg2); |
794 | ||
795 | if (compute_ca) { | |
796 | gen_op_arith_compute_ca(ctx, t0, arg1, 0); | |
797 | } | |
798 | if (add_ca) { | |
799 | tcg_gen_add_tl(t0, t0, t1); | |
800 | gen_op_arith_compute_ca(ctx, t0, t1, 0); | |
801 | tcg_temp_free(t1); | |
802 | } | |
803 | if (compute_ov) { | |
804 | gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 0); | |
805 | } | |
806 | ||
807 | if (unlikely(Rc(ctx->opcode) != 0)) | |
808 | gen_set_Rc0(ctx, t0); | |
809 | ||
a7812ae4 | 810 | if (!TCGV_EQUAL(t0, ret)) { |
74637406 AJ |
811 | tcg_gen_mov_tl(ret, t0); |
812 | tcg_temp_free(t0); | |
813 | } | |
39dd32ee | 814 | } |
74637406 AJ |
815 | /* Add functions with two operands */ |
816 | #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \ | |
99e300ef | 817 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 AJ |
818 | { \ |
819 | gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \ | |
820 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \ | |
821 | add_ca, compute_ca, compute_ov); \ | |
822 | } | |
823 | /* Add functions with one operand and one immediate */ | |
824 | #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \ | |
825 | add_ca, compute_ca, compute_ov) \ | |
99e300ef | 826 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 AJ |
827 | { \ |
828 | TCGv t0 = tcg_const_local_tl(const_val); \ | |
829 | gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \ | |
830 | cpu_gpr[rA(ctx->opcode)], t0, \ | |
831 | add_ca, compute_ca, compute_ov); \ | |
832 | tcg_temp_free(t0); \ | |
833 | } | |
834 | ||
835 | /* add add. addo addo. */ | |
836 | GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0) | |
837 | GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1) | |
838 | /* addc addc. addco addco. */ | |
839 | GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0) | |
840 | GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1) | |
841 | /* adde adde. addeo addeo. */ | |
842 | GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0) | |
843 | GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1) | |
844 | /* addme addme. addmeo addmeo. */ | |
845 | GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0) | |
846 | GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1) | |
847 | /* addze addze. addzeo addzeo.*/ | |
848 | GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0) | |
849 | GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1) | |
850 | /* addi */ | |
99e300ef | 851 | static void gen_addi(DisasContext *ctx) |
d9bce9d9 | 852 | { |
74637406 AJ |
853 | target_long simm = SIMM(ctx->opcode); |
854 | ||
855 | if (rA(ctx->opcode) == 0) { | |
856 | /* li case */ | |
857 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm); | |
858 | } else { | |
859 | tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], simm); | |
860 | } | |
d9bce9d9 | 861 | } |
74637406 | 862 | /* addic addic.*/ |
636aa200 BS |
863 | static inline void gen_op_addic(DisasContext *ctx, TCGv ret, TCGv arg1, |
864 | int compute_Rc0) | |
d9bce9d9 | 865 | { |
74637406 AJ |
866 | target_long simm = SIMM(ctx->opcode); |
867 | ||
868 | /* Start with XER CA and OV disabled, the most likely case */ | |
869 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); | |
870 | ||
871 | if (likely(simm != 0)) { | |
a7812ae4 | 872 | TCGv t0 = tcg_temp_local_new(); |
74637406 AJ |
873 | tcg_gen_addi_tl(t0, arg1, simm); |
874 | gen_op_arith_compute_ca(ctx, t0, arg1, 0); | |
875 | tcg_gen_mov_tl(ret, t0); | |
876 | tcg_temp_free(t0); | |
877 | } else { | |
878 | tcg_gen_mov_tl(ret, arg1); | |
879 | } | |
880 | if (compute_Rc0) { | |
881 | gen_set_Rc0(ctx, ret); | |
882 | } | |
d9bce9d9 | 883 | } |
99e300ef BS |
884 | |
885 | static void gen_addic(DisasContext *ctx) | |
d9bce9d9 | 886 | { |
74637406 | 887 | gen_op_addic(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0); |
d9bce9d9 | 888 | } |
e8eaa2c0 BS |
889 | |
890 | static void gen_addic_(DisasContext *ctx) | |
d9bce9d9 | 891 | { |
74637406 | 892 | gen_op_addic(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 1); |
d9bce9d9 | 893 | } |
99e300ef | 894 | |
54623277 | 895 | /* addis */ |
99e300ef | 896 | static void gen_addis(DisasContext *ctx) |
d9bce9d9 | 897 | { |
74637406 AJ |
898 | target_long simm = SIMM(ctx->opcode); |
899 | ||
900 | if (rA(ctx->opcode) == 0) { | |
901 | /* lis case */ | |
902 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm << 16); | |
903 | } else { | |
904 | tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], simm << 16); | |
905 | } | |
d9bce9d9 | 906 | } |
74637406 | 907 | |
636aa200 BS |
908 | static inline void gen_op_arith_divw(DisasContext *ctx, TCGv ret, TCGv arg1, |
909 | TCGv arg2, int sign, int compute_ov) | |
d9bce9d9 | 910 | { |
2ef1b120 AJ |
911 | int l1 = gen_new_label(); |
912 | int l2 = gen_new_label(); | |
a7812ae4 PB |
913 | TCGv_i32 t0 = tcg_temp_local_new_i32(); |
914 | TCGv_i32 t1 = tcg_temp_local_new_i32(); | |
74637406 | 915 | |
2ef1b120 AJ |
916 | tcg_gen_trunc_tl_i32(t0, arg1); |
917 | tcg_gen_trunc_tl_i32(t1, arg2); | |
918 | tcg_gen_brcondi_i32(TCG_COND_EQ, t1, 0, l1); | |
74637406 | 919 | if (sign) { |
2ef1b120 AJ |
920 | int l3 = gen_new_label(); |
921 | tcg_gen_brcondi_i32(TCG_COND_NE, t1, -1, l3); | |
922 | tcg_gen_brcondi_i32(TCG_COND_EQ, t0, INT32_MIN, l1); | |
74637406 | 923 | gen_set_label(l3); |
2ef1b120 | 924 | tcg_gen_div_i32(t0, t0, t1); |
74637406 | 925 | } else { |
2ef1b120 | 926 | tcg_gen_divu_i32(t0, t0, t1); |
74637406 AJ |
927 | } |
928 | if (compute_ov) { | |
929 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
930 | } | |
931 | tcg_gen_br(l2); | |
932 | gen_set_label(l1); | |
933 | if (sign) { | |
2ef1b120 | 934 | tcg_gen_sari_i32(t0, t0, 31); |
74637406 AJ |
935 | } else { |
936 | tcg_gen_movi_i32(t0, 0); | |
937 | } | |
938 | if (compute_ov) { | |
939 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
940 | } | |
941 | gen_set_label(l2); | |
2ef1b120 | 942 | tcg_gen_extu_i32_tl(ret, t0); |
a7812ae4 PB |
943 | tcg_temp_free_i32(t0); |
944 | tcg_temp_free_i32(t1); | |
74637406 AJ |
945 | if (unlikely(Rc(ctx->opcode) != 0)) |
946 | gen_set_Rc0(ctx, ret); | |
d9bce9d9 | 947 | } |
74637406 AJ |
948 | /* Div functions */ |
949 | #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \ | |
99e300ef | 950 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 AJ |
951 | { \ |
952 | gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \ | |
953 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \ | |
954 | sign, compute_ov); \ | |
955 | } | |
956 | /* divwu divwu. divwuo divwuo. */ | |
957 | GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0); | |
958 | GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1); | |
959 | /* divw divw. divwo divwo. */ | |
960 | GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0); | |
961 | GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1); | |
d9bce9d9 | 962 | #if defined(TARGET_PPC64) |
636aa200 BS |
963 | static inline void gen_op_arith_divd(DisasContext *ctx, TCGv ret, TCGv arg1, |
964 | TCGv arg2, int sign, int compute_ov) | |
d9bce9d9 | 965 | { |
2ef1b120 AJ |
966 | int l1 = gen_new_label(); |
967 | int l2 = gen_new_label(); | |
74637406 AJ |
968 | |
969 | tcg_gen_brcondi_i64(TCG_COND_EQ, arg2, 0, l1); | |
970 | if (sign) { | |
2ef1b120 | 971 | int l3 = gen_new_label(); |
74637406 AJ |
972 | tcg_gen_brcondi_i64(TCG_COND_NE, arg2, -1, l3); |
973 | tcg_gen_brcondi_i64(TCG_COND_EQ, arg1, INT64_MIN, l1); | |
974 | gen_set_label(l3); | |
74637406 AJ |
975 | tcg_gen_div_i64(ret, arg1, arg2); |
976 | } else { | |
977 | tcg_gen_divu_i64(ret, arg1, arg2); | |
978 | } | |
979 | if (compute_ov) { | |
980 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
981 | } | |
982 | tcg_gen_br(l2); | |
983 | gen_set_label(l1); | |
984 | if (sign) { | |
985 | tcg_gen_sari_i64(ret, arg1, 63); | |
986 | } else { | |
987 | tcg_gen_movi_i64(ret, 0); | |
988 | } | |
989 | if (compute_ov) { | |
990 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
991 | } | |
992 | gen_set_label(l2); | |
993 | if (unlikely(Rc(ctx->opcode) != 0)) | |
994 | gen_set_Rc0(ctx, ret); | |
d9bce9d9 | 995 | } |
74637406 | 996 | #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \ |
99e300ef | 997 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 | 998 | { \ |
2ef1b120 AJ |
999 | gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \ |
1000 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \ | |
1001 | sign, compute_ov); \ | |
74637406 AJ |
1002 | } |
1003 | /* divwu divwu. divwuo divwuo. */ | |
1004 | GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0); | |
1005 | GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1); | |
1006 | /* divw divw. divwo divwo. */ | |
1007 | GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0); | |
1008 | GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1); | |
d9bce9d9 | 1009 | #endif |
74637406 AJ |
1010 | |
1011 | /* mulhw mulhw. */ | |
99e300ef | 1012 | static void gen_mulhw(DisasContext *ctx) |
d9bce9d9 | 1013 | { |
a7812ae4 | 1014 | TCGv_i64 t0, t1; |
74637406 | 1015 | |
a7812ae4 PB |
1016 | t0 = tcg_temp_new_i64(); |
1017 | t1 = tcg_temp_new_i64(); | |
74637406 AJ |
1018 | #if defined(TARGET_PPC64) |
1019 | tcg_gen_ext32s_tl(t0, cpu_gpr[rA(ctx->opcode)]); | |
1020 | tcg_gen_ext32s_tl(t1, cpu_gpr[rB(ctx->opcode)]); | |
1021 | tcg_gen_mul_i64(t0, t0, t1); | |
1022 | tcg_gen_shri_i64(cpu_gpr[rD(ctx->opcode)], t0, 32); | |
1023 | #else | |
1024 | tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]); | |
1025 | tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
1026 | tcg_gen_mul_i64(t0, t0, t1); | |
1027 | tcg_gen_shri_i64(t0, t0, 32); | |
1028 | tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
1029 | #endif | |
a7812ae4 PB |
1030 | tcg_temp_free_i64(t0); |
1031 | tcg_temp_free_i64(t1); | |
74637406 AJ |
1032 | if (unlikely(Rc(ctx->opcode) != 0)) |
1033 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); | |
d9bce9d9 | 1034 | } |
99e300ef | 1035 | |
54623277 | 1036 | /* mulhwu mulhwu. */ |
99e300ef | 1037 | static void gen_mulhwu(DisasContext *ctx) |
d9bce9d9 | 1038 | { |
a7812ae4 | 1039 | TCGv_i64 t0, t1; |
74637406 | 1040 | |
a7812ae4 PB |
1041 | t0 = tcg_temp_new_i64(); |
1042 | t1 = tcg_temp_new_i64(); | |
d9bce9d9 | 1043 | #if defined(TARGET_PPC64) |
74637406 AJ |
1044 | tcg_gen_ext32u_i64(t0, cpu_gpr[rA(ctx->opcode)]); |
1045 | tcg_gen_ext32u_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
1046 | tcg_gen_mul_i64(t0, t0, t1); | |
1047 | tcg_gen_shri_i64(cpu_gpr[rD(ctx->opcode)], t0, 32); | |
1048 | #else | |
1049 | tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]); | |
1050 | tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
1051 | tcg_gen_mul_i64(t0, t0, t1); | |
1052 | tcg_gen_shri_i64(t0, t0, 32); | |
1053 | tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
1054 | #endif | |
a7812ae4 PB |
1055 | tcg_temp_free_i64(t0); |
1056 | tcg_temp_free_i64(t1); | |
74637406 AJ |
1057 | if (unlikely(Rc(ctx->opcode) != 0)) |
1058 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); | |
d9bce9d9 | 1059 | } |
99e300ef | 1060 | |
54623277 | 1061 | /* mullw mullw. */ |
99e300ef | 1062 | static void gen_mullw(DisasContext *ctx) |
d9bce9d9 | 1063 | { |
74637406 AJ |
1064 | tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], |
1065 | cpu_gpr[rB(ctx->opcode)]); | |
1e4c090f | 1066 | tcg_gen_ext32s_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)]); |
74637406 AJ |
1067 | if (unlikely(Rc(ctx->opcode) != 0)) |
1068 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); | |
d9bce9d9 | 1069 | } |
99e300ef | 1070 | |
54623277 | 1071 | /* mullwo mullwo. */ |
99e300ef | 1072 | static void gen_mullwo(DisasContext *ctx) |
d9bce9d9 | 1073 | { |
74637406 | 1074 | int l1; |
a7812ae4 | 1075 | TCGv_i64 t0, t1; |
74637406 | 1076 | |
a7812ae4 PB |
1077 | t0 = tcg_temp_new_i64(); |
1078 | t1 = tcg_temp_new_i64(); | |
74637406 AJ |
1079 | l1 = gen_new_label(); |
1080 | /* Start with XER OV disabled, the most likely case */ | |
1081 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
1082 | #if defined(TARGET_PPC64) | |
1083 | tcg_gen_ext32s_i64(t0, cpu_gpr[rA(ctx->opcode)]); | |
1084 | tcg_gen_ext32s_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
1085 | #else | |
1086 | tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]); | |
1087 | tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
d9bce9d9 | 1088 | #endif |
74637406 AJ |
1089 | tcg_gen_mul_i64(t0, t0, t1); |
1090 | #if defined(TARGET_PPC64) | |
1091 | tcg_gen_ext32s_i64(cpu_gpr[rD(ctx->opcode)], t0); | |
1092 | tcg_gen_brcond_i64(TCG_COND_EQ, t0, cpu_gpr[rD(ctx->opcode)], l1); | |
1093 | #else | |
1094 | tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
1095 | tcg_gen_ext32s_i64(t1, t0); | |
1096 | tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1); | |
1097 | #endif | |
1098 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
1099 | gen_set_label(l1); | |
a7812ae4 PB |
1100 | tcg_temp_free_i64(t0); |
1101 | tcg_temp_free_i64(t1); | |
74637406 AJ |
1102 | if (unlikely(Rc(ctx->opcode) != 0)) |
1103 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); | |
d9bce9d9 | 1104 | } |
99e300ef | 1105 | |
54623277 | 1106 | /* mulli */ |
99e300ef | 1107 | static void gen_mulli(DisasContext *ctx) |
d9bce9d9 | 1108 | { |
74637406 AJ |
1109 | tcg_gen_muli_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], |
1110 | SIMM(ctx->opcode)); | |
d9bce9d9 JM |
1111 | } |
1112 | #if defined(TARGET_PPC64) | |
74637406 | 1113 | #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \ |
99e300ef | 1114 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 | 1115 | { \ |
a7812ae4 | 1116 | gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \ |
74637406 AJ |
1117 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \ |
1118 | if (unlikely(Rc(ctx->opcode) != 0)) \ | |
1119 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \ | |
d9bce9d9 | 1120 | } |
74637406 AJ |
1121 | /* mulhd mulhd. */ |
1122 | GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00); | |
1123 | /* mulhdu mulhdu. */ | |
1124 | GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02); | |
99e300ef | 1125 | |
54623277 | 1126 | /* mulld mulld. */ |
99e300ef | 1127 | static void gen_mulld(DisasContext *ctx) |
d9bce9d9 | 1128 | { |
74637406 AJ |
1129 | tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], |
1130 | cpu_gpr[rB(ctx->opcode)]); | |
1131 | if (unlikely(Rc(ctx->opcode) != 0)) | |
1132 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); | |
d9bce9d9 | 1133 | } |
74637406 AJ |
1134 | /* mulldo mulldo. */ |
1135 | GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17); | |
d9bce9d9 | 1136 | #endif |
74637406 AJ |
1137 | |
1138 | /* neg neg. nego nego. */ | |
636aa200 BS |
1139 | static inline void gen_op_arith_neg(DisasContext *ctx, TCGv ret, TCGv arg1, |
1140 | int ov_check) | |
d9bce9d9 | 1141 | { |
ec6469a3 AJ |
1142 | int l1 = gen_new_label(); |
1143 | int l2 = gen_new_label(); | |
a7812ae4 | 1144 | TCGv t0 = tcg_temp_local_new(); |
d9bce9d9 | 1145 | #if defined(TARGET_PPC64) |
74637406 | 1146 | if (ctx->sf_mode) { |
741a7444 | 1147 | tcg_gen_mov_tl(t0, arg1); |
ec6469a3 AJ |
1148 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT64_MIN, l1); |
1149 | } else | |
1150 | #endif | |
1151 | { | |
1152 | tcg_gen_ext32s_tl(t0, arg1); | |
74637406 AJ |
1153 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT32_MIN, l1); |
1154 | } | |
74637406 AJ |
1155 | tcg_gen_neg_tl(ret, arg1); |
1156 | if (ov_check) { | |
1157 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
1158 | } | |
1159 | tcg_gen_br(l2); | |
1160 | gen_set_label(l1); | |
ec6469a3 | 1161 | tcg_gen_mov_tl(ret, t0); |
74637406 AJ |
1162 | if (ov_check) { |
1163 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
1164 | } | |
1165 | gen_set_label(l2); | |
ec6469a3 | 1166 | tcg_temp_free(t0); |
74637406 AJ |
1167 | if (unlikely(Rc(ctx->opcode) != 0)) |
1168 | gen_set_Rc0(ctx, ret); | |
1169 | } | |
99e300ef BS |
1170 | |
1171 | static void gen_neg(DisasContext *ctx) | |
d9bce9d9 | 1172 | { |
ec6469a3 | 1173 | gen_op_arith_neg(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0); |
d9bce9d9 | 1174 | } |
99e300ef BS |
1175 | |
1176 | static void gen_nego(DisasContext *ctx) | |
79aceca5 | 1177 | { |
ec6469a3 | 1178 | gen_op_arith_neg(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 1); |
79aceca5 | 1179 | } |
74637406 AJ |
1180 | |
1181 | /* Common subf function */ | |
636aa200 BS |
1182 | static inline void gen_op_arith_subf(DisasContext *ctx, TCGv ret, TCGv arg1, |
1183 | TCGv arg2, int add_ca, int compute_ca, | |
1184 | int compute_ov) | |
79aceca5 | 1185 | { |
74637406 | 1186 | TCGv t0, t1; |
76a66253 | 1187 | |
74637406 | 1188 | if ((!compute_ca && !compute_ov) || |
a7812ae4 | 1189 | (!TCGV_EQUAL(ret, arg1) && !TCGV_EQUAL(ret, arg2))) { |
74637406 | 1190 | t0 = ret; |
e864cabd | 1191 | } else { |
a7812ae4 | 1192 | t0 = tcg_temp_local_new(); |
d9bce9d9 | 1193 | } |
76a66253 | 1194 | |
74637406 | 1195 | if (add_ca) { |
a7812ae4 | 1196 | t1 = tcg_temp_local_new(); |
74637406 AJ |
1197 | tcg_gen_andi_tl(t1, cpu_xer, (1 << XER_CA)); |
1198 | tcg_gen_shri_tl(t1, t1, XER_CA); | |
d2e9fd8f | 1199 | } else { |
1200 | TCGV_UNUSED(t1); | |
d9bce9d9 | 1201 | } |
79aceca5 | 1202 | |
74637406 AJ |
1203 | if (compute_ca && compute_ov) { |
1204 | /* Start with XER CA and OV disabled, the most likely case */ | |
1205 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~((1 << XER_CA) | (1 << XER_OV))); | |
1206 | } else if (compute_ca) { | |
1207 | /* Start with XER CA disabled, the most likely case */ | |
1208 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); | |
1209 | } else if (compute_ov) { | |
1210 | /* Start with XER OV disabled, the most likely case */ | |
1211 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
1212 | } | |
1213 | ||
1214 | if (add_ca) { | |
1215 | tcg_gen_not_tl(t0, arg1); | |
1216 | tcg_gen_add_tl(t0, t0, arg2); | |
1217 | gen_op_arith_compute_ca(ctx, t0, arg2, 0); | |
1218 | tcg_gen_add_tl(t0, t0, t1); | |
1219 | gen_op_arith_compute_ca(ctx, t0, t1, 0); | |
1220 | tcg_temp_free(t1); | |
79aceca5 | 1221 | } else { |
74637406 AJ |
1222 | tcg_gen_sub_tl(t0, arg2, arg1); |
1223 | if (compute_ca) { | |
1224 | gen_op_arith_compute_ca(ctx, t0, arg2, 1); | |
1225 | } | |
1226 | } | |
1227 | if (compute_ov) { | |
1228 | gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 1); | |
1229 | } | |
1230 | ||
1231 | if (unlikely(Rc(ctx->opcode) != 0)) | |
1232 | gen_set_Rc0(ctx, t0); | |
1233 | ||
a7812ae4 | 1234 | if (!TCGV_EQUAL(t0, ret)) { |
74637406 AJ |
1235 | tcg_gen_mov_tl(ret, t0); |
1236 | tcg_temp_free(t0); | |
79aceca5 | 1237 | } |
79aceca5 | 1238 | } |
74637406 AJ |
1239 | /* Sub functions with Two operands functions */ |
1240 | #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \ | |
99e300ef | 1241 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 AJ |
1242 | { \ |
1243 | gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \ | |
1244 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \ | |
1245 | add_ca, compute_ca, compute_ov); \ | |
1246 | } | |
1247 | /* Sub functions with one operand and one immediate */ | |
1248 | #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \ | |
1249 | add_ca, compute_ca, compute_ov) \ | |
99e300ef | 1250 | static void glue(gen_, name)(DisasContext *ctx) \ |
74637406 AJ |
1251 | { \ |
1252 | TCGv t0 = tcg_const_local_tl(const_val); \ | |
1253 | gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \ | |
1254 | cpu_gpr[rA(ctx->opcode)], t0, \ | |
1255 | add_ca, compute_ca, compute_ov); \ | |
1256 | tcg_temp_free(t0); \ | |
1257 | } | |
1258 | /* subf subf. subfo subfo. */ | |
1259 | GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0) | |
1260 | GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1) | |
1261 | /* subfc subfc. subfco subfco. */ | |
1262 | GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0) | |
1263 | GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1) | |
1264 | /* subfe subfe. subfeo subfo. */ | |
1265 | GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0) | |
1266 | GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1) | |
1267 | /* subfme subfme. subfmeo subfmeo. */ | |
1268 | GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0) | |
1269 | GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1) | |
1270 | /* subfze subfze. subfzeo subfzeo.*/ | |
1271 | GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0) | |
1272 | GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1) | |
99e300ef | 1273 | |
54623277 | 1274 | /* subfic */ |
99e300ef | 1275 | static void gen_subfic(DisasContext *ctx) |
79aceca5 | 1276 | { |
74637406 AJ |
1277 | /* Start with XER CA and OV disabled, the most likely case */ |
1278 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); | |
a7812ae4 | 1279 | TCGv t0 = tcg_temp_local_new(); |
74637406 AJ |
1280 | TCGv t1 = tcg_const_local_tl(SIMM(ctx->opcode)); |
1281 | tcg_gen_sub_tl(t0, t1, cpu_gpr[rA(ctx->opcode)]); | |
1282 | gen_op_arith_compute_ca(ctx, t0, t1, 1); | |
1283 | tcg_temp_free(t1); | |
1284 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
1285 | tcg_temp_free(t0); | |
79aceca5 FB |
1286 | } |
1287 | ||
79aceca5 | 1288 | /*** Integer logical ***/ |
26d67362 | 1289 | #define GEN_LOGICAL2(name, tcg_op, opc, type) \ |
99e300ef | 1290 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 1291 | { \ |
26d67362 AJ |
1292 | tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \ |
1293 | cpu_gpr[rB(ctx->opcode)]); \ | |
76a66253 | 1294 | if (unlikely(Rc(ctx->opcode) != 0)) \ |
26d67362 | 1295 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \ |
79aceca5 | 1296 | } |
79aceca5 | 1297 | |
26d67362 | 1298 | #define GEN_LOGICAL1(name, tcg_op, opc, type) \ |
99e300ef | 1299 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 1300 | { \ |
26d67362 | 1301 | tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \ |
76a66253 | 1302 | if (unlikely(Rc(ctx->opcode) != 0)) \ |
26d67362 | 1303 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \ |
79aceca5 FB |
1304 | } |
1305 | ||
1306 | /* and & and. */ | |
26d67362 | 1307 | GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER); |
79aceca5 | 1308 | /* andc & andc. */ |
26d67362 | 1309 | GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER); |
e8eaa2c0 | 1310 | |
54623277 | 1311 | /* andi. */ |
e8eaa2c0 | 1312 | static void gen_andi_(DisasContext *ctx) |
79aceca5 | 1313 | { |
26d67362 AJ |
1314 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode)); |
1315 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
79aceca5 | 1316 | } |
e8eaa2c0 | 1317 | |
54623277 | 1318 | /* andis. */ |
e8eaa2c0 | 1319 | static void gen_andis_(DisasContext *ctx) |
79aceca5 | 1320 | { |
26d67362 AJ |
1321 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode) << 16); |
1322 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
79aceca5 | 1323 | } |
99e300ef | 1324 | |
54623277 | 1325 | /* cntlzw */ |
99e300ef | 1326 | static void gen_cntlzw(DisasContext *ctx) |
26d67362 | 1327 | { |
a7812ae4 | 1328 | gen_helper_cntlzw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); |
26d67362 | 1329 | if (unlikely(Rc(ctx->opcode) != 0)) |
2e31f5d3 | 1330 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
26d67362 | 1331 | } |
79aceca5 | 1332 | /* eqv & eqv. */ |
26d67362 | 1333 | GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER); |
79aceca5 | 1334 | /* extsb & extsb. */ |
26d67362 | 1335 | GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER); |
79aceca5 | 1336 | /* extsh & extsh. */ |
26d67362 | 1337 | GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER); |
79aceca5 | 1338 | /* nand & nand. */ |
26d67362 | 1339 | GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER); |
79aceca5 | 1340 | /* nor & nor. */ |
26d67362 | 1341 | GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER); |
99e300ef | 1342 | |
54623277 | 1343 | /* or & or. */ |
99e300ef | 1344 | static void gen_or(DisasContext *ctx) |
9a64fbe4 | 1345 | { |
76a66253 JM |
1346 | int rs, ra, rb; |
1347 | ||
1348 | rs = rS(ctx->opcode); | |
1349 | ra = rA(ctx->opcode); | |
1350 | rb = rB(ctx->opcode); | |
1351 | /* Optimisation for mr. ri case */ | |
1352 | if (rs != ra || rs != rb) { | |
26d67362 AJ |
1353 | if (rs != rb) |
1354 | tcg_gen_or_tl(cpu_gpr[ra], cpu_gpr[rs], cpu_gpr[rb]); | |
1355 | else | |
1356 | tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rs]); | |
76a66253 | 1357 | if (unlikely(Rc(ctx->opcode) != 0)) |
26d67362 | 1358 | gen_set_Rc0(ctx, cpu_gpr[ra]); |
76a66253 | 1359 | } else if (unlikely(Rc(ctx->opcode) != 0)) { |
26d67362 | 1360 | gen_set_Rc0(ctx, cpu_gpr[rs]); |
c80f84e3 JM |
1361 | #if defined(TARGET_PPC64) |
1362 | } else { | |
26d67362 AJ |
1363 | int prio = 0; |
1364 | ||
c80f84e3 JM |
1365 | switch (rs) { |
1366 | case 1: | |
1367 | /* Set process priority to low */ | |
26d67362 | 1368 | prio = 2; |
c80f84e3 JM |
1369 | break; |
1370 | case 6: | |
1371 | /* Set process priority to medium-low */ | |
26d67362 | 1372 | prio = 3; |
c80f84e3 JM |
1373 | break; |
1374 | case 2: | |
1375 | /* Set process priority to normal */ | |
26d67362 | 1376 | prio = 4; |
c80f84e3 | 1377 | break; |
be147d08 JM |
1378 | #if !defined(CONFIG_USER_ONLY) |
1379 | case 31: | |
76db3ba4 | 1380 | if (ctx->mem_idx > 0) { |
be147d08 | 1381 | /* Set process priority to very low */ |
26d67362 | 1382 | prio = 1; |
be147d08 JM |
1383 | } |
1384 | break; | |
1385 | case 5: | |
76db3ba4 | 1386 | if (ctx->mem_idx > 0) { |
be147d08 | 1387 | /* Set process priority to medium-hight */ |
26d67362 | 1388 | prio = 5; |
be147d08 JM |
1389 | } |
1390 | break; | |
1391 | case 3: | |
76db3ba4 | 1392 | if (ctx->mem_idx > 0) { |
be147d08 | 1393 | /* Set process priority to high */ |
26d67362 | 1394 | prio = 6; |
be147d08 JM |
1395 | } |
1396 | break; | |
be147d08 | 1397 | case 7: |
76db3ba4 | 1398 | if (ctx->mem_idx > 1) { |
be147d08 | 1399 | /* Set process priority to very high */ |
26d67362 | 1400 | prio = 7; |
be147d08 JM |
1401 | } |
1402 | break; | |
be147d08 | 1403 | #endif |
c80f84e3 JM |
1404 | default: |
1405 | /* nop */ | |
1406 | break; | |
1407 | } | |
26d67362 | 1408 | if (prio) { |
a7812ae4 | 1409 | TCGv t0 = tcg_temp_new(); |
54cdcae6 | 1410 | gen_load_spr(t0, SPR_PPR); |
ea363694 AJ |
1411 | tcg_gen_andi_tl(t0, t0, ~0x001C000000000000ULL); |
1412 | tcg_gen_ori_tl(t0, t0, ((uint64_t)prio) << 50); | |
54cdcae6 | 1413 | gen_store_spr(SPR_PPR, t0); |
ea363694 | 1414 | tcg_temp_free(t0); |
26d67362 | 1415 | } |
c80f84e3 | 1416 | #endif |
9a64fbe4 | 1417 | } |
9a64fbe4 | 1418 | } |
79aceca5 | 1419 | /* orc & orc. */ |
26d67362 | 1420 | GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER); |
99e300ef | 1421 | |
54623277 | 1422 | /* xor & xor. */ |
99e300ef | 1423 | static void gen_xor(DisasContext *ctx) |
9a64fbe4 | 1424 | { |
9a64fbe4 | 1425 | /* Optimisation for "set to zero" case */ |
26d67362 | 1426 | if (rS(ctx->opcode) != rB(ctx->opcode)) |
312179c4 | 1427 | tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
26d67362 AJ |
1428 | else |
1429 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); | |
76a66253 | 1430 | if (unlikely(Rc(ctx->opcode) != 0)) |
26d67362 | 1431 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
9a64fbe4 | 1432 | } |
99e300ef | 1433 | |
54623277 | 1434 | /* ori */ |
99e300ef | 1435 | static void gen_ori(DisasContext *ctx) |
79aceca5 | 1436 | { |
76a66253 | 1437 | target_ulong uimm = UIMM(ctx->opcode); |
79aceca5 | 1438 | |
9a64fbe4 FB |
1439 | if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) { |
1440 | /* NOP */ | |
76a66253 | 1441 | /* XXX: should handle special NOPs for POWER series */ |
9a64fbe4 | 1442 | return; |
76a66253 | 1443 | } |
26d67362 | 1444 | tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm); |
79aceca5 | 1445 | } |
99e300ef | 1446 | |
54623277 | 1447 | /* oris */ |
99e300ef | 1448 | static void gen_oris(DisasContext *ctx) |
79aceca5 | 1449 | { |
76a66253 | 1450 | target_ulong uimm = UIMM(ctx->opcode); |
79aceca5 | 1451 | |
9a64fbe4 FB |
1452 | if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) { |
1453 | /* NOP */ | |
1454 | return; | |
76a66253 | 1455 | } |
26d67362 | 1456 | tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16); |
79aceca5 | 1457 | } |
99e300ef | 1458 | |
54623277 | 1459 | /* xori */ |
99e300ef | 1460 | static void gen_xori(DisasContext *ctx) |
79aceca5 | 1461 | { |
76a66253 | 1462 | target_ulong uimm = UIMM(ctx->opcode); |
9a64fbe4 FB |
1463 | |
1464 | if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) { | |
1465 | /* NOP */ | |
1466 | return; | |
1467 | } | |
26d67362 | 1468 | tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm); |
79aceca5 | 1469 | } |
99e300ef | 1470 | |
54623277 | 1471 | /* xoris */ |
99e300ef | 1472 | static void gen_xoris(DisasContext *ctx) |
79aceca5 | 1473 | { |
76a66253 | 1474 | target_ulong uimm = UIMM(ctx->opcode); |
9a64fbe4 FB |
1475 | |
1476 | if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) { | |
1477 | /* NOP */ | |
1478 | return; | |
1479 | } | |
26d67362 | 1480 | tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16); |
79aceca5 | 1481 | } |
99e300ef | 1482 | |
54623277 | 1483 | /* popcntb : PowerPC 2.03 specification */ |
99e300ef | 1484 | static void gen_popcntb(DisasContext *ctx) |
d9bce9d9 | 1485 | { |
d9bce9d9 JM |
1486 | #if defined(TARGET_PPC64) |
1487 | if (ctx->sf_mode) | |
a7812ae4 | 1488 | gen_helper_popcntb_64(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); |
d9bce9d9 JM |
1489 | else |
1490 | #endif | |
a7812ae4 | 1491 | gen_helper_popcntb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); |
d9bce9d9 JM |
1492 | } |
1493 | ||
1494 | #if defined(TARGET_PPC64) | |
1495 | /* extsw & extsw. */ | |
26d67362 | 1496 | GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B); |
99e300ef | 1497 | |
54623277 | 1498 | /* cntlzd */ |
99e300ef | 1499 | static void gen_cntlzd(DisasContext *ctx) |
26d67362 | 1500 | { |
a7812ae4 | 1501 | gen_helper_cntlzd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); |
26d67362 AJ |
1502 | if (unlikely(Rc(ctx->opcode) != 0)) |
1503 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1504 | } | |
d9bce9d9 JM |
1505 | #endif |
1506 | ||
79aceca5 | 1507 | /*** Integer rotate ***/ |
99e300ef | 1508 | |
54623277 | 1509 | /* rlwimi & rlwimi. */ |
99e300ef | 1510 | static void gen_rlwimi(DisasContext *ctx) |
79aceca5 | 1511 | { |
76a66253 | 1512 | uint32_t mb, me, sh; |
79aceca5 FB |
1513 | |
1514 | mb = MB(ctx->opcode); | |
1515 | me = ME(ctx->opcode); | |
76a66253 | 1516 | sh = SH(ctx->opcode); |
d03ef511 AJ |
1517 | if (likely(sh == 0 && mb == 0 && me == 31)) { |
1518 | tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
1519 | } else { | |
d03ef511 | 1520 | target_ulong mask; |
a7812ae4 PB |
1521 | TCGv t1; |
1522 | TCGv t0 = tcg_temp_new(); | |
54843a58 | 1523 | #if defined(TARGET_PPC64) |
a7812ae4 PB |
1524 | TCGv_i32 t2 = tcg_temp_new_i32(); |
1525 | tcg_gen_trunc_i64_i32(t2, cpu_gpr[rS(ctx->opcode)]); | |
1526 | tcg_gen_rotli_i32(t2, t2, sh); | |
1527 | tcg_gen_extu_i32_i64(t0, t2); | |
1528 | tcg_temp_free_i32(t2); | |
54843a58 AJ |
1529 | #else |
1530 | tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
1531 | #endif | |
76a66253 | 1532 | #if defined(TARGET_PPC64) |
d03ef511 AJ |
1533 | mb += 32; |
1534 | me += 32; | |
76a66253 | 1535 | #endif |
d03ef511 | 1536 | mask = MASK(mb, me); |
a7812ae4 | 1537 | t1 = tcg_temp_new(); |
d03ef511 AJ |
1538 | tcg_gen_andi_tl(t0, t0, mask); |
1539 | tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask); | |
1540 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
1541 | tcg_temp_free(t0); | |
1542 | tcg_temp_free(t1); | |
1543 | } | |
76a66253 | 1544 | if (unlikely(Rc(ctx->opcode) != 0)) |
d03ef511 | 1545 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
79aceca5 | 1546 | } |
99e300ef | 1547 | |
54623277 | 1548 | /* rlwinm & rlwinm. */ |
99e300ef | 1549 | static void gen_rlwinm(DisasContext *ctx) |
79aceca5 FB |
1550 | { |
1551 | uint32_t mb, me, sh; | |
3b46e624 | 1552 | |
79aceca5 FB |
1553 | sh = SH(ctx->opcode); |
1554 | mb = MB(ctx->opcode); | |
1555 | me = ME(ctx->opcode); | |
d03ef511 AJ |
1556 | |
1557 | if (likely(mb == 0 && me == (31 - sh))) { | |
1558 | if (likely(sh == 0)) { | |
1559 | tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
1560 | } else { | |
a7812ae4 | 1561 | TCGv t0 = tcg_temp_new(); |
d03ef511 AJ |
1562 | tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]); |
1563 | tcg_gen_shli_tl(t0, t0, sh); | |
1564 | tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
1565 | tcg_temp_free(t0); | |
79aceca5 | 1566 | } |
d03ef511 | 1567 | } else if (likely(sh != 0 && me == 31 && sh == (32 - mb))) { |
a7812ae4 | 1568 | TCGv t0 = tcg_temp_new(); |
d03ef511 AJ |
1569 | tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]); |
1570 | tcg_gen_shri_tl(t0, t0, mb); | |
1571 | tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
1572 | tcg_temp_free(t0); | |
1573 | } else { | |
a7812ae4 | 1574 | TCGv t0 = tcg_temp_new(); |
54843a58 | 1575 | #if defined(TARGET_PPC64) |
a7812ae4 | 1576 | TCGv_i32 t1 = tcg_temp_new_i32(); |
54843a58 AJ |
1577 | tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]); |
1578 | tcg_gen_rotli_i32(t1, t1, sh); | |
1579 | tcg_gen_extu_i32_i64(t0, t1); | |
a7812ae4 | 1580 | tcg_temp_free_i32(t1); |
54843a58 AJ |
1581 | #else |
1582 | tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
1583 | #endif | |
76a66253 | 1584 | #if defined(TARGET_PPC64) |
d03ef511 AJ |
1585 | mb += 32; |
1586 | me += 32; | |
76a66253 | 1587 | #endif |
d03ef511 AJ |
1588 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me)); |
1589 | tcg_temp_free(t0); | |
1590 | } | |
76a66253 | 1591 | if (unlikely(Rc(ctx->opcode) != 0)) |
d03ef511 | 1592 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
79aceca5 | 1593 | } |
99e300ef | 1594 | |
54623277 | 1595 | /* rlwnm & rlwnm. */ |
99e300ef | 1596 | static void gen_rlwnm(DisasContext *ctx) |
79aceca5 FB |
1597 | { |
1598 | uint32_t mb, me; | |
54843a58 AJ |
1599 | TCGv t0; |
1600 | #if defined(TARGET_PPC64) | |
a7812ae4 | 1601 | TCGv_i32 t1, t2; |
54843a58 | 1602 | #endif |
79aceca5 FB |
1603 | |
1604 | mb = MB(ctx->opcode); | |
1605 | me = ME(ctx->opcode); | |
a7812ae4 | 1606 | t0 = tcg_temp_new(); |
d03ef511 | 1607 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1f); |
54843a58 | 1608 | #if defined(TARGET_PPC64) |
a7812ae4 PB |
1609 | t1 = tcg_temp_new_i32(); |
1610 | t2 = tcg_temp_new_i32(); | |
54843a58 AJ |
1611 | tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]); |
1612 | tcg_gen_trunc_i64_i32(t2, t0); | |
1613 | tcg_gen_rotl_i32(t1, t1, t2); | |
1614 | tcg_gen_extu_i32_i64(t0, t1); | |
a7812ae4 PB |
1615 | tcg_temp_free_i32(t1); |
1616 | tcg_temp_free_i32(t2); | |
54843a58 AJ |
1617 | #else |
1618 | tcg_gen_rotl_i32(t0, cpu_gpr[rS(ctx->opcode)], t0); | |
1619 | #endif | |
76a66253 JM |
1620 | if (unlikely(mb != 0 || me != 31)) { |
1621 | #if defined(TARGET_PPC64) | |
1622 | mb += 32; | |
1623 | me += 32; | |
1624 | #endif | |
54843a58 | 1625 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me)); |
d03ef511 | 1626 | } else { |
54843a58 | 1627 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); |
79aceca5 | 1628 | } |
54843a58 | 1629 | tcg_temp_free(t0); |
76a66253 | 1630 | if (unlikely(Rc(ctx->opcode) != 0)) |
d03ef511 | 1631 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
79aceca5 FB |
1632 | } |
1633 | ||
d9bce9d9 JM |
1634 | #if defined(TARGET_PPC64) |
1635 | #define GEN_PPC64_R2(name, opc1, opc2) \ | |
e8eaa2c0 | 1636 | static void glue(gen_, name##0)(DisasContext *ctx) \ |
d9bce9d9 JM |
1637 | { \ |
1638 | gen_##name(ctx, 0); \ | |
1639 | } \ | |
e8eaa2c0 BS |
1640 | \ |
1641 | static void glue(gen_, name##1)(DisasContext *ctx) \ | |
d9bce9d9 JM |
1642 | { \ |
1643 | gen_##name(ctx, 1); \ | |
1644 | } | |
1645 | #define GEN_PPC64_R4(name, opc1, opc2) \ | |
e8eaa2c0 | 1646 | static void glue(gen_, name##0)(DisasContext *ctx) \ |
d9bce9d9 JM |
1647 | { \ |
1648 | gen_##name(ctx, 0, 0); \ | |
1649 | } \ | |
e8eaa2c0 BS |
1650 | \ |
1651 | static void glue(gen_, name##1)(DisasContext *ctx) \ | |
d9bce9d9 JM |
1652 | { \ |
1653 | gen_##name(ctx, 0, 1); \ | |
1654 | } \ | |
e8eaa2c0 BS |
1655 | \ |
1656 | static void glue(gen_, name##2)(DisasContext *ctx) \ | |
d9bce9d9 JM |
1657 | { \ |
1658 | gen_##name(ctx, 1, 0); \ | |
1659 | } \ | |
e8eaa2c0 BS |
1660 | \ |
1661 | static void glue(gen_, name##3)(DisasContext *ctx) \ | |
d9bce9d9 JM |
1662 | { \ |
1663 | gen_##name(ctx, 1, 1); \ | |
1664 | } | |
51789c41 | 1665 | |
636aa200 BS |
1666 | static inline void gen_rldinm(DisasContext *ctx, uint32_t mb, uint32_t me, |
1667 | uint32_t sh) | |
51789c41 | 1668 | { |
d03ef511 AJ |
1669 | if (likely(sh != 0 && mb == 0 && me == (63 - sh))) { |
1670 | tcg_gen_shli_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh); | |
1671 | } else if (likely(sh != 0 && me == 63 && sh == (64 - mb))) { | |
1672 | tcg_gen_shri_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], mb); | |
1673 | } else { | |
a7812ae4 | 1674 | TCGv t0 = tcg_temp_new(); |
54843a58 | 1675 | tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); |
d03ef511 | 1676 | if (likely(mb == 0 && me == 63)) { |
54843a58 | 1677 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); |
d03ef511 AJ |
1678 | } else { |
1679 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me)); | |
51789c41 | 1680 | } |
d03ef511 | 1681 | tcg_temp_free(t0); |
51789c41 | 1682 | } |
51789c41 | 1683 | if (unlikely(Rc(ctx->opcode) != 0)) |
d03ef511 | 1684 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
51789c41 | 1685 | } |
d9bce9d9 | 1686 | /* rldicl - rldicl. */ |
636aa200 | 1687 | static inline void gen_rldicl(DisasContext *ctx, int mbn, int shn) |
d9bce9d9 | 1688 | { |
51789c41 | 1689 | uint32_t sh, mb; |
d9bce9d9 | 1690 | |
9d53c753 JM |
1691 | sh = SH(ctx->opcode) | (shn << 5); |
1692 | mb = MB(ctx->opcode) | (mbn << 5); | |
51789c41 | 1693 | gen_rldinm(ctx, mb, 63, sh); |
d9bce9d9 | 1694 | } |
51789c41 | 1695 | GEN_PPC64_R4(rldicl, 0x1E, 0x00); |
d9bce9d9 | 1696 | /* rldicr - rldicr. */ |
636aa200 | 1697 | static inline void gen_rldicr(DisasContext *ctx, int men, int shn) |
d9bce9d9 | 1698 | { |
51789c41 | 1699 | uint32_t sh, me; |
d9bce9d9 | 1700 | |
9d53c753 JM |
1701 | sh = SH(ctx->opcode) | (shn << 5); |
1702 | me = MB(ctx->opcode) | (men << 5); | |
51789c41 | 1703 | gen_rldinm(ctx, 0, me, sh); |
d9bce9d9 | 1704 | } |
51789c41 | 1705 | GEN_PPC64_R4(rldicr, 0x1E, 0x02); |
d9bce9d9 | 1706 | /* rldic - rldic. */ |
636aa200 | 1707 | static inline void gen_rldic(DisasContext *ctx, int mbn, int shn) |
d9bce9d9 | 1708 | { |
51789c41 | 1709 | uint32_t sh, mb; |
d9bce9d9 | 1710 | |
9d53c753 JM |
1711 | sh = SH(ctx->opcode) | (shn << 5); |
1712 | mb = MB(ctx->opcode) | (mbn << 5); | |
51789c41 JM |
1713 | gen_rldinm(ctx, mb, 63 - sh, sh); |
1714 | } | |
1715 | GEN_PPC64_R4(rldic, 0x1E, 0x04); | |
1716 | ||
636aa200 | 1717 | static inline void gen_rldnm(DisasContext *ctx, uint32_t mb, uint32_t me) |
51789c41 | 1718 | { |
54843a58 | 1719 | TCGv t0; |
d03ef511 AJ |
1720 | |
1721 | mb = MB(ctx->opcode); | |
1722 | me = ME(ctx->opcode); | |
a7812ae4 | 1723 | t0 = tcg_temp_new(); |
d03ef511 | 1724 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f); |
54843a58 | 1725 | tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0); |
51789c41 | 1726 | if (unlikely(mb != 0 || me != 63)) { |
54843a58 AJ |
1727 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me)); |
1728 | } else { | |
1729 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
1730 | } | |
1731 | tcg_temp_free(t0); | |
51789c41 | 1732 | if (unlikely(Rc(ctx->opcode) != 0)) |
d03ef511 | 1733 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
d9bce9d9 | 1734 | } |
51789c41 | 1735 | |
d9bce9d9 | 1736 | /* rldcl - rldcl. */ |
636aa200 | 1737 | static inline void gen_rldcl(DisasContext *ctx, int mbn) |
d9bce9d9 | 1738 | { |
51789c41 | 1739 | uint32_t mb; |
d9bce9d9 | 1740 | |
9d53c753 | 1741 | mb = MB(ctx->opcode) | (mbn << 5); |
51789c41 | 1742 | gen_rldnm(ctx, mb, 63); |
d9bce9d9 | 1743 | } |
36081602 | 1744 | GEN_PPC64_R2(rldcl, 0x1E, 0x08); |
d9bce9d9 | 1745 | /* rldcr - rldcr. */ |
636aa200 | 1746 | static inline void gen_rldcr(DisasContext *ctx, int men) |
d9bce9d9 | 1747 | { |
51789c41 | 1748 | uint32_t me; |
d9bce9d9 | 1749 | |
9d53c753 | 1750 | me = MB(ctx->opcode) | (men << 5); |
51789c41 | 1751 | gen_rldnm(ctx, 0, me); |
d9bce9d9 | 1752 | } |
36081602 | 1753 | GEN_PPC64_R2(rldcr, 0x1E, 0x09); |
d9bce9d9 | 1754 | /* rldimi - rldimi. */ |
636aa200 | 1755 | static inline void gen_rldimi(DisasContext *ctx, int mbn, int shn) |
d9bce9d9 | 1756 | { |
271a916e | 1757 | uint32_t sh, mb, me; |
d9bce9d9 | 1758 | |
9d53c753 JM |
1759 | sh = SH(ctx->opcode) | (shn << 5); |
1760 | mb = MB(ctx->opcode) | (mbn << 5); | |
271a916e | 1761 | me = 63 - sh; |
d03ef511 AJ |
1762 | if (unlikely(sh == 0 && mb == 0)) { |
1763 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
1764 | } else { | |
1765 | TCGv t0, t1; | |
1766 | target_ulong mask; | |
1767 | ||
a7812ae4 | 1768 | t0 = tcg_temp_new(); |
54843a58 | 1769 | tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); |
a7812ae4 | 1770 | t1 = tcg_temp_new(); |
d03ef511 AJ |
1771 | mask = MASK(mb, me); |
1772 | tcg_gen_andi_tl(t0, t0, mask); | |
1773 | tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask); | |
1774 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
1775 | tcg_temp_free(t0); | |
1776 | tcg_temp_free(t1); | |
51789c41 | 1777 | } |
51789c41 | 1778 | if (unlikely(Rc(ctx->opcode) != 0)) |
d03ef511 | 1779 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
d9bce9d9 | 1780 | } |
36081602 | 1781 | GEN_PPC64_R4(rldimi, 0x1E, 0x06); |
d9bce9d9 JM |
1782 | #endif |
1783 | ||
79aceca5 | 1784 | /*** Integer shift ***/ |
99e300ef | 1785 | |
54623277 | 1786 | /* slw & slw. */ |
99e300ef | 1787 | static void gen_slw(DisasContext *ctx) |
26d67362 | 1788 | { |
fea0c503 | 1789 | TCGv t0; |
26d67362 AJ |
1790 | int l1, l2; |
1791 | l1 = gen_new_label(); | |
1792 | l2 = gen_new_label(); | |
1793 | ||
a7812ae4 | 1794 | t0 = tcg_temp_local_new(); |
0cfe58cd AJ |
1795 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f); |
1796 | tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x20, l1); | |
26d67362 AJ |
1797 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); |
1798 | tcg_gen_br(l2); | |
1799 | gen_set_label(l1); | |
fea0c503 | 1800 | tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0); |
26d67362 AJ |
1801 | tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); |
1802 | gen_set_label(l2); | |
fea0c503 | 1803 | tcg_temp_free(t0); |
26d67362 AJ |
1804 | if (unlikely(Rc(ctx->opcode) != 0)) |
1805 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1806 | } | |
99e300ef | 1807 | |
54623277 | 1808 | /* sraw & sraw. */ |
99e300ef | 1809 | static void gen_sraw(DisasContext *ctx) |
26d67362 | 1810 | { |
a7812ae4 PB |
1811 | gen_helper_sraw(cpu_gpr[rA(ctx->opcode)], |
1812 | cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
26d67362 AJ |
1813 | if (unlikely(Rc(ctx->opcode) != 0)) |
1814 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1815 | } | |
99e300ef | 1816 | |
54623277 | 1817 | /* srawi & srawi. */ |
99e300ef | 1818 | static void gen_srawi(DisasContext *ctx) |
79aceca5 | 1819 | { |
26d67362 AJ |
1820 | int sh = SH(ctx->opcode); |
1821 | if (sh != 0) { | |
1822 | int l1, l2; | |
fea0c503 | 1823 | TCGv t0; |
26d67362 AJ |
1824 | l1 = gen_new_label(); |
1825 | l2 = gen_new_label(); | |
a7812ae4 | 1826 | t0 = tcg_temp_local_new(); |
fea0c503 AJ |
1827 | tcg_gen_ext32s_tl(t0, cpu_gpr[rS(ctx->opcode)]); |
1828 | tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1); | |
1829 | tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1ULL << sh) - 1); | |
1830 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); | |
269f3e95 | 1831 | tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA); |
26d67362 AJ |
1832 | tcg_gen_br(l2); |
1833 | gen_set_label(l1); | |
269f3e95 | 1834 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); |
26d67362 | 1835 | gen_set_label(l2); |
fea0c503 AJ |
1836 | tcg_gen_ext32s_tl(t0, cpu_gpr[rS(ctx->opcode)]); |
1837 | tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], t0, sh); | |
1838 | tcg_temp_free(t0); | |
26d67362 AJ |
1839 | } else { |
1840 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
269f3e95 | 1841 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); |
d9bce9d9 | 1842 | } |
76a66253 | 1843 | if (unlikely(Rc(ctx->opcode) != 0)) |
26d67362 | 1844 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
79aceca5 | 1845 | } |
99e300ef | 1846 | |
54623277 | 1847 | /* srw & srw. */ |
99e300ef | 1848 | static void gen_srw(DisasContext *ctx) |
26d67362 | 1849 | { |
fea0c503 | 1850 | TCGv t0, t1; |
26d67362 AJ |
1851 | int l1, l2; |
1852 | l1 = gen_new_label(); | |
1853 | l2 = gen_new_label(); | |
d9bce9d9 | 1854 | |
a7812ae4 | 1855 | t0 = tcg_temp_local_new(); |
0cfe58cd AJ |
1856 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f); |
1857 | tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x20, l1); | |
26d67362 AJ |
1858 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); |
1859 | tcg_gen_br(l2); | |
1860 | gen_set_label(l1); | |
a7812ae4 | 1861 | t1 = tcg_temp_new(); |
fea0c503 AJ |
1862 | tcg_gen_ext32u_tl(t1, cpu_gpr[rS(ctx->opcode)]); |
1863 | tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t1, t0); | |
1864 | tcg_temp_free(t1); | |
26d67362 | 1865 | gen_set_label(l2); |
fea0c503 | 1866 | tcg_temp_free(t0); |
26d67362 AJ |
1867 | if (unlikely(Rc(ctx->opcode) != 0)) |
1868 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1869 | } | |
54623277 | 1870 | |
d9bce9d9 JM |
1871 | #if defined(TARGET_PPC64) |
1872 | /* sld & sld. */ | |
99e300ef | 1873 | static void gen_sld(DisasContext *ctx) |
26d67362 | 1874 | { |
fea0c503 | 1875 | TCGv t0; |
26d67362 AJ |
1876 | int l1, l2; |
1877 | l1 = gen_new_label(); | |
1878 | l2 = gen_new_label(); | |
1879 | ||
a7812ae4 | 1880 | t0 = tcg_temp_local_new(); |
0cfe58cd AJ |
1881 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x7f); |
1882 | tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x40, l1); | |
26d67362 AJ |
1883 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); |
1884 | tcg_gen_br(l2); | |
1885 | gen_set_label(l1); | |
fea0c503 | 1886 | tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0); |
26d67362 | 1887 | gen_set_label(l2); |
fea0c503 | 1888 | tcg_temp_free(t0); |
26d67362 AJ |
1889 | if (unlikely(Rc(ctx->opcode) != 0)) |
1890 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1891 | } | |
99e300ef | 1892 | |
54623277 | 1893 | /* srad & srad. */ |
99e300ef | 1894 | static void gen_srad(DisasContext *ctx) |
26d67362 | 1895 | { |
a7812ae4 PB |
1896 | gen_helper_srad(cpu_gpr[rA(ctx->opcode)], |
1897 | cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
26d67362 AJ |
1898 | if (unlikely(Rc(ctx->opcode) != 0)) |
1899 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1900 | } | |
d9bce9d9 | 1901 | /* sradi & sradi. */ |
636aa200 | 1902 | static inline void gen_sradi(DisasContext *ctx, int n) |
d9bce9d9 | 1903 | { |
26d67362 | 1904 | int sh = SH(ctx->opcode) + (n << 5); |
d9bce9d9 | 1905 | if (sh != 0) { |
26d67362 | 1906 | int l1, l2; |
fea0c503 | 1907 | TCGv t0; |
26d67362 AJ |
1908 | l1 = gen_new_label(); |
1909 | l2 = gen_new_label(); | |
a7812ae4 | 1910 | t0 = tcg_temp_local_new(); |
26d67362 | 1911 | tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1); |
fea0c503 AJ |
1912 | tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1ULL << sh) - 1); |
1913 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); | |
269f3e95 | 1914 | tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA); |
26d67362 AJ |
1915 | tcg_gen_br(l2); |
1916 | gen_set_label(l1); | |
269f3e95 | 1917 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); |
26d67362 | 1918 | gen_set_label(l2); |
a9730017 | 1919 | tcg_temp_free(t0); |
26d67362 AJ |
1920 | tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh); |
1921 | } else { | |
1922 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
269f3e95 | 1923 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); |
d9bce9d9 | 1924 | } |
d9bce9d9 | 1925 | if (unlikely(Rc(ctx->opcode) != 0)) |
26d67362 | 1926 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
d9bce9d9 | 1927 | } |
e8eaa2c0 BS |
1928 | |
1929 | static void gen_sradi0(DisasContext *ctx) | |
d9bce9d9 JM |
1930 | { |
1931 | gen_sradi(ctx, 0); | |
1932 | } | |
e8eaa2c0 BS |
1933 | |
1934 | static void gen_sradi1(DisasContext *ctx) | |
d9bce9d9 JM |
1935 | { |
1936 | gen_sradi(ctx, 1); | |
1937 | } | |
99e300ef | 1938 | |
54623277 | 1939 | /* srd & srd. */ |
99e300ef | 1940 | static void gen_srd(DisasContext *ctx) |
26d67362 | 1941 | { |
fea0c503 | 1942 | TCGv t0; |
26d67362 AJ |
1943 | int l1, l2; |
1944 | l1 = gen_new_label(); | |
1945 | l2 = gen_new_label(); | |
1946 | ||
a7812ae4 | 1947 | t0 = tcg_temp_local_new(); |
0cfe58cd AJ |
1948 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x7f); |
1949 | tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x40, l1); | |
26d67362 AJ |
1950 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); |
1951 | tcg_gen_br(l2); | |
1952 | gen_set_label(l1); | |
fea0c503 | 1953 | tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0); |
26d67362 | 1954 | gen_set_label(l2); |
fea0c503 | 1955 | tcg_temp_free(t0); |
26d67362 AJ |
1956 | if (unlikely(Rc(ctx->opcode) != 0)) |
1957 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); | |
1958 | } | |
d9bce9d9 | 1959 | #endif |
79aceca5 FB |
1960 | |
1961 | /*** Floating-Point arithmetic ***/ | |
7c58044c | 1962 | #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \ |
99e300ef | 1963 | static void gen_f##name(DisasContext *ctx) \ |
9a64fbe4 | 1964 | { \ |
76a66253 | 1965 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 1966 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
3cc62370 FB |
1967 | return; \ |
1968 | } \ | |
eb44b959 AJ |
1969 | /* NIP cannot be restored if the memory exception comes from an helper */ \ |
1970 | gen_update_nip(ctx, ctx->nip - 4); \ | |
7c58044c | 1971 | gen_reset_fpstatus(); \ |
af12906f AJ |
1972 | gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \ |
1973 | cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \ | |
4ecc3190 | 1974 | if (isfloat) { \ |
af12906f | 1975 | gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \ |
4ecc3190 | 1976 | } \ |
af12906f AJ |
1977 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \ |
1978 | Rc(ctx->opcode) != 0); \ | |
9a64fbe4 FB |
1979 | } |
1980 | ||
7c58044c JM |
1981 | #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \ |
1982 | _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \ | |
1983 | _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type); | |
9a64fbe4 | 1984 | |
7c58044c | 1985 | #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \ |
99e300ef | 1986 | static void gen_f##name(DisasContext *ctx) \ |
9a64fbe4 | 1987 | { \ |
76a66253 | 1988 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 1989 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
3cc62370 FB |
1990 | return; \ |
1991 | } \ | |
eb44b959 AJ |
1992 | /* NIP cannot be restored if the memory exception comes from an helper */ \ |
1993 | gen_update_nip(ctx, ctx->nip - 4); \ | |
7c58044c | 1994 | gen_reset_fpstatus(); \ |
af12906f AJ |
1995 | gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \ |
1996 | cpu_fpr[rB(ctx->opcode)]); \ | |
4ecc3190 | 1997 | if (isfloat) { \ |
af12906f | 1998 | gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \ |
4ecc3190 | 1999 | } \ |
af12906f AJ |
2000 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \ |
2001 | set_fprf, Rc(ctx->opcode) != 0); \ | |
9a64fbe4 | 2002 | } |
7c58044c JM |
2003 | #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \ |
2004 | _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \ | |
2005 | _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type); | |
9a64fbe4 | 2006 | |
7c58044c | 2007 | #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \ |
99e300ef | 2008 | static void gen_f##name(DisasContext *ctx) \ |
9a64fbe4 | 2009 | { \ |
76a66253 | 2010 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 2011 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
3cc62370 FB |
2012 | return; \ |
2013 | } \ | |
eb44b959 AJ |
2014 | /* NIP cannot be restored if the memory exception comes from an helper */ \ |
2015 | gen_update_nip(ctx, ctx->nip - 4); \ | |
7c58044c | 2016 | gen_reset_fpstatus(); \ |
af12906f AJ |
2017 | gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \ |
2018 | cpu_fpr[rC(ctx->opcode)]); \ | |
4ecc3190 | 2019 | if (isfloat) { \ |
af12906f | 2020 | gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \ |
4ecc3190 | 2021 | } \ |
af12906f AJ |
2022 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \ |
2023 | set_fprf, Rc(ctx->opcode) != 0); \ | |
9a64fbe4 | 2024 | } |
7c58044c JM |
2025 | #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \ |
2026 | _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \ | |
2027 | _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type); | |
9a64fbe4 | 2028 | |
7c58044c | 2029 | #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \ |
99e300ef | 2030 | static void gen_f##name(DisasContext *ctx) \ |
9a64fbe4 | 2031 | { \ |
76a66253 | 2032 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 2033 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
3cc62370 FB |
2034 | return; \ |
2035 | } \ | |
eb44b959 AJ |
2036 | /* NIP cannot be restored if the memory exception comes from an helper */ \ |
2037 | gen_update_nip(ctx, ctx->nip - 4); \ | |
7c58044c | 2038 | gen_reset_fpstatus(); \ |
af12906f AJ |
2039 | gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \ |
2040 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \ | |
2041 | set_fprf, Rc(ctx->opcode) != 0); \ | |
79aceca5 FB |
2042 | } |
2043 | ||
7c58044c | 2044 | #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \ |
99e300ef | 2045 | static void gen_f##name(DisasContext *ctx) \ |
9a64fbe4 | 2046 | { \ |
76a66253 | 2047 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 2048 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
3cc62370 FB |
2049 | return; \ |
2050 | } \ | |
eb44b959 AJ |
2051 | /* NIP cannot be restored if the memory exception comes from an helper */ \ |
2052 | gen_update_nip(ctx, ctx->nip - 4); \ | |
7c58044c | 2053 | gen_reset_fpstatus(); \ |
af12906f AJ |
2054 | gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \ |
2055 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \ | |
2056 | set_fprf, Rc(ctx->opcode) != 0); \ | |
79aceca5 FB |
2057 | } |
2058 | ||
9a64fbe4 | 2059 | /* fadd - fadds */ |
7c58044c | 2060 | GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT); |
4ecc3190 | 2061 | /* fdiv - fdivs */ |
7c58044c | 2062 | GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT); |
4ecc3190 | 2063 | /* fmul - fmuls */ |
7c58044c | 2064 | GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT); |
79aceca5 | 2065 | |
d7e4b87e | 2066 | /* fre */ |
7c58044c | 2067 | GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT); |
d7e4b87e | 2068 | |
a750fc0b | 2069 | /* fres */ |
7c58044c | 2070 | GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES); |
79aceca5 | 2071 | |
a750fc0b | 2072 | /* frsqrte */ |
7c58044c JM |
2073 | GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE); |
2074 | ||
2075 | /* frsqrtes */ | |
99e300ef | 2076 | static void gen_frsqrtes(DisasContext *ctx) |
7c58044c | 2077 | { |
af12906f | 2078 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2079 | gen_exception(ctx, POWERPC_EXCP_FPU); |
af12906f AJ |
2080 | return; |
2081 | } | |
eb44b959 AJ |
2082 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2083 | gen_update_nip(ctx, ctx->nip - 4); | |
af12906f AJ |
2084 | gen_reset_fpstatus(); |
2085 | gen_helper_frsqrte(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); | |
2086 | gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); | |
2087 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0); | |
7c58044c | 2088 | } |
79aceca5 | 2089 | |
a750fc0b | 2090 | /* fsel */ |
7c58044c | 2091 | _GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL); |
4ecc3190 | 2092 | /* fsub - fsubs */ |
7c58044c | 2093 | GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT); |
79aceca5 | 2094 | /* Optional: */ |
99e300ef | 2095 | |
54623277 | 2096 | /* fsqrt */ |
99e300ef | 2097 | static void gen_fsqrt(DisasContext *ctx) |
c7d344af | 2098 | { |
76a66253 | 2099 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2100 | gen_exception(ctx, POWERPC_EXCP_FPU); |
c7d344af FB |
2101 | return; |
2102 | } | |
eb44b959 AJ |
2103 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2104 | gen_update_nip(ctx, ctx->nip - 4); | |
7c58044c | 2105 | gen_reset_fpstatus(); |
af12906f AJ |
2106 | gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); |
2107 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0); | |
c7d344af | 2108 | } |
79aceca5 | 2109 | |
99e300ef | 2110 | static void gen_fsqrts(DisasContext *ctx) |
79aceca5 | 2111 | { |
76a66253 | 2112 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2113 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2114 | return; |
2115 | } | |
eb44b959 AJ |
2116 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2117 | gen_update_nip(ctx, ctx->nip - 4); | |
7c58044c | 2118 | gen_reset_fpstatus(); |
af12906f AJ |
2119 | gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); |
2120 | gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); | |
2121 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0); | |
79aceca5 FB |
2122 | } |
2123 | ||
2124 | /*** Floating-Point multiply-and-add ***/ | |
4ecc3190 | 2125 | /* fmadd - fmadds */ |
7c58044c | 2126 | GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT); |
4ecc3190 | 2127 | /* fmsub - fmsubs */ |
7c58044c | 2128 | GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT); |
4ecc3190 | 2129 | /* fnmadd - fnmadds */ |
7c58044c | 2130 | GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT); |
4ecc3190 | 2131 | /* fnmsub - fnmsubs */ |
7c58044c | 2132 | GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT); |
79aceca5 FB |
2133 | |
2134 | /*** Floating-Point round & convert ***/ | |
2135 | /* fctiw */ | |
7c58044c | 2136 | GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT); |
79aceca5 | 2137 | /* fctiwz */ |
7c58044c | 2138 | GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT); |
79aceca5 | 2139 | /* frsp */ |
7c58044c | 2140 | GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT); |
426613db JM |
2141 | #if defined(TARGET_PPC64) |
2142 | /* fcfid */ | |
7c58044c | 2143 | GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B); |
426613db | 2144 | /* fctid */ |
7c58044c | 2145 | GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B); |
426613db | 2146 | /* fctidz */ |
7c58044c | 2147 | GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B); |
426613db | 2148 | #endif |
79aceca5 | 2149 | |
d7e4b87e | 2150 | /* frin */ |
7c58044c | 2151 | GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT); |
d7e4b87e | 2152 | /* friz */ |
7c58044c | 2153 | GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT); |
d7e4b87e | 2154 | /* frip */ |
7c58044c | 2155 | GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT); |
d7e4b87e | 2156 | /* frim */ |
7c58044c | 2157 | GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT); |
d7e4b87e | 2158 | |
79aceca5 | 2159 | /*** Floating-Point compare ***/ |
99e300ef | 2160 | |
54623277 | 2161 | /* fcmpo */ |
99e300ef | 2162 | static void gen_fcmpo(DisasContext *ctx) |
79aceca5 | 2163 | { |
330c483b | 2164 | TCGv_i32 crf; |
76a66253 | 2165 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2166 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2167 | return; |
2168 | } | |
eb44b959 AJ |
2169 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2170 | gen_update_nip(ctx, ctx->nip - 4); | |
7c58044c | 2171 | gen_reset_fpstatus(); |
9a819377 AJ |
2172 | crf = tcg_const_i32(crfD(ctx->opcode)); |
2173 | gen_helper_fcmpo(cpu_fpr[rA(ctx->opcode)], cpu_fpr[rB(ctx->opcode)], crf); | |
330c483b | 2174 | tcg_temp_free_i32(crf); |
af12906f | 2175 | gen_helper_float_check_status(); |
79aceca5 FB |
2176 | } |
2177 | ||
2178 | /* fcmpu */ | |
99e300ef | 2179 | static void gen_fcmpu(DisasContext *ctx) |
79aceca5 | 2180 | { |
330c483b | 2181 | TCGv_i32 crf; |
76a66253 | 2182 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2183 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2184 | return; |
2185 | } | |
eb44b959 AJ |
2186 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2187 | gen_update_nip(ctx, ctx->nip - 4); | |
7c58044c | 2188 | gen_reset_fpstatus(); |
9a819377 AJ |
2189 | crf = tcg_const_i32(crfD(ctx->opcode)); |
2190 | gen_helper_fcmpu(cpu_fpr[rA(ctx->opcode)], cpu_fpr[rB(ctx->opcode)], crf); | |
330c483b | 2191 | tcg_temp_free_i32(crf); |
af12906f | 2192 | gen_helper_float_check_status(); |
79aceca5 FB |
2193 | } |
2194 | ||
9a64fbe4 FB |
2195 | /*** Floating-point move ***/ |
2196 | /* fabs */ | |
7c58044c JM |
2197 | /* XXX: beware that fabs never checks for NaNs nor update FPSCR */ |
2198 | GEN_FLOAT_B(abs, 0x08, 0x08, 0, PPC_FLOAT); | |
9a64fbe4 FB |
2199 | |
2200 | /* fmr - fmr. */ | |
7c58044c | 2201 | /* XXX: beware that fmr never checks for NaNs nor update FPSCR */ |
99e300ef | 2202 | static void gen_fmr(DisasContext *ctx) |
9a64fbe4 | 2203 | { |
76a66253 | 2204 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2205 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2206 | return; |
2207 | } | |
af12906f AJ |
2208 | tcg_gen_mov_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); |
2209 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0); | |
9a64fbe4 FB |
2210 | } |
2211 | ||
2212 | /* fnabs */ | |
7c58044c JM |
2213 | /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */ |
2214 | GEN_FLOAT_B(nabs, 0x08, 0x04, 0, PPC_FLOAT); | |
9a64fbe4 | 2215 | /* fneg */ |
7c58044c JM |
2216 | /* XXX: beware that fneg never checks for NaNs nor update FPSCR */ |
2217 | GEN_FLOAT_B(neg, 0x08, 0x01, 0, PPC_FLOAT); | |
9a64fbe4 | 2218 | |
79aceca5 | 2219 | /*** Floating-Point status & ctrl register ***/ |
99e300ef | 2220 | |
54623277 | 2221 | /* mcrfs */ |
99e300ef | 2222 | static void gen_mcrfs(DisasContext *ctx) |
79aceca5 | 2223 | { |
7c58044c JM |
2224 | int bfa; |
2225 | ||
76a66253 | 2226 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2227 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2228 | return; |
2229 | } | |
7c58044c | 2230 | bfa = 4 * (7 - crfS(ctx->opcode)); |
e1571908 AJ |
2231 | tcg_gen_shri_i32(cpu_crf[crfD(ctx->opcode)], cpu_fpscr, bfa); |
2232 | tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], 0xf); | |
af12906f | 2233 | tcg_gen_andi_i32(cpu_fpscr, cpu_fpscr, ~(0xF << bfa)); |
79aceca5 FB |
2234 | } |
2235 | ||
2236 | /* mffs */ | |
99e300ef | 2237 | static void gen_mffs(DisasContext *ctx) |
79aceca5 | 2238 | { |
76a66253 | 2239 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2240 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2241 | return; |
2242 | } | |
7c58044c | 2243 | gen_reset_fpstatus(); |
af12906f AJ |
2244 | tcg_gen_extu_i32_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpscr); |
2245 | gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0); | |
79aceca5 FB |
2246 | } |
2247 | ||
2248 | /* mtfsb0 */ | |
99e300ef | 2249 | static void gen_mtfsb0(DisasContext *ctx) |
79aceca5 | 2250 | { |
fb0eaffc | 2251 | uint8_t crb; |
3b46e624 | 2252 | |
76a66253 | 2253 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2254 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2255 | return; |
2256 | } | |
6e35d524 | 2257 | crb = 31 - crbD(ctx->opcode); |
7c58044c | 2258 | gen_reset_fpstatus(); |
6e35d524 | 2259 | if (likely(crb != FPSCR_FEX && crb != FPSCR_VX)) { |
eb44b959 AJ |
2260 | TCGv_i32 t0; |
2261 | /* NIP cannot be restored if the memory exception comes from an helper */ | |
2262 | gen_update_nip(ctx, ctx->nip - 4); | |
2263 | t0 = tcg_const_i32(crb); | |
6e35d524 AJ |
2264 | gen_helper_fpscr_clrbit(t0); |
2265 | tcg_temp_free_i32(t0); | |
2266 | } | |
7c58044c | 2267 | if (unlikely(Rc(ctx->opcode) != 0)) { |
e1571908 | 2268 | tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX); |
7c58044c | 2269 | } |
79aceca5 FB |
2270 | } |
2271 | ||
2272 | /* mtfsb1 */ | |
99e300ef | 2273 | static void gen_mtfsb1(DisasContext *ctx) |
79aceca5 | 2274 | { |
fb0eaffc | 2275 | uint8_t crb; |
3b46e624 | 2276 | |
76a66253 | 2277 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2278 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2279 | return; |
2280 | } | |
6e35d524 | 2281 | crb = 31 - crbD(ctx->opcode); |
7c58044c JM |
2282 | gen_reset_fpstatus(); |
2283 | /* XXX: we pretend we can only do IEEE floating-point computations */ | |
af12906f | 2284 | if (likely(crb != FPSCR_FEX && crb != FPSCR_VX && crb != FPSCR_NI)) { |
eb44b959 AJ |
2285 | TCGv_i32 t0; |
2286 | /* NIP cannot be restored if the memory exception comes from an helper */ | |
2287 | gen_update_nip(ctx, ctx->nip - 4); | |
2288 | t0 = tcg_const_i32(crb); | |
af12906f | 2289 | gen_helper_fpscr_setbit(t0); |
0f2f39c2 | 2290 | tcg_temp_free_i32(t0); |
af12906f | 2291 | } |
7c58044c | 2292 | if (unlikely(Rc(ctx->opcode) != 0)) { |
e1571908 | 2293 | tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX); |
7c58044c JM |
2294 | } |
2295 | /* We can raise a differed exception */ | |
af12906f | 2296 | gen_helper_float_check_status(); |
79aceca5 FB |
2297 | } |
2298 | ||
2299 | /* mtfsf */ | |
99e300ef | 2300 | static void gen_mtfsf(DisasContext *ctx) |
79aceca5 | 2301 | { |
0f2f39c2 | 2302 | TCGv_i32 t0; |
4911012d | 2303 | int L = ctx->opcode & 0x02000000; |
af12906f | 2304 | |
76a66253 | 2305 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2306 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2307 | return; |
2308 | } | |
eb44b959 AJ |
2309 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2310 | gen_update_nip(ctx, ctx->nip - 4); | |
7c58044c | 2311 | gen_reset_fpstatus(); |
4911012d BS |
2312 | if (L) |
2313 | t0 = tcg_const_i32(0xff); | |
2314 | else | |
2315 | t0 = tcg_const_i32(FM(ctx->opcode)); | |
af12906f | 2316 | gen_helper_store_fpscr(cpu_fpr[rB(ctx->opcode)], t0); |
0f2f39c2 | 2317 | tcg_temp_free_i32(t0); |
7c58044c | 2318 | if (unlikely(Rc(ctx->opcode) != 0)) { |
e1571908 | 2319 | tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX); |
7c58044c JM |
2320 | } |
2321 | /* We can raise a differed exception */ | |
af12906f | 2322 | gen_helper_float_check_status(); |
79aceca5 FB |
2323 | } |
2324 | ||
2325 | /* mtfsfi */ | |
99e300ef | 2326 | static void gen_mtfsfi(DisasContext *ctx) |
79aceca5 | 2327 | { |
7c58044c | 2328 | int bf, sh; |
0f2f39c2 AJ |
2329 | TCGv_i64 t0; |
2330 | TCGv_i32 t1; | |
7c58044c | 2331 | |
76a66253 | 2332 | if (unlikely(!ctx->fpu_enabled)) { |
e06fcd75 | 2333 | gen_exception(ctx, POWERPC_EXCP_FPU); |
3cc62370 FB |
2334 | return; |
2335 | } | |
7c58044c JM |
2336 | bf = crbD(ctx->opcode) >> 2; |
2337 | sh = 7 - bf; | |
eb44b959 AJ |
2338 | /* NIP cannot be restored if the memory exception comes from an helper */ |
2339 | gen_update_nip(ctx, ctx->nip - 4); | |
7c58044c | 2340 | gen_reset_fpstatus(); |
0f2f39c2 | 2341 | t0 = tcg_const_i64(FPIMM(ctx->opcode) << (4 * sh)); |
af12906f AJ |
2342 | t1 = tcg_const_i32(1 << sh); |
2343 | gen_helper_store_fpscr(t0, t1); | |
0f2f39c2 AJ |
2344 | tcg_temp_free_i64(t0); |
2345 | tcg_temp_free_i32(t1); | |
7c58044c | 2346 | if (unlikely(Rc(ctx->opcode) != 0)) { |
e1571908 | 2347 | tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX); |
7c58044c JM |
2348 | } |
2349 | /* We can raise a differed exception */ | |
af12906f | 2350 | gen_helper_float_check_status(); |
79aceca5 FB |
2351 | } |
2352 | ||
76a66253 JM |
2353 | /*** Addressing modes ***/ |
2354 | /* Register indirect with immediate index : EA = (rA|0) + SIMM */ | |
636aa200 BS |
2355 | static inline void gen_addr_imm_index(DisasContext *ctx, TCGv EA, |
2356 | target_long maskl) | |
76a66253 JM |
2357 | { |
2358 | target_long simm = SIMM(ctx->opcode); | |
2359 | ||
be147d08 | 2360 | simm &= ~maskl; |
76db3ba4 AJ |
2361 | if (rA(ctx->opcode) == 0) { |
2362 | #if defined(TARGET_PPC64) | |
2363 | if (!ctx->sf_mode) { | |
2364 | tcg_gen_movi_tl(EA, (uint32_t)simm); | |
2365 | } else | |
2366 | #endif | |
e2be8d8d | 2367 | tcg_gen_movi_tl(EA, simm); |
76db3ba4 | 2368 | } else if (likely(simm != 0)) { |
e2be8d8d | 2369 | tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], simm); |
76db3ba4 AJ |
2370 | #if defined(TARGET_PPC64) |
2371 | if (!ctx->sf_mode) { | |
2372 | tcg_gen_ext32u_tl(EA, EA); | |
2373 | } | |
2374 | #endif | |
2375 | } else { | |
2376 | #if defined(TARGET_PPC64) | |
2377 | if (!ctx->sf_mode) { | |
2378 | tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]); | |
2379 | } else | |
2380 | #endif | |
e2be8d8d | 2381 | tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]); |
76db3ba4 | 2382 | } |
76a66253 JM |
2383 | } |
2384 | ||
636aa200 | 2385 | static inline void gen_addr_reg_index(DisasContext *ctx, TCGv EA) |
76a66253 | 2386 | { |
76db3ba4 AJ |
2387 | if (rA(ctx->opcode) == 0) { |
2388 | #if defined(TARGET_PPC64) | |
2389 | if (!ctx->sf_mode) { | |
2390 | tcg_gen_ext32u_tl(EA, cpu_gpr[rB(ctx->opcode)]); | |
2391 | } else | |
2392 | #endif | |
e2be8d8d | 2393 | tcg_gen_mov_tl(EA, cpu_gpr[rB(ctx->opcode)]); |
76db3ba4 | 2394 | } else { |
e2be8d8d | 2395 | tcg_gen_add_tl(EA, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
76db3ba4 AJ |
2396 | #if defined(TARGET_PPC64) |
2397 | if (!ctx->sf_mode) { | |
2398 | tcg_gen_ext32u_tl(EA, EA); | |
2399 | } | |
2400 | #endif | |
2401 | } | |
76a66253 JM |
2402 | } |
2403 | ||
636aa200 | 2404 | static inline void gen_addr_register(DisasContext *ctx, TCGv EA) |
76a66253 | 2405 | { |
76db3ba4 | 2406 | if (rA(ctx->opcode) == 0) { |
e2be8d8d | 2407 | tcg_gen_movi_tl(EA, 0); |
76db3ba4 AJ |
2408 | } else { |
2409 | #if defined(TARGET_PPC64) | |
2410 | if (!ctx->sf_mode) { | |
2411 | tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]); | |
2412 | } else | |
2413 | #endif | |
2414 | tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]); | |
2415 | } | |
2416 | } | |
2417 | ||
636aa200 BS |
2418 | static inline void gen_addr_add(DisasContext *ctx, TCGv ret, TCGv arg1, |
2419 | target_long val) | |
76db3ba4 AJ |
2420 | { |
2421 | tcg_gen_addi_tl(ret, arg1, val); | |
2422 | #if defined(TARGET_PPC64) | |
2423 | if (!ctx->sf_mode) { | |
2424 | tcg_gen_ext32u_tl(ret, ret); | |
2425 | } | |
2426 | #endif | |
76a66253 JM |
2427 | } |
2428 | ||
636aa200 | 2429 | static inline void gen_check_align(DisasContext *ctx, TCGv EA, int mask) |
cf360a32 AJ |
2430 | { |
2431 | int l1 = gen_new_label(); | |
2432 | TCGv t0 = tcg_temp_new(); | |
2433 | TCGv_i32 t1, t2; | |
2434 | /* NIP cannot be restored if the memory exception comes from an helper */ | |
2435 | gen_update_nip(ctx, ctx->nip - 4); | |
2436 | tcg_gen_andi_tl(t0, EA, mask); | |
2437 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); | |
2438 | t1 = tcg_const_i32(POWERPC_EXCP_ALIGN); | |
2439 | t2 = tcg_const_i32(0); | |
2440 | gen_helper_raise_exception_err(t1, t2); | |
2441 | tcg_temp_free_i32(t1); | |
2442 | tcg_temp_free_i32(t2); | |
2443 | gen_set_label(l1); | |
2444 | tcg_temp_free(t0); | |
2445 | } | |
2446 | ||
7863667f | 2447 | /*** Integer load ***/ |
636aa200 | 2448 | static inline void gen_qemu_ld8u(DisasContext *ctx, TCGv arg1, TCGv arg2) |
76db3ba4 AJ |
2449 | { |
2450 | tcg_gen_qemu_ld8u(arg1, arg2, ctx->mem_idx); | |
2451 | } | |
2452 | ||
636aa200 | 2453 | static inline void gen_qemu_ld8s(DisasContext *ctx, TCGv arg1, TCGv arg2) |
76db3ba4 AJ |
2454 | { |
2455 | tcg_gen_qemu_ld8s(arg1, arg2, ctx->mem_idx); | |
2456 | } | |
2457 | ||
636aa200 | 2458 | static inline void gen_qemu_ld16u(DisasContext *ctx, TCGv arg1, TCGv arg2) |
76db3ba4 AJ |
2459 | { |
2460 | tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx); | |
2461 | if (unlikely(ctx->le_mode)) { | |
fa3966a3 | 2462 | tcg_gen_bswap16_tl(arg1, arg1); |
76db3ba4 | 2463 | } |
b61f2753 AJ |
2464 | } |
2465 | ||
636aa200 | 2466 | static inline void gen_qemu_ld16s(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2467 | { |
76db3ba4 | 2468 | if (unlikely(ctx->le_mode)) { |
76db3ba4 | 2469 | tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx); |
fa3966a3 | 2470 | tcg_gen_bswap16_tl(arg1, arg1); |
76db3ba4 | 2471 | tcg_gen_ext16s_tl(arg1, arg1); |
76db3ba4 AJ |
2472 | } else { |
2473 | tcg_gen_qemu_ld16s(arg1, arg2, ctx->mem_idx); | |
2474 | } | |
b61f2753 AJ |
2475 | } |
2476 | ||
636aa200 | 2477 | static inline void gen_qemu_ld32u(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2478 | { |
76db3ba4 AJ |
2479 | tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx); |
2480 | if (unlikely(ctx->le_mode)) { | |
fa3966a3 | 2481 | tcg_gen_bswap32_tl(arg1, arg1); |
76db3ba4 | 2482 | } |
b61f2753 AJ |
2483 | } |
2484 | ||
76db3ba4 | 2485 | #if defined(TARGET_PPC64) |
636aa200 | 2486 | static inline void gen_qemu_ld32s(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2487 | { |
a457e7ee | 2488 | if (unlikely(ctx->le_mode)) { |
76db3ba4 | 2489 | tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx); |
fa3966a3 AJ |
2490 | tcg_gen_bswap32_tl(arg1, arg1); |
2491 | tcg_gen_ext32s_tl(arg1, arg1); | |
b61f2753 | 2492 | } else |
76db3ba4 | 2493 | tcg_gen_qemu_ld32s(arg1, arg2, ctx->mem_idx); |
b61f2753 | 2494 | } |
76db3ba4 | 2495 | #endif |
b61f2753 | 2496 | |
636aa200 | 2497 | static inline void gen_qemu_ld64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2) |
b61f2753 | 2498 | { |
76db3ba4 AJ |
2499 | tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx); |
2500 | if (unlikely(ctx->le_mode)) { | |
66896cb8 | 2501 | tcg_gen_bswap64_i64(arg1, arg1); |
76db3ba4 | 2502 | } |
b61f2753 AJ |
2503 | } |
2504 | ||
636aa200 | 2505 | static inline void gen_qemu_st8(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2506 | { |
76db3ba4 | 2507 | tcg_gen_qemu_st8(arg1, arg2, ctx->mem_idx); |
b61f2753 AJ |
2508 | } |
2509 | ||
636aa200 | 2510 | static inline void gen_qemu_st16(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2511 | { |
76db3ba4 | 2512 | if (unlikely(ctx->le_mode)) { |
76db3ba4 AJ |
2513 | TCGv t0 = tcg_temp_new(); |
2514 | tcg_gen_ext16u_tl(t0, arg1); | |
fa3966a3 | 2515 | tcg_gen_bswap16_tl(t0, t0); |
76db3ba4 AJ |
2516 | tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx); |
2517 | tcg_temp_free(t0); | |
76db3ba4 AJ |
2518 | } else { |
2519 | tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx); | |
2520 | } | |
b61f2753 AJ |
2521 | } |
2522 | ||
636aa200 | 2523 | static inline void gen_qemu_st32(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2524 | { |
76db3ba4 | 2525 | if (unlikely(ctx->le_mode)) { |
fa3966a3 AJ |
2526 | TCGv t0 = tcg_temp_new(); |
2527 | tcg_gen_ext32u_tl(t0, arg1); | |
2528 | tcg_gen_bswap32_tl(t0, t0); | |
76db3ba4 AJ |
2529 | tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx); |
2530 | tcg_temp_free(t0); | |
76db3ba4 AJ |
2531 | } else { |
2532 | tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx); | |
2533 | } | |
b61f2753 AJ |
2534 | } |
2535 | ||
636aa200 | 2536 | static inline void gen_qemu_st64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2) |
b61f2753 | 2537 | { |
76db3ba4 | 2538 | if (unlikely(ctx->le_mode)) { |
a7812ae4 | 2539 | TCGv_i64 t0 = tcg_temp_new_i64(); |
66896cb8 | 2540 | tcg_gen_bswap64_i64(t0, arg1); |
76db3ba4 | 2541 | tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx); |
a7812ae4 | 2542 | tcg_temp_free_i64(t0); |
b61f2753 | 2543 | } else |
76db3ba4 | 2544 | tcg_gen_qemu_st64(arg1, arg2, ctx->mem_idx); |
b61f2753 AJ |
2545 | } |
2546 | ||
0c8aacd4 | 2547 | #define GEN_LD(name, ldop, opc, type) \ |
99e300ef | 2548 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 2549 | { \ |
76db3ba4 AJ |
2550 | TCGv EA; \ |
2551 | gen_set_access_type(ctx, ACCESS_INT); \ | |
2552 | EA = tcg_temp_new(); \ | |
2553 | gen_addr_imm_index(ctx, EA, 0); \ | |
2554 | gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \ | |
b61f2753 | 2555 | tcg_temp_free(EA); \ |
79aceca5 FB |
2556 | } |
2557 | ||
0c8aacd4 | 2558 | #define GEN_LDU(name, ldop, opc, type) \ |
99e300ef | 2559 | static void glue(gen_, name##u)(DisasContext *ctx) \ |
79aceca5 | 2560 | { \ |
b61f2753 | 2561 | TCGv EA; \ |
76a66253 JM |
2562 | if (unlikely(rA(ctx->opcode) == 0 || \ |
2563 | rA(ctx->opcode) == rD(ctx->opcode))) { \ | |
e06fcd75 | 2564 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 2565 | return; \ |
9a64fbe4 | 2566 | } \ |
76db3ba4 | 2567 | gen_set_access_type(ctx, ACCESS_INT); \ |
0c8aacd4 | 2568 | EA = tcg_temp_new(); \ |
9d53c753 | 2569 | if (type == PPC_64B) \ |
76db3ba4 | 2570 | gen_addr_imm_index(ctx, EA, 0x03); \ |
9d53c753 | 2571 | else \ |
76db3ba4 AJ |
2572 | gen_addr_imm_index(ctx, EA, 0); \ |
2573 | gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \ | |
b61f2753 AJ |
2574 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
2575 | tcg_temp_free(EA); \ | |
79aceca5 FB |
2576 | } |
2577 | ||
0c8aacd4 | 2578 | #define GEN_LDUX(name, ldop, opc2, opc3, type) \ |
99e300ef | 2579 | static void glue(gen_, name##ux)(DisasContext *ctx) \ |
79aceca5 | 2580 | { \ |
b61f2753 | 2581 | TCGv EA; \ |
76a66253 JM |
2582 | if (unlikely(rA(ctx->opcode) == 0 || \ |
2583 | rA(ctx->opcode) == rD(ctx->opcode))) { \ | |
e06fcd75 | 2584 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 2585 | return; \ |
9a64fbe4 | 2586 | } \ |
76db3ba4 | 2587 | gen_set_access_type(ctx, ACCESS_INT); \ |
0c8aacd4 | 2588 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
2589 | gen_addr_reg_index(ctx, EA); \ |
2590 | gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \ | |
b61f2753 AJ |
2591 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
2592 | tcg_temp_free(EA); \ | |
79aceca5 FB |
2593 | } |
2594 | ||
0c8aacd4 | 2595 | #define GEN_LDX(name, ldop, opc2, opc3, type) \ |
99e300ef | 2596 | static void glue(gen_, name##x)(DisasContext *ctx) \ |
79aceca5 | 2597 | { \ |
76db3ba4 AJ |
2598 | TCGv EA; \ |
2599 | gen_set_access_type(ctx, ACCESS_INT); \ | |
2600 | EA = tcg_temp_new(); \ | |
2601 | gen_addr_reg_index(ctx, EA); \ | |
2602 | gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \ | |
b61f2753 | 2603 | tcg_temp_free(EA); \ |
79aceca5 FB |
2604 | } |
2605 | ||
0c8aacd4 AJ |
2606 | #define GEN_LDS(name, ldop, op, type) \ |
2607 | GEN_LD(name, ldop, op | 0x20, type); \ | |
2608 | GEN_LDU(name, ldop, op | 0x21, type); \ | |
2609 | GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \ | |
2610 | GEN_LDX(name, ldop, 0x17, op | 0x00, type) | |
79aceca5 FB |
2611 | |
2612 | /* lbz lbzu lbzux lbzx */ | |
0c8aacd4 | 2613 | GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER); |
79aceca5 | 2614 | /* lha lhau lhaux lhax */ |
0c8aacd4 | 2615 | GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER); |
79aceca5 | 2616 | /* lhz lhzu lhzux lhzx */ |
0c8aacd4 | 2617 | GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER); |
79aceca5 | 2618 | /* lwz lwzu lwzux lwzx */ |
0c8aacd4 | 2619 | GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER); |
d9bce9d9 | 2620 | #if defined(TARGET_PPC64) |
d9bce9d9 | 2621 | /* lwaux */ |
0c8aacd4 | 2622 | GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B); |
d9bce9d9 | 2623 | /* lwax */ |
0c8aacd4 | 2624 | GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B); |
d9bce9d9 | 2625 | /* ldux */ |
0c8aacd4 | 2626 | GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B); |
d9bce9d9 | 2627 | /* ldx */ |
0c8aacd4 | 2628 | GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B); |
99e300ef BS |
2629 | |
2630 | static void gen_ld(DisasContext *ctx) | |
d9bce9d9 | 2631 | { |
b61f2753 | 2632 | TCGv EA; |
d9bce9d9 JM |
2633 | if (Rc(ctx->opcode)) { |
2634 | if (unlikely(rA(ctx->opcode) == 0 || | |
2635 | rA(ctx->opcode) == rD(ctx->opcode))) { | |
e06fcd75 | 2636 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
d9bce9d9 JM |
2637 | return; |
2638 | } | |
2639 | } | |
76db3ba4 | 2640 | gen_set_access_type(ctx, ACCESS_INT); |
a7812ae4 | 2641 | EA = tcg_temp_new(); |
76db3ba4 | 2642 | gen_addr_imm_index(ctx, EA, 0x03); |
d9bce9d9 JM |
2643 | if (ctx->opcode & 0x02) { |
2644 | /* lwa (lwau is undefined) */ | |
76db3ba4 | 2645 | gen_qemu_ld32s(ctx, cpu_gpr[rD(ctx->opcode)], EA); |
d9bce9d9 JM |
2646 | } else { |
2647 | /* ld - ldu */ | |
76db3ba4 | 2648 | gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], EA); |
d9bce9d9 | 2649 | } |
d9bce9d9 | 2650 | if (Rc(ctx->opcode)) |
b61f2753 AJ |
2651 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); |
2652 | tcg_temp_free(EA); | |
d9bce9d9 | 2653 | } |
99e300ef | 2654 | |
54623277 | 2655 | /* lq */ |
99e300ef | 2656 | static void gen_lq(DisasContext *ctx) |
be147d08 JM |
2657 | { |
2658 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 2659 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
be147d08 JM |
2660 | #else |
2661 | int ra, rd; | |
b61f2753 | 2662 | TCGv EA; |
be147d08 JM |
2663 | |
2664 | /* Restore CPU state */ | |
76db3ba4 | 2665 | if (unlikely(ctx->mem_idx == 0)) { |
e06fcd75 | 2666 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
be147d08 JM |
2667 | return; |
2668 | } | |
2669 | ra = rA(ctx->opcode); | |
2670 | rd = rD(ctx->opcode); | |
2671 | if (unlikely((rd & 1) || rd == ra)) { | |
e06fcd75 | 2672 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
be147d08 JM |
2673 | return; |
2674 | } | |
76db3ba4 | 2675 | if (unlikely(ctx->le_mode)) { |
be147d08 | 2676 | /* Little-endian mode is not handled */ |
e06fcd75 | 2677 | gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE); |
be147d08 JM |
2678 | return; |
2679 | } | |
76db3ba4 | 2680 | gen_set_access_type(ctx, ACCESS_INT); |
a7812ae4 | 2681 | EA = tcg_temp_new(); |
76db3ba4 AJ |
2682 | gen_addr_imm_index(ctx, EA, 0x0F); |
2683 | gen_qemu_ld64(ctx, cpu_gpr[rd], EA); | |
2684 | gen_addr_add(ctx, EA, EA, 8); | |
2685 | gen_qemu_ld64(ctx, cpu_gpr[rd+1], EA); | |
b61f2753 | 2686 | tcg_temp_free(EA); |
be147d08 JM |
2687 | #endif |
2688 | } | |
d9bce9d9 | 2689 | #endif |
79aceca5 FB |
2690 | |
2691 | /*** Integer store ***/ | |
0c8aacd4 | 2692 | #define GEN_ST(name, stop, opc, type) \ |
99e300ef | 2693 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 2694 | { \ |
76db3ba4 AJ |
2695 | TCGv EA; \ |
2696 | gen_set_access_type(ctx, ACCESS_INT); \ | |
2697 | EA = tcg_temp_new(); \ | |
2698 | gen_addr_imm_index(ctx, EA, 0); \ | |
2699 | gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \ | |
b61f2753 | 2700 | tcg_temp_free(EA); \ |
79aceca5 FB |
2701 | } |
2702 | ||
0c8aacd4 | 2703 | #define GEN_STU(name, stop, opc, type) \ |
99e300ef | 2704 | static void glue(gen_, stop##u)(DisasContext *ctx) \ |
79aceca5 | 2705 | { \ |
b61f2753 | 2706 | TCGv EA; \ |
76a66253 | 2707 | if (unlikely(rA(ctx->opcode) == 0)) { \ |
e06fcd75 | 2708 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 2709 | return; \ |
9a64fbe4 | 2710 | } \ |
76db3ba4 | 2711 | gen_set_access_type(ctx, ACCESS_INT); \ |
0c8aacd4 | 2712 | EA = tcg_temp_new(); \ |
9d53c753 | 2713 | if (type == PPC_64B) \ |
76db3ba4 | 2714 | gen_addr_imm_index(ctx, EA, 0x03); \ |
9d53c753 | 2715 | else \ |
76db3ba4 AJ |
2716 | gen_addr_imm_index(ctx, EA, 0); \ |
2717 | gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \ | |
b61f2753 AJ |
2718 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
2719 | tcg_temp_free(EA); \ | |
79aceca5 FB |
2720 | } |
2721 | ||
0c8aacd4 | 2722 | #define GEN_STUX(name, stop, opc2, opc3, type) \ |
99e300ef | 2723 | static void glue(gen_, name##ux)(DisasContext *ctx) \ |
79aceca5 | 2724 | { \ |
b61f2753 | 2725 | TCGv EA; \ |
76a66253 | 2726 | if (unlikely(rA(ctx->opcode) == 0)) { \ |
e06fcd75 | 2727 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 2728 | return; \ |
9a64fbe4 | 2729 | } \ |
76db3ba4 | 2730 | gen_set_access_type(ctx, ACCESS_INT); \ |
0c8aacd4 | 2731 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
2732 | gen_addr_reg_index(ctx, EA); \ |
2733 | gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \ | |
b61f2753 AJ |
2734 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
2735 | tcg_temp_free(EA); \ | |
79aceca5 FB |
2736 | } |
2737 | ||
0c8aacd4 | 2738 | #define GEN_STX(name, stop, opc2, opc3, type) \ |
99e300ef | 2739 | static void glue(gen_, name##x)(DisasContext *ctx) \ |
79aceca5 | 2740 | { \ |
76db3ba4 AJ |
2741 | TCGv EA; \ |
2742 | gen_set_access_type(ctx, ACCESS_INT); \ | |
2743 | EA = tcg_temp_new(); \ | |
2744 | gen_addr_reg_index(ctx, EA); \ | |
2745 | gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \ | |
b61f2753 | 2746 | tcg_temp_free(EA); \ |
79aceca5 FB |
2747 | } |
2748 | ||
0c8aacd4 AJ |
2749 | #define GEN_STS(name, stop, op, type) \ |
2750 | GEN_ST(name, stop, op | 0x20, type); \ | |
2751 | GEN_STU(name, stop, op | 0x21, type); \ | |
2752 | GEN_STUX(name, stop, 0x17, op | 0x01, type); \ | |
2753 | GEN_STX(name, stop, 0x17, op | 0x00, type) | |
79aceca5 FB |
2754 | |
2755 | /* stb stbu stbux stbx */ | |
0c8aacd4 | 2756 | GEN_STS(stb, st8, 0x06, PPC_INTEGER); |
79aceca5 | 2757 | /* sth sthu sthux sthx */ |
0c8aacd4 | 2758 | GEN_STS(sth, st16, 0x0C, PPC_INTEGER); |
79aceca5 | 2759 | /* stw stwu stwux stwx */ |
0c8aacd4 | 2760 | GEN_STS(stw, st32, 0x04, PPC_INTEGER); |
d9bce9d9 | 2761 | #if defined(TARGET_PPC64) |
0c8aacd4 AJ |
2762 | GEN_STUX(std, st64, 0x15, 0x05, PPC_64B); |
2763 | GEN_STX(std, st64, 0x15, 0x04, PPC_64B); | |
99e300ef BS |
2764 | |
2765 | static void gen_std(DisasContext *ctx) | |
d9bce9d9 | 2766 | { |
be147d08 | 2767 | int rs; |
b61f2753 | 2768 | TCGv EA; |
be147d08 JM |
2769 | |
2770 | rs = rS(ctx->opcode); | |
2771 | if ((ctx->opcode & 0x3) == 0x2) { | |
2772 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 2773 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
be147d08 JM |
2774 | #else |
2775 | /* stq */ | |
76db3ba4 | 2776 | if (unlikely(ctx->mem_idx == 0)) { |
e06fcd75 | 2777 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
be147d08 JM |
2778 | return; |
2779 | } | |
2780 | if (unlikely(rs & 1)) { | |
e06fcd75 | 2781 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
d9bce9d9 JM |
2782 | return; |
2783 | } | |
76db3ba4 | 2784 | if (unlikely(ctx->le_mode)) { |
be147d08 | 2785 | /* Little-endian mode is not handled */ |
e06fcd75 | 2786 | gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE); |
be147d08 JM |
2787 | return; |
2788 | } | |
76db3ba4 | 2789 | gen_set_access_type(ctx, ACCESS_INT); |
a7812ae4 | 2790 | EA = tcg_temp_new(); |
76db3ba4 AJ |
2791 | gen_addr_imm_index(ctx, EA, 0x03); |
2792 | gen_qemu_st64(ctx, cpu_gpr[rs], EA); | |
2793 | gen_addr_add(ctx, EA, EA, 8); | |
2794 | gen_qemu_st64(ctx, cpu_gpr[rs+1], EA); | |
b61f2753 | 2795 | tcg_temp_free(EA); |
be147d08 JM |
2796 | #endif |
2797 | } else { | |
2798 | /* std / stdu */ | |
2799 | if (Rc(ctx->opcode)) { | |
2800 | if (unlikely(rA(ctx->opcode) == 0)) { | |
e06fcd75 | 2801 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
be147d08 JM |
2802 | return; |
2803 | } | |
2804 | } | |
76db3ba4 | 2805 | gen_set_access_type(ctx, ACCESS_INT); |
a7812ae4 | 2806 | EA = tcg_temp_new(); |
76db3ba4 AJ |
2807 | gen_addr_imm_index(ctx, EA, 0x03); |
2808 | gen_qemu_st64(ctx, cpu_gpr[rs], EA); | |
be147d08 | 2809 | if (Rc(ctx->opcode)) |
b61f2753 AJ |
2810 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); |
2811 | tcg_temp_free(EA); | |
d9bce9d9 | 2812 | } |
d9bce9d9 JM |
2813 | } |
2814 | #endif | |
79aceca5 FB |
2815 | /*** Integer load and store with byte reverse ***/ |
2816 | /* lhbrx */ | |
636aa200 | 2817 | static void inline gen_qemu_ld16ur(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2818 | { |
76db3ba4 AJ |
2819 | tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx); |
2820 | if (likely(!ctx->le_mode)) { | |
fa3966a3 | 2821 | tcg_gen_bswap16_tl(arg1, arg1); |
76db3ba4 | 2822 | } |
b61f2753 | 2823 | } |
0c8aacd4 | 2824 | GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER); |
b61f2753 | 2825 | |
79aceca5 | 2826 | /* lwbrx */ |
636aa200 | 2827 | static void inline gen_qemu_ld32ur(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2828 | { |
76db3ba4 AJ |
2829 | tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx); |
2830 | if (likely(!ctx->le_mode)) { | |
fa3966a3 | 2831 | tcg_gen_bswap32_tl(arg1, arg1); |
76db3ba4 | 2832 | } |
b61f2753 | 2833 | } |
0c8aacd4 | 2834 | GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER); |
b61f2753 | 2835 | |
79aceca5 | 2836 | /* sthbrx */ |
636aa200 | 2837 | static void inline gen_qemu_st16r(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2838 | { |
76db3ba4 | 2839 | if (likely(!ctx->le_mode)) { |
76db3ba4 AJ |
2840 | TCGv t0 = tcg_temp_new(); |
2841 | tcg_gen_ext16u_tl(t0, arg1); | |
fa3966a3 | 2842 | tcg_gen_bswap16_tl(t0, t0); |
76db3ba4 AJ |
2843 | tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx); |
2844 | tcg_temp_free(t0); | |
76db3ba4 AJ |
2845 | } else { |
2846 | tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx); | |
2847 | } | |
b61f2753 | 2848 | } |
0c8aacd4 | 2849 | GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER); |
b61f2753 | 2850 | |
79aceca5 | 2851 | /* stwbrx */ |
636aa200 | 2852 | static void inline gen_qemu_st32r(DisasContext *ctx, TCGv arg1, TCGv arg2) |
b61f2753 | 2853 | { |
76db3ba4 | 2854 | if (likely(!ctx->le_mode)) { |
fa3966a3 AJ |
2855 | TCGv t0 = tcg_temp_new(); |
2856 | tcg_gen_ext32u_tl(t0, arg1); | |
2857 | tcg_gen_bswap32_tl(t0, t0); | |
76db3ba4 AJ |
2858 | tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx); |
2859 | tcg_temp_free(t0); | |
76db3ba4 AJ |
2860 | } else { |
2861 | tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx); | |
2862 | } | |
b61f2753 | 2863 | } |
0c8aacd4 | 2864 | GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER); |
79aceca5 FB |
2865 | |
2866 | /*** Integer load and store multiple ***/ | |
99e300ef | 2867 | |
54623277 | 2868 | /* lmw */ |
99e300ef | 2869 | static void gen_lmw(DisasContext *ctx) |
79aceca5 | 2870 | { |
76db3ba4 AJ |
2871 | TCGv t0; |
2872 | TCGv_i32 t1; | |
2873 | gen_set_access_type(ctx, ACCESS_INT); | |
76a66253 | 2874 | /* NIP cannot be restored if the memory exception comes from an helper */ |
d9bce9d9 | 2875 | gen_update_nip(ctx, ctx->nip - 4); |
76db3ba4 AJ |
2876 | t0 = tcg_temp_new(); |
2877 | t1 = tcg_const_i32(rD(ctx->opcode)); | |
2878 | gen_addr_imm_index(ctx, t0, 0); | |
ff4a62cd AJ |
2879 | gen_helper_lmw(t0, t1); |
2880 | tcg_temp_free(t0); | |
2881 | tcg_temp_free_i32(t1); | |
79aceca5 FB |
2882 | } |
2883 | ||
2884 | /* stmw */ | |
99e300ef | 2885 | static void gen_stmw(DisasContext *ctx) |
79aceca5 | 2886 | { |
76db3ba4 AJ |
2887 | TCGv t0; |
2888 | TCGv_i32 t1; | |
2889 | gen_set_access_type(ctx, ACCESS_INT); | |
76a66253 | 2890 | /* NIP cannot be restored if the memory exception comes from an helper */ |
d9bce9d9 | 2891 | gen_update_nip(ctx, ctx->nip - 4); |
76db3ba4 AJ |
2892 | t0 = tcg_temp_new(); |
2893 | t1 = tcg_const_i32(rS(ctx->opcode)); | |
2894 | gen_addr_imm_index(ctx, t0, 0); | |
ff4a62cd AJ |
2895 | gen_helper_stmw(t0, t1); |
2896 | tcg_temp_free(t0); | |
2897 | tcg_temp_free_i32(t1); | |
79aceca5 FB |
2898 | } |
2899 | ||
2900 | /*** Integer load and store strings ***/ | |
54623277 | 2901 | |
79aceca5 | 2902 | /* lswi */ |
3fc6c082 | 2903 | /* PowerPC32 specification says we must generate an exception if |
9a64fbe4 FB |
2904 | * rA is in the range of registers to be loaded. |
2905 | * In an other hand, IBM says this is valid, but rA won't be loaded. | |
2906 | * For now, I'll follow the spec... | |
2907 | */ | |
99e300ef | 2908 | static void gen_lswi(DisasContext *ctx) |
79aceca5 | 2909 | { |
dfbc799d AJ |
2910 | TCGv t0; |
2911 | TCGv_i32 t1, t2; | |
79aceca5 FB |
2912 | int nb = NB(ctx->opcode); |
2913 | int start = rD(ctx->opcode); | |
9a64fbe4 | 2914 | int ra = rA(ctx->opcode); |
79aceca5 FB |
2915 | int nr; |
2916 | ||
2917 | if (nb == 0) | |
2918 | nb = 32; | |
2919 | nr = nb / 4; | |
76a66253 JM |
2920 | if (unlikely(((start + nr) > 32 && |
2921 | start <= ra && (start + nr - 32) > ra) || | |
2922 | ((start + nr) <= 32 && start <= ra && (start + nr) > ra))) { | |
e06fcd75 | 2923 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX); |
9fddaa0c | 2924 | return; |
297d8e62 | 2925 | } |
76db3ba4 | 2926 | gen_set_access_type(ctx, ACCESS_INT); |
8dd4983c | 2927 | /* NIP cannot be restored if the memory exception comes from an helper */ |
d9bce9d9 | 2928 | gen_update_nip(ctx, ctx->nip - 4); |
dfbc799d | 2929 | t0 = tcg_temp_new(); |
76db3ba4 | 2930 | gen_addr_register(ctx, t0); |
dfbc799d AJ |
2931 | t1 = tcg_const_i32(nb); |
2932 | t2 = tcg_const_i32(start); | |
2933 | gen_helper_lsw(t0, t1, t2); | |
2934 | tcg_temp_free(t0); | |
2935 | tcg_temp_free_i32(t1); | |
2936 | tcg_temp_free_i32(t2); | |
79aceca5 FB |
2937 | } |
2938 | ||
2939 | /* lswx */ | |
99e300ef | 2940 | static void gen_lswx(DisasContext *ctx) |
79aceca5 | 2941 | { |
76db3ba4 AJ |
2942 | TCGv t0; |
2943 | TCGv_i32 t1, t2, t3; | |
2944 | gen_set_access_type(ctx, ACCESS_INT); | |
76a66253 | 2945 | /* NIP cannot be restored if the memory exception comes from an helper */ |
d9bce9d9 | 2946 | gen_update_nip(ctx, ctx->nip - 4); |
76db3ba4 AJ |
2947 | t0 = tcg_temp_new(); |
2948 | gen_addr_reg_index(ctx, t0); | |
2949 | t1 = tcg_const_i32(rD(ctx->opcode)); | |
2950 | t2 = tcg_const_i32(rA(ctx->opcode)); | |
2951 | t3 = tcg_const_i32(rB(ctx->opcode)); | |
dfbc799d AJ |
2952 | gen_helper_lswx(t0, t1, t2, t3); |
2953 | tcg_temp_free(t0); | |
2954 | tcg_temp_free_i32(t1); | |
2955 | tcg_temp_free_i32(t2); | |
2956 | tcg_temp_free_i32(t3); | |
79aceca5 FB |
2957 | } |
2958 | ||
2959 | /* stswi */ | |
99e300ef | 2960 | static void gen_stswi(DisasContext *ctx) |
79aceca5 | 2961 | { |
76db3ba4 AJ |
2962 | TCGv t0; |
2963 | TCGv_i32 t1, t2; | |
4b3686fa | 2964 | int nb = NB(ctx->opcode); |
76db3ba4 | 2965 | gen_set_access_type(ctx, ACCESS_INT); |
76a66253 | 2966 | /* NIP cannot be restored if the memory exception comes from an helper */ |
d9bce9d9 | 2967 | gen_update_nip(ctx, ctx->nip - 4); |
76db3ba4 AJ |
2968 | t0 = tcg_temp_new(); |
2969 | gen_addr_register(ctx, t0); | |
4b3686fa FB |
2970 | if (nb == 0) |
2971 | nb = 32; | |
dfbc799d | 2972 | t1 = tcg_const_i32(nb); |
76db3ba4 | 2973 | t2 = tcg_const_i32(rS(ctx->opcode)); |
dfbc799d AJ |
2974 | gen_helper_stsw(t0, t1, t2); |
2975 | tcg_temp_free(t0); | |
2976 | tcg_temp_free_i32(t1); | |
2977 | tcg_temp_free_i32(t2); | |
79aceca5 FB |
2978 | } |
2979 | ||
2980 | /* stswx */ | |
99e300ef | 2981 | static void gen_stswx(DisasContext *ctx) |
79aceca5 | 2982 | { |
76db3ba4 AJ |
2983 | TCGv t0; |
2984 | TCGv_i32 t1, t2; | |
2985 | gen_set_access_type(ctx, ACCESS_INT); | |
8dd4983c | 2986 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5fafdf24 | 2987 | gen_update_nip(ctx, ctx->nip - 4); |
76db3ba4 AJ |
2988 | t0 = tcg_temp_new(); |
2989 | gen_addr_reg_index(ctx, t0); | |
2990 | t1 = tcg_temp_new_i32(); | |
dfbc799d AJ |
2991 | tcg_gen_trunc_tl_i32(t1, cpu_xer); |
2992 | tcg_gen_andi_i32(t1, t1, 0x7F); | |
76db3ba4 | 2993 | t2 = tcg_const_i32(rS(ctx->opcode)); |
dfbc799d AJ |
2994 | gen_helper_stsw(t0, t1, t2); |
2995 | tcg_temp_free(t0); | |
2996 | tcg_temp_free_i32(t1); | |
2997 | tcg_temp_free_i32(t2); | |
79aceca5 FB |
2998 | } |
2999 | ||
3000 | /*** Memory synchronisation ***/ | |
3001 | /* eieio */ | |
99e300ef | 3002 | static void gen_eieio(DisasContext *ctx) |
79aceca5 | 3003 | { |
79aceca5 FB |
3004 | } |
3005 | ||
3006 | /* isync */ | |
99e300ef | 3007 | static void gen_isync(DisasContext *ctx) |
79aceca5 | 3008 | { |
e06fcd75 | 3009 | gen_stop_exception(ctx); |
79aceca5 FB |
3010 | } |
3011 | ||
111bfab3 | 3012 | /* lwarx */ |
99e300ef | 3013 | static void gen_lwarx(DisasContext *ctx) |
79aceca5 | 3014 | { |
76db3ba4 | 3015 | TCGv t0; |
18b21a2f | 3016 | TCGv gpr = cpu_gpr[rD(ctx->opcode)]; |
76db3ba4 AJ |
3017 | gen_set_access_type(ctx, ACCESS_RES); |
3018 | t0 = tcg_temp_local_new(); | |
3019 | gen_addr_reg_index(ctx, t0); | |
cf360a32 | 3020 | gen_check_align(ctx, t0, 0x03); |
18b21a2f | 3021 | gen_qemu_ld32u(ctx, gpr, t0); |
cf360a32 | 3022 | tcg_gen_mov_tl(cpu_reserve, t0); |
18b21a2f | 3023 | tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUState, reserve_val)); |
cf360a32 | 3024 | tcg_temp_free(t0); |
79aceca5 FB |
3025 | } |
3026 | ||
4425265b NF |
3027 | #if defined(CONFIG_USER_ONLY) |
3028 | static void gen_conditional_store (DisasContext *ctx, TCGv EA, | |
3029 | int reg, int size) | |
3030 | { | |
3031 | TCGv t0 = tcg_temp_new(); | |
3032 | uint32_t save_exception = ctx->exception; | |
3033 | ||
3034 | tcg_gen_st_tl(EA, cpu_env, offsetof(CPUState, reserve_ea)); | |
3035 | tcg_gen_movi_tl(t0, (size << 5) | reg); | |
3036 | tcg_gen_st_tl(t0, cpu_env, offsetof(CPUState, reserve_info)); | |
3037 | tcg_temp_free(t0); | |
3038 | gen_update_nip(ctx, ctx->nip-4); | |
3039 | ctx->exception = POWERPC_EXCP_BRANCH; | |
3040 | gen_exception(ctx, POWERPC_EXCP_STCX); | |
3041 | ctx->exception = save_exception; | |
3042 | } | |
3043 | #endif | |
3044 | ||
79aceca5 | 3045 | /* stwcx. */ |
e8eaa2c0 | 3046 | static void gen_stwcx_(DisasContext *ctx) |
79aceca5 | 3047 | { |
76db3ba4 AJ |
3048 | TCGv t0; |
3049 | gen_set_access_type(ctx, ACCESS_RES); | |
3050 | t0 = tcg_temp_local_new(); | |
3051 | gen_addr_reg_index(ctx, t0); | |
cf360a32 | 3052 | gen_check_align(ctx, t0, 0x03); |
4425265b NF |
3053 | #if defined(CONFIG_USER_ONLY) |
3054 | gen_conditional_store(ctx, t0, rS(ctx->opcode), 4); | |
3055 | #else | |
3056 | { | |
3057 | int l1; | |
3058 | ||
3059 | tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer); | |
3060 | tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO); | |
3061 | tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1); | |
3062 | l1 = gen_new_label(); | |
3063 | tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1); | |
3064 | tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ); | |
3065 | gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], t0); | |
3066 | gen_set_label(l1); | |
3067 | tcg_gen_movi_tl(cpu_reserve, -1); | |
3068 | } | |
3069 | #endif | |
cf360a32 | 3070 | tcg_temp_free(t0); |
79aceca5 FB |
3071 | } |
3072 | ||
426613db | 3073 | #if defined(TARGET_PPC64) |
426613db | 3074 | /* ldarx */ |
99e300ef | 3075 | static void gen_ldarx(DisasContext *ctx) |
426613db | 3076 | { |
76db3ba4 | 3077 | TCGv t0; |
18b21a2f | 3078 | TCGv gpr = cpu_gpr[rD(ctx->opcode)]; |
76db3ba4 AJ |
3079 | gen_set_access_type(ctx, ACCESS_RES); |
3080 | t0 = tcg_temp_local_new(); | |
3081 | gen_addr_reg_index(ctx, t0); | |
cf360a32 | 3082 | gen_check_align(ctx, t0, 0x07); |
18b21a2f | 3083 | gen_qemu_ld64(ctx, gpr, t0); |
cf360a32 | 3084 | tcg_gen_mov_tl(cpu_reserve, t0); |
18b21a2f | 3085 | tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUState, reserve_val)); |
cf360a32 | 3086 | tcg_temp_free(t0); |
426613db JM |
3087 | } |
3088 | ||
3089 | /* stdcx. */ | |
e8eaa2c0 | 3090 | static void gen_stdcx_(DisasContext *ctx) |
426613db | 3091 | { |
76db3ba4 AJ |
3092 | TCGv t0; |
3093 | gen_set_access_type(ctx, ACCESS_RES); | |
3094 | t0 = tcg_temp_local_new(); | |
3095 | gen_addr_reg_index(ctx, t0); | |
cf360a32 | 3096 | gen_check_align(ctx, t0, 0x07); |
4425265b NF |
3097 | #if defined(CONFIG_USER_ONLY) |
3098 | gen_conditional_store(ctx, t0, rS(ctx->opcode), 8); | |
3099 | #else | |
3100 | { | |
3101 | int l1; | |
3102 | tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer); | |
3103 | tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO); | |
3104 | tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1); | |
3105 | l1 = gen_new_label(); | |
3106 | tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1); | |
3107 | tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ); | |
3108 | gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], t0); | |
3109 | gen_set_label(l1); | |
3110 | tcg_gen_movi_tl(cpu_reserve, -1); | |
3111 | } | |
3112 | #endif | |
cf360a32 | 3113 | tcg_temp_free(t0); |
426613db JM |
3114 | } |
3115 | #endif /* defined(TARGET_PPC64) */ | |
3116 | ||
79aceca5 | 3117 | /* sync */ |
99e300ef | 3118 | static void gen_sync(DisasContext *ctx) |
79aceca5 | 3119 | { |
79aceca5 FB |
3120 | } |
3121 | ||
0db1b20e | 3122 | /* wait */ |
99e300ef | 3123 | static void gen_wait(DisasContext *ctx) |
0db1b20e | 3124 | { |
931ff272 AJ |
3125 | TCGv_i32 t0 = tcg_temp_new_i32(); |
3126 | tcg_gen_st_i32(t0, cpu_env, offsetof(CPUState, halted)); | |
3127 | tcg_temp_free_i32(t0); | |
0db1b20e | 3128 | /* Stop translation, as the CPU is supposed to sleep from now */ |
e06fcd75 | 3129 | gen_exception_err(ctx, EXCP_HLT, 1); |
0db1b20e JM |
3130 | } |
3131 | ||
79aceca5 | 3132 | /*** Floating-point load ***/ |
a0d7d5a7 | 3133 | #define GEN_LDF(name, ldop, opc, type) \ |
99e300ef | 3134 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 3135 | { \ |
a0d7d5a7 | 3136 | TCGv EA; \ |
76a66253 | 3137 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3138 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3139 | return; \ |
3140 | } \ | |
76db3ba4 | 3141 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3142 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3143 | gen_addr_imm_index(ctx, EA, 0); \ |
3144 | gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \ | |
a0d7d5a7 | 3145 | tcg_temp_free(EA); \ |
79aceca5 FB |
3146 | } |
3147 | ||
a0d7d5a7 | 3148 | #define GEN_LDUF(name, ldop, opc, type) \ |
99e300ef | 3149 | static void glue(gen_, name##u)(DisasContext *ctx) \ |
79aceca5 | 3150 | { \ |
a0d7d5a7 | 3151 | TCGv EA; \ |
76a66253 | 3152 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3153 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3154 | return; \ |
3155 | } \ | |
76a66253 | 3156 | if (unlikely(rA(ctx->opcode) == 0)) { \ |
e06fcd75 | 3157 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 3158 | return; \ |
9a64fbe4 | 3159 | } \ |
76db3ba4 | 3160 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3161 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3162 | gen_addr_imm_index(ctx, EA, 0); \ |
3163 | gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \ | |
a0d7d5a7 AJ |
3164 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
3165 | tcg_temp_free(EA); \ | |
79aceca5 FB |
3166 | } |
3167 | ||
a0d7d5a7 | 3168 | #define GEN_LDUXF(name, ldop, opc, type) \ |
99e300ef | 3169 | static void glue(gen_, name##ux)(DisasContext *ctx) \ |
79aceca5 | 3170 | { \ |
a0d7d5a7 | 3171 | TCGv EA; \ |
76a66253 | 3172 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3173 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3174 | return; \ |
3175 | } \ | |
76a66253 | 3176 | if (unlikely(rA(ctx->opcode) == 0)) { \ |
e06fcd75 | 3177 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 3178 | return; \ |
9a64fbe4 | 3179 | } \ |
76db3ba4 | 3180 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3181 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3182 | gen_addr_reg_index(ctx, EA); \ |
3183 | gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \ | |
a0d7d5a7 AJ |
3184 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
3185 | tcg_temp_free(EA); \ | |
79aceca5 FB |
3186 | } |
3187 | ||
a0d7d5a7 | 3188 | #define GEN_LDXF(name, ldop, opc2, opc3, type) \ |
99e300ef | 3189 | static void glue(gen_, name##x)(DisasContext *ctx) \ |
79aceca5 | 3190 | { \ |
a0d7d5a7 | 3191 | TCGv EA; \ |
76a66253 | 3192 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3193 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3194 | return; \ |
3195 | } \ | |
76db3ba4 | 3196 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3197 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3198 | gen_addr_reg_index(ctx, EA); \ |
3199 | gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \ | |
a0d7d5a7 | 3200 | tcg_temp_free(EA); \ |
79aceca5 FB |
3201 | } |
3202 | ||
a0d7d5a7 AJ |
3203 | #define GEN_LDFS(name, ldop, op, type) \ |
3204 | GEN_LDF(name, ldop, op | 0x20, type); \ | |
3205 | GEN_LDUF(name, ldop, op | 0x21, type); \ | |
3206 | GEN_LDUXF(name, ldop, op | 0x01, type); \ | |
3207 | GEN_LDXF(name, ldop, 0x17, op | 0x00, type) | |
3208 | ||
636aa200 | 3209 | static inline void gen_qemu_ld32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2) |
a0d7d5a7 AJ |
3210 | { |
3211 | TCGv t0 = tcg_temp_new(); | |
3212 | TCGv_i32 t1 = tcg_temp_new_i32(); | |
76db3ba4 | 3213 | gen_qemu_ld32u(ctx, t0, arg2); |
a0d7d5a7 AJ |
3214 | tcg_gen_trunc_tl_i32(t1, t0); |
3215 | tcg_temp_free(t0); | |
3216 | gen_helper_float32_to_float64(arg1, t1); | |
3217 | tcg_temp_free_i32(t1); | |
3218 | } | |
79aceca5 | 3219 | |
a0d7d5a7 AJ |
3220 | /* lfd lfdu lfdux lfdx */ |
3221 | GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT); | |
3222 | /* lfs lfsu lfsux lfsx */ | |
3223 | GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT); | |
79aceca5 FB |
3224 | |
3225 | /*** Floating-point store ***/ | |
a0d7d5a7 | 3226 | #define GEN_STF(name, stop, opc, type) \ |
99e300ef | 3227 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 3228 | { \ |
a0d7d5a7 | 3229 | TCGv EA; \ |
76a66253 | 3230 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3231 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3232 | return; \ |
3233 | } \ | |
76db3ba4 | 3234 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3235 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3236 | gen_addr_imm_index(ctx, EA, 0); \ |
3237 | gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \ | |
a0d7d5a7 | 3238 | tcg_temp_free(EA); \ |
79aceca5 FB |
3239 | } |
3240 | ||
a0d7d5a7 | 3241 | #define GEN_STUF(name, stop, opc, type) \ |
99e300ef | 3242 | static void glue(gen_, name##u)(DisasContext *ctx) \ |
79aceca5 | 3243 | { \ |
a0d7d5a7 | 3244 | TCGv EA; \ |
76a66253 | 3245 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3246 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3247 | return; \ |
3248 | } \ | |
76a66253 | 3249 | if (unlikely(rA(ctx->opcode) == 0)) { \ |
e06fcd75 | 3250 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 3251 | return; \ |
9a64fbe4 | 3252 | } \ |
76db3ba4 | 3253 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3254 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3255 | gen_addr_imm_index(ctx, EA, 0); \ |
3256 | gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \ | |
a0d7d5a7 AJ |
3257 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
3258 | tcg_temp_free(EA); \ | |
79aceca5 FB |
3259 | } |
3260 | ||
a0d7d5a7 | 3261 | #define GEN_STUXF(name, stop, opc, type) \ |
99e300ef | 3262 | static void glue(gen_, name##ux)(DisasContext *ctx) \ |
79aceca5 | 3263 | { \ |
a0d7d5a7 | 3264 | TCGv EA; \ |
76a66253 | 3265 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3266 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3267 | return; \ |
3268 | } \ | |
76a66253 | 3269 | if (unlikely(rA(ctx->opcode) == 0)) { \ |
e06fcd75 | 3270 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \ |
9fddaa0c | 3271 | return; \ |
9a64fbe4 | 3272 | } \ |
76db3ba4 | 3273 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3274 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3275 | gen_addr_reg_index(ctx, EA); \ |
3276 | gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \ | |
a0d7d5a7 AJ |
3277 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \ |
3278 | tcg_temp_free(EA); \ | |
79aceca5 FB |
3279 | } |
3280 | ||
a0d7d5a7 | 3281 | #define GEN_STXF(name, stop, opc2, opc3, type) \ |
99e300ef | 3282 | static void glue(gen_, name##x)(DisasContext *ctx) \ |
79aceca5 | 3283 | { \ |
a0d7d5a7 | 3284 | TCGv EA; \ |
76a66253 | 3285 | if (unlikely(!ctx->fpu_enabled)) { \ |
e06fcd75 | 3286 | gen_exception(ctx, POWERPC_EXCP_FPU); \ |
4ecc3190 FB |
3287 | return; \ |
3288 | } \ | |
76db3ba4 | 3289 | gen_set_access_type(ctx, ACCESS_FLOAT); \ |
a0d7d5a7 | 3290 | EA = tcg_temp_new(); \ |
76db3ba4 AJ |
3291 | gen_addr_reg_index(ctx, EA); \ |
3292 | gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \ | |
a0d7d5a7 | 3293 | tcg_temp_free(EA); \ |
79aceca5 FB |
3294 | } |
3295 | ||
a0d7d5a7 AJ |
3296 | #define GEN_STFS(name, stop, op, type) \ |
3297 | GEN_STF(name, stop, op | 0x20, type); \ | |
3298 | GEN_STUF(name, stop, op | 0x21, type); \ | |
3299 | GEN_STUXF(name, stop, op | 0x01, type); \ | |
3300 | GEN_STXF(name, stop, 0x17, op | 0x00, type) | |
3301 | ||
636aa200 | 3302 | static inline void gen_qemu_st32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2) |
a0d7d5a7 AJ |
3303 | { |
3304 | TCGv_i32 t0 = tcg_temp_new_i32(); | |
3305 | TCGv t1 = tcg_temp_new(); | |
3306 | gen_helper_float64_to_float32(t0, arg1); | |
3307 | tcg_gen_extu_i32_tl(t1, t0); | |
3308 | tcg_temp_free_i32(t0); | |
76db3ba4 | 3309 | gen_qemu_st32(ctx, t1, arg2); |
a0d7d5a7 AJ |
3310 | tcg_temp_free(t1); |
3311 | } | |
79aceca5 FB |
3312 | |
3313 | /* stfd stfdu stfdux stfdx */ | |
a0d7d5a7 | 3314 | GEN_STFS(stfd, st64, 0x16, PPC_FLOAT); |
79aceca5 | 3315 | /* stfs stfsu stfsux stfsx */ |
a0d7d5a7 | 3316 | GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT); |
79aceca5 FB |
3317 | |
3318 | /* Optional: */ | |
636aa200 | 3319 | static inline void gen_qemu_st32fiw(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2) |
a0d7d5a7 AJ |
3320 | { |
3321 | TCGv t0 = tcg_temp_new(); | |
3322 | tcg_gen_trunc_i64_tl(t0, arg1), | |
76db3ba4 | 3323 | gen_qemu_st32(ctx, t0, arg2); |
a0d7d5a7 AJ |
3324 | tcg_temp_free(t0); |
3325 | } | |
79aceca5 | 3326 | /* stfiwx */ |
a0d7d5a7 | 3327 | GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX); |
79aceca5 FB |
3328 | |
3329 | /*** Branch ***/ | |
636aa200 | 3330 | static inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest) |
c1942362 FB |
3331 | { |
3332 | TranslationBlock *tb; | |
3333 | tb = ctx->tb; | |
a2ffb812 AJ |
3334 | #if defined(TARGET_PPC64) |
3335 | if (!ctx->sf_mode) | |
3336 | dest = (uint32_t) dest; | |
3337 | #endif | |
57fec1fe | 3338 | if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) && |
8cbcb4fa | 3339 | likely(!ctx->singlestep_enabled)) { |
57fec1fe | 3340 | tcg_gen_goto_tb(n); |
a2ffb812 | 3341 | tcg_gen_movi_tl(cpu_nip, dest & ~3); |
57fec1fe | 3342 | tcg_gen_exit_tb((long)tb + n); |
c1942362 | 3343 | } else { |
a2ffb812 | 3344 | tcg_gen_movi_tl(cpu_nip, dest & ~3); |
8cbcb4fa AJ |
3345 | if (unlikely(ctx->singlestep_enabled)) { |
3346 | if ((ctx->singlestep_enabled & | |
bdc4e053 | 3347 | (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) && |
8cbcb4fa AJ |
3348 | ctx->exception == POWERPC_EXCP_BRANCH) { |
3349 | target_ulong tmp = ctx->nip; | |
3350 | ctx->nip = dest; | |
e06fcd75 | 3351 | gen_exception(ctx, POWERPC_EXCP_TRACE); |
8cbcb4fa AJ |
3352 | ctx->nip = tmp; |
3353 | } | |
3354 | if (ctx->singlestep_enabled & GDBSTUB_SINGLE_STEP) { | |
e06fcd75 | 3355 | gen_debug_exception(ctx); |
8cbcb4fa AJ |
3356 | } |
3357 | } | |
57fec1fe | 3358 | tcg_gen_exit_tb(0); |
c1942362 | 3359 | } |
c53be334 FB |
3360 | } |
3361 | ||
636aa200 | 3362 | static inline void gen_setlr(DisasContext *ctx, target_ulong nip) |
e1833e1f JM |
3363 | { |
3364 | #if defined(TARGET_PPC64) | |
a2ffb812 AJ |
3365 | if (ctx->sf_mode == 0) |
3366 | tcg_gen_movi_tl(cpu_lr, (uint32_t)nip); | |
e1833e1f JM |
3367 | else |
3368 | #endif | |
a2ffb812 | 3369 | tcg_gen_movi_tl(cpu_lr, nip); |
e1833e1f JM |
3370 | } |
3371 | ||
79aceca5 | 3372 | /* b ba bl bla */ |
99e300ef | 3373 | static void gen_b(DisasContext *ctx) |
79aceca5 | 3374 | { |
76a66253 | 3375 | target_ulong li, target; |
38a64f9d | 3376 | |
8cbcb4fa | 3377 | ctx->exception = POWERPC_EXCP_BRANCH; |
38a64f9d | 3378 | /* sign extend LI */ |
76a66253 | 3379 | #if defined(TARGET_PPC64) |
d9bce9d9 JM |
3380 | if (ctx->sf_mode) |
3381 | li = ((int64_t)LI(ctx->opcode) << 38) >> 38; | |
3382 | else | |
76a66253 | 3383 | #endif |
d9bce9d9 | 3384 | li = ((int32_t)LI(ctx->opcode) << 6) >> 6; |
76a66253 | 3385 | if (likely(AA(ctx->opcode) == 0)) |
046d6672 | 3386 | target = ctx->nip + li - 4; |
79aceca5 | 3387 | else |
9a64fbe4 | 3388 | target = li; |
e1833e1f JM |
3389 | if (LK(ctx->opcode)) |
3390 | gen_setlr(ctx, ctx->nip); | |
c1942362 | 3391 | gen_goto_tb(ctx, 0, target); |
79aceca5 FB |
3392 | } |
3393 | ||
e98a6e40 FB |
3394 | #define BCOND_IM 0 |
3395 | #define BCOND_LR 1 | |
3396 | #define BCOND_CTR 2 | |
3397 | ||
636aa200 | 3398 | static inline void gen_bcond(DisasContext *ctx, int type) |
d9bce9d9 | 3399 | { |
d9bce9d9 | 3400 | uint32_t bo = BO(ctx->opcode); |
a2ffb812 AJ |
3401 | int l1 = gen_new_label(); |
3402 | TCGv target; | |
e98a6e40 | 3403 | |
8cbcb4fa | 3404 | ctx->exception = POWERPC_EXCP_BRANCH; |
a2ffb812 | 3405 | if (type == BCOND_LR || type == BCOND_CTR) { |
a7812ae4 | 3406 | target = tcg_temp_local_new(); |
a2ffb812 AJ |
3407 | if (type == BCOND_CTR) |
3408 | tcg_gen_mov_tl(target, cpu_ctr); | |
3409 | else | |
3410 | tcg_gen_mov_tl(target, cpu_lr); | |
d2e9fd8f | 3411 | } else { |
3412 | TCGV_UNUSED(target); | |
e98a6e40 | 3413 | } |
e1833e1f JM |
3414 | if (LK(ctx->opcode)) |
3415 | gen_setlr(ctx, ctx->nip); | |
a2ffb812 AJ |
3416 | l1 = gen_new_label(); |
3417 | if ((bo & 0x4) == 0) { | |
3418 | /* Decrement and test CTR */ | |
a7812ae4 | 3419 | TCGv temp = tcg_temp_new(); |
a2ffb812 | 3420 | if (unlikely(type == BCOND_CTR)) { |
e06fcd75 | 3421 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
a2ffb812 AJ |
3422 | return; |
3423 | } | |
3424 | tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1); | |
d9bce9d9 | 3425 | #if defined(TARGET_PPC64) |
a2ffb812 AJ |
3426 | if (!ctx->sf_mode) |
3427 | tcg_gen_ext32u_tl(temp, cpu_ctr); | |
3428 | else | |
d9bce9d9 | 3429 | #endif |
a2ffb812 AJ |
3430 | tcg_gen_mov_tl(temp, cpu_ctr); |
3431 | if (bo & 0x2) { | |
3432 | tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1); | |
3433 | } else { | |
3434 | tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1); | |
e98a6e40 | 3435 | } |
a7812ae4 | 3436 | tcg_temp_free(temp); |
a2ffb812 AJ |
3437 | } |
3438 | if ((bo & 0x10) == 0) { | |
3439 | /* Test CR */ | |
3440 | uint32_t bi = BI(ctx->opcode); | |
3441 | uint32_t mask = 1 << (3 - (bi & 0x03)); | |
a7812ae4 | 3442 | TCGv_i32 temp = tcg_temp_new_i32(); |
a2ffb812 | 3443 | |
d9bce9d9 | 3444 | if (bo & 0x8) { |
a2ffb812 AJ |
3445 | tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask); |
3446 | tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1); | |
d9bce9d9 | 3447 | } else { |
a2ffb812 AJ |
3448 | tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask); |
3449 | tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1); | |
d9bce9d9 | 3450 | } |
a7812ae4 | 3451 | tcg_temp_free_i32(temp); |
d9bce9d9 | 3452 | } |
e98a6e40 | 3453 | if (type == BCOND_IM) { |
a2ffb812 AJ |
3454 | target_ulong li = (target_long)((int16_t)(BD(ctx->opcode))); |
3455 | if (likely(AA(ctx->opcode) == 0)) { | |
3456 | gen_goto_tb(ctx, 0, ctx->nip + li - 4); | |
3457 | } else { | |
3458 | gen_goto_tb(ctx, 0, li); | |
3459 | } | |
c53be334 | 3460 | gen_set_label(l1); |
c1942362 | 3461 | gen_goto_tb(ctx, 1, ctx->nip); |
e98a6e40 | 3462 | } else { |
d9bce9d9 | 3463 | #if defined(TARGET_PPC64) |
a2ffb812 AJ |
3464 | if (!(ctx->sf_mode)) |
3465 | tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3); | |
3466 | else | |
3467 | #endif | |
3468 | tcg_gen_andi_tl(cpu_nip, target, ~3); | |
3469 | tcg_gen_exit_tb(0); | |
3470 | gen_set_label(l1); | |
3471 | #if defined(TARGET_PPC64) | |
3472 | if (!(ctx->sf_mode)) | |
3473 | tcg_gen_movi_tl(cpu_nip, (uint32_t)ctx->nip); | |
d9bce9d9 JM |
3474 | else |
3475 | #endif | |
a2ffb812 | 3476 | tcg_gen_movi_tl(cpu_nip, ctx->nip); |
57fec1fe | 3477 | tcg_gen_exit_tb(0); |
08e46e54 | 3478 | } |
e98a6e40 FB |
3479 | } |
3480 | ||
99e300ef | 3481 | static void gen_bc(DisasContext *ctx) |
3b46e624 | 3482 | { |
e98a6e40 FB |
3483 | gen_bcond(ctx, BCOND_IM); |
3484 | } | |
3485 | ||
99e300ef | 3486 | static void gen_bcctr(DisasContext *ctx) |
3b46e624 | 3487 | { |
e98a6e40 FB |
3488 | gen_bcond(ctx, BCOND_CTR); |
3489 | } | |
3490 | ||
99e300ef | 3491 | static void gen_bclr(DisasContext *ctx) |
3b46e624 | 3492 | { |
e98a6e40 FB |
3493 | gen_bcond(ctx, BCOND_LR); |
3494 | } | |
79aceca5 FB |
3495 | |
3496 | /*** Condition register logical ***/ | |
e1571908 | 3497 | #define GEN_CRLOGIC(name, tcg_op, opc) \ |
99e300ef | 3498 | static void glue(gen_, name)(DisasContext *ctx) \ |
79aceca5 | 3499 | { \ |
fc0d441e JM |
3500 | uint8_t bitmask; \ |
3501 | int sh; \ | |
a7812ae4 | 3502 | TCGv_i32 t0, t1; \ |
fc0d441e | 3503 | sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \ |
a7812ae4 | 3504 | t0 = tcg_temp_new_i32(); \ |
fc0d441e | 3505 | if (sh > 0) \ |
fea0c503 | 3506 | tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \ |
fc0d441e | 3507 | else if (sh < 0) \ |
fea0c503 | 3508 | tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \ |
e1571908 | 3509 | else \ |
fea0c503 | 3510 | tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \ |
a7812ae4 | 3511 | t1 = tcg_temp_new_i32(); \ |
fc0d441e JM |
3512 | sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \ |
3513 | if (sh > 0) \ | |
fea0c503 | 3514 | tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \ |
fc0d441e | 3515 | else if (sh < 0) \ |
fea0c503 | 3516 | tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \ |
e1571908 | 3517 | else \ |
fea0c503 AJ |
3518 | tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \ |
3519 | tcg_op(t0, t0, t1); \ | |
fc0d441e | 3520 | bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \ |
fea0c503 AJ |
3521 | tcg_gen_andi_i32(t0, t0, bitmask); \ |
3522 | tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \ | |
3523 | tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \ | |
a7812ae4 PB |
3524 | tcg_temp_free_i32(t0); \ |
3525 | tcg_temp_free_i32(t1); \ | |
79aceca5 FB |
3526 | } |
3527 | ||
3528 | /* crand */ | |
e1571908 | 3529 | GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08); |
79aceca5 | 3530 | /* crandc */ |
e1571908 | 3531 | GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04); |
79aceca5 | 3532 | /* creqv */ |
e1571908 | 3533 | GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09); |
79aceca5 | 3534 | /* crnand */ |
e1571908 | 3535 | GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07); |
79aceca5 | 3536 | /* crnor */ |
e1571908 | 3537 | GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01); |
79aceca5 | 3538 | /* cror */ |
e1571908 | 3539 | GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E); |
79aceca5 | 3540 | /* crorc */ |
e1571908 | 3541 | GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D); |
79aceca5 | 3542 | /* crxor */ |
e1571908 | 3543 | GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06); |
99e300ef | 3544 | |
54623277 | 3545 | /* mcrf */ |
99e300ef | 3546 | static void gen_mcrf(DisasContext *ctx) |
79aceca5 | 3547 | { |
47e4661c | 3548 | tcg_gen_mov_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfS(ctx->opcode)]); |
79aceca5 FB |
3549 | } |
3550 | ||
3551 | /*** System linkage ***/ | |
99e300ef | 3552 | |
54623277 | 3553 | /* rfi (mem_idx only) */ |
99e300ef | 3554 | static void gen_rfi(DisasContext *ctx) |
79aceca5 | 3555 | { |
9a64fbe4 | 3556 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 3557 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9a64fbe4 FB |
3558 | #else |
3559 | /* Restore CPU state */ | |
76db3ba4 | 3560 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 3561 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9fddaa0c | 3562 | return; |
9a64fbe4 | 3563 | } |
d72a19f7 | 3564 | gen_helper_rfi(); |
e06fcd75 | 3565 | gen_sync_exception(ctx); |
9a64fbe4 | 3566 | #endif |
79aceca5 FB |
3567 | } |
3568 | ||
426613db | 3569 | #if defined(TARGET_PPC64) |
99e300ef | 3570 | static void gen_rfid(DisasContext *ctx) |
426613db JM |
3571 | { |
3572 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 3573 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
426613db JM |
3574 | #else |
3575 | /* Restore CPU state */ | |
76db3ba4 | 3576 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 3577 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
426613db JM |
3578 | return; |
3579 | } | |
d72a19f7 | 3580 | gen_helper_rfid(); |
e06fcd75 | 3581 | gen_sync_exception(ctx); |
426613db JM |
3582 | #endif |
3583 | } | |
426613db | 3584 | |
99e300ef | 3585 | static void gen_hrfid(DisasContext *ctx) |
be147d08 JM |
3586 | { |
3587 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 3588 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
be147d08 JM |
3589 | #else |
3590 | /* Restore CPU state */ | |
76db3ba4 | 3591 | if (unlikely(ctx->mem_idx <= 1)) { |
e06fcd75 | 3592 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
be147d08 JM |
3593 | return; |
3594 | } | |
d72a19f7 | 3595 | gen_helper_hrfid(); |
e06fcd75 | 3596 | gen_sync_exception(ctx); |
be147d08 JM |
3597 | #endif |
3598 | } | |
3599 | #endif | |
3600 | ||
79aceca5 | 3601 | /* sc */ |
417bf010 JM |
3602 | #if defined(CONFIG_USER_ONLY) |
3603 | #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER | |
3604 | #else | |
3605 | #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL | |
3606 | #endif | |
99e300ef | 3607 | static void gen_sc(DisasContext *ctx) |
79aceca5 | 3608 | { |
e1833e1f JM |
3609 | uint32_t lev; |
3610 | ||
3611 | lev = (ctx->opcode >> 5) & 0x7F; | |
e06fcd75 | 3612 | gen_exception_err(ctx, POWERPC_SYSCALL, lev); |
79aceca5 FB |
3613 | } |
3614 | ||
3615 | /*** Trap ***/ | |
99e300ef | 3616 | |
54623277 | 3617 | /* tw */ |
99e300ef | 3618 | static void gen_tw(DisasContext *ctx) |
79aceca5 | 3619 | { |
cab3bee2 | 3620 | TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode)); |
a0ae05aa | 3621 | /* Update the nip since this might generate a trap exception */ |
d9bce9d9 | 3622 | gen_update_nip(ctx, ctx->nip); |
cab3bee2 AJ |
3623 | gen_helper_tw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0); |
3624 | tcg_temp_free_i32(t0); | |
79aceca5 FB |
3625 | } |
3626 | ||
3627 | /* twi */ | |
99e300ef | 3628 | static void gen_twi(DisasContext *ctx) |
79aceca5 | 3629 | { |
cab3bee2 AJ |
3630 | TCGv t0 = tcg_const_tl(SIMM(ctx->opcode)); |
3631 | TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode)); | |
d9bce9d9 JM |
3632 | /* Update the nip since this might generate a trap exception */ |
3633 | gen_update_nip(ctx, ctx->nip); | |
cab3bee2 AJ |
3634 | gen_helper_tw(cpu_gpr[rA(ctx->opcode)], t0, t1); |
3635 | tcg_temp_free(t0); | |
3636 | tcg_temp_free_i32(t1); | |
79aceca5 FB |
3637 | } |
3638 | ||
d9bce9d9 JM |
3639 | #if defined(TARGET_PPC64) |
3640 | /* td */ | |
99e300ef | 3641 | static void gen_td(DisasContext *ctx) |
d9bce9d9 | 3642 | { |
cab3bee2 | 3643 | TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode)); |
d9bce9d9 JM |
3644 | /* Update the nip since this might generate a trap exception */ |
3645 | gen_update_nip(ctx, ctx->nip); | |
cab3bee2 AJ |
3646 | gen_helper_td(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0); |
3647 | tcg_temp_free_i32(t0); | |
d9bce9d9 JM |
3648 | } |
3649 | ||
3650 | /* tdi */ | |
99e300ef | 3651 | static void gen_tdi(DisasContext *ctx) |
d9bce9d9 | 3652 | { |
cab3bee2 AJ |
3653 | TCGv t0 = tcg_const_tl(SIMM(ctx->opcode)); |
3654 | TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode)); | |
d9bce9d9 JM |
3655 | /* Update the nip since this might generate a trap exception */ |
3656 | gen_update_nip(ctx, ctx->nip); | |
cab3bee2 AJ |
3657 | gen_helper_td(cpu_gpr[rA(ctx->opcode)], t0, t1); |
3658 | tcg_temp_free(t0); | |
3659 | tcg_temp_free_i32(t1); | |
d9bce9d9 JM |
3660 | } |
3661 | #endif | |
3662 | ||
79aceca5 | 3663 | /*** Processor control ***/ |
99e300ef | 3664 | |
54623277 | 3665 | /* mcrxr */ |
99e300ef | 3666 | static void gen_mcrxr(DisasContext *ctx) |
79aceca5 | 3667 | { |
3d7b417e AJ |
3668 | tcg_gen_trunc_tl_i32(cpu_crf[crfD(ctx->opcode)], cpu_xer); |
3669 | tcg_gen_shri_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], XER_CA); | |
269f3e95 | 3670 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_SO | 1 << XER_OV | 1 << XER_CA)); |
79aceca5 FB |
3671 | } |
3672 | ||
0cfe11ea | 3673 | /* mfcr mfocrf */ |
99e300ef | 3674 | static void gen_mfcr(DisasContext *ctx) |
79aceca5 | 3675 | { |
76a66253 | 3676 | uint32_t crm, crn; |
3b46e624 | 3677 | |
76a66253 JM |
3678 | if (likely(ctx->opcode & 0x00100000)) { |
3679 | crm = CRM(ctx->opcode); | |
8dd640e4 | 3680 | if (likely(crm && ((crm & (crm - 1)) == 0))) { |
0cfe11ea | 3681 | crn = ctz32 (crm); |
e1571908 | 3682 | tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]); |
0497d2f4 AJ |
3683 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], |
3684 | cpu_gpr[rD(ctx->opcode)], crn * 4); | |
76a66253 | 3685 | } |
d9bce9d9 | 3686 | } else { |
651721b2 AJ |
3687 | TCGv_i32 t0 = tcg_temp_new_i32(); |
3688 | tcg_gen_mov_i32(t0, cpu_crf[0]); | |
3689 | tcg_gen_shli_i32(t0, t0, 4); | |
3690 | tcg_gen_or_i32(t0, t0, cpu_crf[1]); | |
3691 | tcg_gen_shli_i32(t0, t0, 4); | |
3692 | tcg_gen_or_i32(t0, t0, cpu_crf[2]); | |
3693 | tcg_gen_shli_i32(t0, t0, 4); | |
3694 | tcg_gen_or_i32(t0, t0, cpu_crf[3]); | |
3695 | tcg_gen_shli_i32(t0, t0, 4); | |
3696 | tcg_gen_or_i32(t0, t0, cpu_crf[4]); | |
3697 | tcg_gen_shli_i32(t0, t0, 4); | |
3698 | tcg_gen_or_i32(t0, t0, cpu_crf[5]); | |
3699 | tcg_gen_shli_i32(t0, t0, 4); | |
3700 | tcg_gen_or_i32(t0, t0, cpu_crf[6]); | |
3701 | tcg_gen_shli_i32(t0, t0, 4); | |
3702 | tcg_gen_or_i32(t0, t0, cpu_crf[7]); | |
3703 | tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
3704 | tcg_temp_free_i32(t0); | |
d9bce9d9 | 3705 | } |
79aceca5 FB |
3706 | } |
3707 | ||
3708 | /* mfmsr */ | |
99e300ef | 3709 | static void gen_mfmsr(DisasContext *ctx) |
79aceca5 | 3710 | { |
9a64fbe4 | 3711 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 3712 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9a64fbe4 | 3713 | #else |
76db3ba4 | 3714 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 3715 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9fddaa0c | 3716 | return; |
9a64fbe4 | 3717 | } |
6527f6ea | 3718 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_msr); |
9a64fbe4 | 3719 | #endif |
79aceca5 FB |
3720 | } |
3721 | ||
a11b8151 | 3722 | #if 1 |
6f2d8978 | 3723 | #define SPR_NOACCESS ((void *)(-1UL)) |
3fc6c082 FB |
3724 | #else |
3725 | static void spr_noaccess (void *opaque, int sprn) | |
3726 | { | |
3727 | sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5); | |
3728 | printf("ERROR: try to access SPR %d !\n", sprn); | |
3729 | } | |
3730 | #define SPR_NOACCESS (&spr_noaccess) | |
3731 | #endif | |
3732 | ||
79aceca5 | 3733 | /* mfspr */ |
636aa200 | 3734 | static inline void gen_op_mfspr(DisasContext *ctx) |
79aceca5 | 3735 | { |
45d827d2 | 3736 | void (*read_cb)(void *opaque, int gprn, int sprn); |
79aceca5 FB |
3737 | uint32_t sprn = SPR(ctx->opcode); |
3738 | ||
3fc6c082 | 3739 | #if !defined(CONFIG_USER_ONLY) |
76db3ba4 | 3740 | if (ctx->mem_idx == 2) |
be147d08 | 3741 | read_cb = ctx->spr_cb[sprn].hea_read; |
76db3ba4 | 3742 | else if (ctx->mem_idx) |
3fc6c082 FB |
3743 | read_cb = ctx->spr_cb[sprn].oea_read; |
3744 | else | |
9a64fbe4 | 3745 | #endif |
3fc6c082 | 3746 | read_cb = ctx->spr_cb[sprn].uea_read; |
76a66253 JM |
3747 | if (likely(read_cb != NULL)) { |
3748 | if (likely(read_cb != SPR_NOACCESS)) { | |
45d827d2 | 3749 | (*read_cb)(ctx, rD(ctx->opcode), sprn); |
3fc6c082 FB |
3750 | } else { |
3751 | /* Privilege exception */ | |
9fceefa7 JM |
3752 | /* This is a hack to avoid warnings when running Linux: |
3753 | * this OS breaks the PowerPC virtualisation model, | |
3754 | * allowing userland application to read the PVR | |
3755 | */ | |
3756 | if (sprn != SPR_PVR) { | |
93fcfe39 | 3757 | qemu_log("Trying to read privileged spr %d %03x at " |
90e189ec BS |
3758 | TARGET_FMT_lx "\n", sprn, sprn, ctx->nip); |
3759 | printf("Trying to read privileged spr %d %03x at " | |
3760 | TARGET_FMT_lx "\n", sprn, sprn, ctx->nip); | |
f24e5695 | 3761 | } |
e06fcd75 | 3762 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
79aceca5 | 3763 | } |
3fc6c082 FB |
3764 | } else { |
3765 | /* Not defined */ | |
93fcfe39 | 3766 | qemu_log("Trying to read invalid spr %d %03x at " |
90e189ec BS |
3767 | TARGET_FMT_lx "\n", sprn, sprn, ctx->nip); |
3768 | printf("Trying to read invalid spr %d %03x at " TARGET_FMT_lx "\n", | |
077fc206 | 3769 | sprn, sprn, ctx->nip); |
e06fcd75 | 3770 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR); |
79aceca5 | 3771 | } |
79aceca5 FB |
3772 | } |
3773 | ||
99e300ef | 3774 | static void gen_mfspr(DisasContext *ctx) |
79aceca5 | 3775 | { |
3fc6c082 | 3776 | gen_op_mfspr(ctx); |
76a66253 | 3777 | } |
3fc6c082 FB |
3778 | |
3779 | /* mftb */ | |
99e300ef | 3780 | static void gen_mftb(DisasContext *ctx) |
3fc6c082 FB |
3781 | { |
3782 | gen_op_mfspr(ctx); | |
79aceca5 FB |
3783 | } |
3784 | ||
0cfe11ea | 3785 | /* mtcrf mtocrf*/ |
99e300ef | 3786 | static void gen_mtcrf(DisasContext *ctx) |
79aceca5 | 3787 | { |
76a66253 | 3788 | uint32_t crm, crn; |
3b46e624 | 3789 | |
76a66253 | 3790 | crm = CRM(ctx->opcode); |
8dd640e4 | 3791 | if (likely((ctx->opcode & 0x00100000))) { |
3792 | if (crm && ((crm & (crm - 1)) == 0)) { | |
3793 | TCGv_i32 temp = tcg_temp_new_i32(); | |
0cfe11ea | 3794 | crn = ctz32 (crm); |
8dd640e4 | 3795 | tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]); |
0cfe11ea AJ |
3796 | tcg_gen_shri_i32(temp, temp, crn * 4); |
3797 | tcg_gen_andi_i32(cpu_crf[7 - crn], temp, 0xf); | |
8dd640e4 | 3798 | tcg_temp_free_i32(temp); |
3799 | } | |
76a66253 | 3800 | } else { |
651721b2 AJ |
3801 | TCGv_i32 temp = tcg_temp_new_i32(); |
3802 | tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]); | |
3803 | for (crn = 0 ; crn < 8 ; crn++) { | |
3804 | if (crm & (1 << crn)) { | |
3805 | tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4); | |
3806 | tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf); | |
3807 | } | |
3808 | } | |
a7812ae4 | 3809 | tcg_temp_free_i32(temp); |
76a66253 | 3810 | } |
79aceca5 FB |
3811 | } |
3812 | ||
3813 | /* mtmsr */ | |
426613db | 3814 | #if defined(TARGET_PPC64) |
99e300ef | 3815 | static void gen_mtmsrd(DisasContext *ctx) |
426613db JM |
3816 | { |
3817 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 3818 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
426613db | 3819 | #else |
76db3ba4 | 3820 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 3821 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
426613db JM |
3822 | return; |
3823 | } | |
be147d08 JM |
3824 | if (ctx->opcode & 0x00010000) { |
3825 | /* Special form that does not need any synchronisation */ | |
6527f6ea AJ |
3826 | TCGv t0 = tcg_temp_new(); |
3827 | tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE)); | |
3828 | tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE))); | |
3829 | tcg_gen_or_tl(cpu_msr, cpu_msr, t0); | |
3830 | tcg_temp_free(t0); | |
be147d08 | 3831 | } else { |
056b05f8 JM |
3832 | /* XXX: we need to update nip before the store |
3833 | * if we enter power saving mode, we will exit the loop | |
3834 | * directly from ppc_store_msr | |
3835 | */ | |
be147d08 | 3836 | gen_update_nip(ctx, ctx->nip); |
6527f6ea | 3837 | gen_helper_store_msr(cpu_gpr[rS(ctx->opcode)]); |
be147d08 JM |
3838 | /* Must stop the translation as machine state (may have) changed */ |
3839 | /* Note that mtmsr is not always defined as context-synchronizing */ | |
e06fcd75 | 3840 | gen_stop_exception(ctx); |
be147d08 | 3841 | } |
426613db JM |
3842 | #endif |
3843 | } | |
3844 | #endif | |
3845 | ||
99e300ef | 3846 | static void gen_mtmsr(DisasContext *ctx) |
79aceca5 | 3847 | { |
9a64fbe4 | 3848 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 3849 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9a64fbe4 | 3850 | #else |
76db3ba4 | 3851 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 3852 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9fddaa0c | 3853 | return; |
9a64fbe4 | 3854 | } |
be147d08 JM |
3855 | if (ctx->opcode & 0x00010000) { |
3856 | /* Special form that does not need any synchronisation */ | |
6527f6ea AJ |
3857 | TCGv t0 = tcg_temp_new(); |
3858 | tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE)); | |
3859 | tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE))); | |
3860 | tcg_gen_or_tl(cpu_msr, cpu_msr, t0); | |
3861 | tcg_temp_free(t0); | |
be147d08 | 3862 | } else { |
056b05f8 JM |
3863 | /* XXX: we need to update nip before the store |
3864 | * if we enter power saving mode, we will exit the loop | |
3865 | * directly from ppc_store_msr | |
3866 | */ | |
be147d08 | 3867 | gen_update_nip(ctx, ctx->nip); |
d9bce9d9 | 3868 | #if defined(TARGET_PPC64) |
6527f6ea AJ |
3869 | if (!ctx->sf_mode) { |
3870 | TCGv t0 = tcg_temp_new(); | |
3871 | TCGv t1 = tcg_temp_new(); | |
3872 | tcg_gen_andi_tl(t0, cpu_msr, 0xFFFFFFFF00000000ULL); | |
3873 | tcg_gen_ext32u_tl(t1, cpu_gpr[rS(ctx->opcode)]); | |
3874 | tcg_gen_or_tl(t0, t0, t1); | |
3875 | tcg_temp_free(t1); | |
3876 | gen_helper_store_msr(t0); | |
3877 | tcg_temp_free(t0); | |
3878 | } else | |
d9bce9d9 | 3879 | #endif |
6527f6ea | 3880 | gen_helper_store_msr(cpu_gpr[rS(ctx->opcode)]); |
be147d08 | 3881 | /* Must stop the translation as machine state (may have) changed */ |
6527f6ea | 3882 | /* Note that mtmsr is not always defined as context-synchronizing */ |
e06fcd75 | 3883 | gen_stop_exception(ctx); |
be147d08 | 3884 | } |
9a64fbe4 | 3885 | #endif |
79aceca5 FB |
3886 | } |
3887 | ||
3888 | /* mtspr */ | |
99e300ef | 3889 | static void gen_mtspr(DisasContext *ctx) |
79aceca5 | 3890 | { |
45d827d2 | 3891 | void (*write_cb)(void *opaque, int sprn, int gprn); |
79aceca5 FB |
3892 | uint32_t sprn = SPR(ctx->opcode); |
3893 | ||
3fc6c082 | 3894 | #if !defined(CONFIG_USER_ONLY) |
76db3ba4 | 3895 | if (ctx->mem_idx == 2) |
be147d08 | 3896 | write_cb = ctx->spr_cb[sprn].hea_write; |
76db3ba4 | 3897 | else if (ctx->mem_idx) |
3fc6c082 FB |
3898 | write_cb = ctx->spr_cb[sprn].oea_write; |
3899 | else | |
9a64fbe4 | 3900 | #endif |
3fc6c082 | 3901 | write_cb = ctx->spr_cb[sprn].uea_write; |
76a66253 JM |
3902 | if (likely(write_cb != NULL)) { |
3903 | if (likely(write_cb != SPR_NOACCESS)) { | |
45d827d2 | 3904 | (*write_cb)(ctx, sprn, rS(ctx->opcode)); |
3fc6c082 FB |
3905 | } else { |
3906 | /* Privilege exception */ | |
93fcfe39 | 3907 | qemu_log("Trying to write privileged spr %d %03x at " |
90e189ec BS |
3908 | TARGET_FMT_lx "\n", sprn, sprn, ctx->nip); |
3909 | printf("Trying to write privileged spr %d %03x at " TARGET_FMT_lx | |
3910 | "\n", sprn, sprn, ctx->nip); | |
e06fcd75 | 3911 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
76a66253 | 3912 | } |
3fc6c082 FB |
3913 | } else { |
3914 | /* Not defined */ | |
93fcfe39 | 3915 | qemu_log("Trying to write invalid spr %d %03x at " |
90e189ec BS |
3916 | TARGET_FMT_lx "\n", sprn, sprn, ctx->nip); |
3917 | printf("Trying to write invalid spr %d %03x at " TARGET_FMT_lx "\n", | |
077fc206 | 3918 | sprn, sprn, ctx->nip); |
e06fcd75 | 3919 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR); |
79aceca5 | 3920 | } |
79aceca5 FB |
3921 | } |
3922 | ||
3923 | /*** Cache management ***/ | |
99e300ef | 3924 | |
54623277 | 3925 | /* dcbf */ |
99e300ef | 3926 | static void gen_dcbf(DisasContext *ctx) |
79aceca5 | 3927 | { |
dac454af | 3928 | /* XXX: specification says this is treated as a load by the MMU */ |
76db3ba4 AJ |
3929 | TCGv t0; |
3930 | gen_set_access_type(ctx, ACCESS_CACHE); | |
3931 | t0 = tcg_temp_new(); | |
3932 | gen_addr_reg_index(ctx, t0); | |
3933 | gen_qemu_ld8u(ctx, t0, t0); | |
fea0c503 | 3934 | tcg_temp_free(t0); |
79aceca5 FB |
3935 | } |
3936 | ||
3937 | /* dcbi (Supervisor only) */ | |
99e300ef | 3938 | static void gen_dcbi(DisasContext *ctx) |
79aceca5 | 3939 | { |
a541f297 | 3940 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 3941 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a541f297 | 3942 | #else |
b61f2753 | 3943 | TCGv EA, val; |
76db3ba4 | 3944 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 3945 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9fddaa0c | 3946 | return; |
9a64fbe4 | 3947 | } |
a7812ae4 | 3948 | EA = tcg_temp_new(); |
76db3ba4 AJ |
3949 | gen_set_access_type(ctx, ACCESS_CACHE); |
3950 | gen_addr_reg_index(ctx, EA); | |
a7812ae4 | 3951 | val = tcg_temp_new(); |
76a66253 | 3952 | /* XXX: specification says this should be treated as a store by the MMU */ |
76db3ba4 AJ |
3953 | gen_qemu_ld8u(ctx, val, EA); |
3954 | gen_qemu_st8(ctx, val, EA); | |
b61f2753 AJ |
3955 | tcg_temp_free(val); |
3956 | tcg_temp_free(EA); | |
a541f297 | 3957 | #endif |
79aceca5 FB |
3958 | } |
3959 | ||
3960 | /* dcdst */ | |
99e300ef | 3961 | static void gen_dcbst(DisasContext *ctx) |
79aceca5 | 3962 | { |
76a66253 | 3963 | /* XXX: specification say this is treated as a load by the MMU */ |
76db3ba4 AJ |
3964 | TCGv t0; |
3965 | gen_set_access_type(ctx, ACCESS_CACHE); | |
3966 | t0 = tcg_temp_new(); | |
3967 | gen_addr_reg_index(ctx, t0); | |
3968 | gen_qemu_ld8u(ctx, t0, t0); | |
fea0c503 | 3969 | tcg_temp_free(t0); |
79aceca5 FB |
3970 | } |
3971 | ||
3972 | /* dcbt */ | |
99e300ef | 3973 | static void gen_dcbt(DisasContext *ctx) |
79aceca5 | 3974 | { |
0db1b20e | 3975 | /* interpreted as no-op */ |
76a66253 JM |
3976 | /* XXX: specification say this is treated as a load by the MMU |
3977 | * but does not generate any exception | |
3978 | */ | |
79aceca5 FB |
3979 | } |
3980 | ||
3981 | /* dcbtst */ | |
99e300ef | 3982 | static void gen_dcbtst(DisasContext *ctx) |
79aceca5 | 3983 | { |
0db1b20e | 3984 | /* interpreted as no-op */ |
76a66253 JM |
3985 | /* XXX: specification say this is treated as a load by the MMU |
3986 | * but does not generate any exception | |
3987 | */ | |
79aceca5 FB |
3988 | } |
3989 | ||
3990 | /* dcbz */ | |
99e300ef | 3991 | static void gen_dcbz(DisasContext *ctx) |
79aceca5 | 3992 | { |
76db3ba4 AJ |
3993 | TCGv t0; |
3994 | gen_set_access_type(ctx, ACCESS_CACHE); | |
799a8c8d AJ |
3995 | /* NIP cannot be restored if the memory exception comes from an helper */ |
3996 | gen_update_nip(ctx, ctx->nip - 4); | |
76db3ba4 AJ |
3997 | t0 = tcg_temp_new(); |
3998 | gen_addr_reg_index(ctx, t0); | |
799a8c8d AJ |
3999 | gen_helper_dcbz(t0); |
4000 | tcg_temp_free(t0); | |
d63001d1 JM |
4001 | } |
4002 | ||
e8eaa2c0 | 4003 | static void gen_dcbz_970(DisasContext *ctx) |
d63001d1 | 4004 | { |
76db3ba4 AJ |
4005 | TCGv t0; |
4006 | gen_set_access_type(ctx, ACCESS_CACHE); | |
799a8c8d AJ |
4007 | /* NIP cannot be restored if the memory exception comes from an helper */ |
4008 | gen_update_nip(ctx, ctx->nip - 4); | |
76db3ba4 AJ |
4009 | t0 = tcg_temp_new(); |
4010 | gen_addr_reg_index(ctx, t0); | |
d63001d1 | 4011 | if (ctx->opcode & 0x00200000) |
799a8c8d | 4012 | gen_helper_dcbz(t0); |
d63001d1 | 4013 | else |
799a8c8d AJ |
4014 | gen_helper_dcbz_970(t0); |
4015 | tcg_temp_free(t0); | |
79aceca5 FB |
4016 | } |
4017 | ||
ae1c1a3d | 4018 | /* dst / dstt */ |
99e300ef | 4019 | static void gen_dst(DisasContext *ctx) |
ae1c1a3d AJ |
4020 | { |
4021 | if (rA(ctx->opcode) == 0) { | |
4022 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX); | |
4023 | } else { | |
4024 | /* interpreted as no-op */ | |
4025 | } | |
4026 | } | |
4027 | ||
4028 | /* dstst /dststt */ | |
99e300ef | 4029 | static void gen_dstst(DisasContext *ctx) |
ae1c1a3d AJ |
4030 | { |
4031 | if (rA(ctx->opcode) == 0) { | |
4032 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX); | |
4033 | } else { | |
4034 | /* interpreted as no-op */ | |
4035 | } | |
4036 | ||
4037 | } | |
4038 | ||
4039 | /* dss / dssall */ | |
99e300ef | 4040 | static void gen_dss(DisasContext *ctx) |
ae1c1a3d AJ |
4041 | { |
4042 | /* interpreted as no-op */ | |
4043 | } | |
4044 | ||
79aceca5 | 4045 | /* icbi */ |
99e300ef | 4046 | static void gen_icbi(DisasContext *ctx) |
79aceca5 | 4047 | { |
76db3ba4 AJ |
4048 | TCGv t0; |
4049 | gen_set_access_type(ctx, ACCESS_CACHE); | |
30032c94 JM |
4050 | /* NIP cannot be restored if the memory exception comes from an helper */ |
4051 | gen_update_nip(ctx, ctx->nip - 4); | |
76db3ba4 AJ |
4052 | t0 = tcg_temp_new(); |
4053 | gen_addr_reg_index(ctx, t0); | |
37d269df AJ |
4054 | gen_helper_icbi(t0); |
4055 | tcg_temp_free(t0); | |
79aceca5 FB |
4056 | } |
4057 | ||
4058 | /* Optional: */ | |
4059 | /* dcba */ | |
99e300ef | 4060 | static void gen_dcba(DisasContext *ctx) |
79aceca5 | 4061 | { |
0db1b20e JM |
4062 | /* interpreted as no-op */ |
4063 | /* XXX: specification say this is treated as a store by the MMU | |
4064 | * but does not generate any exception | |
4065 | */ | |
79aceca5 FB |
4066 | } |
4067 | ||
4068 | /*** Segment register manipulation ***/ | |
4069 | /* Supervisor only: */ | |
99e300ef | 4070 | |
54623277 | 4071 | /* mfsr */ |
99e300ef | 4072 | static void gen_mfsr(DisasContext *ctx) |
79aceca5 | 4073 | { |
9a64fbe4 | 4074 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4075 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9a64fbe4 | 4076 | #else |
74d37793 | 4077 | TCGv t0; |
76db3ba4 | 4078 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4079 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9fddaa0c | 4080 | return; |
9a64fbe4 | 4081 | } |
74d37793 AJ |
4082 | t0 = tcg_const_tl(SR(ctx->opcode)); |
4083 | gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], t0); | |
4084 | tcg_temp_free(t0); | |
9a64fbe4 | 4085 | #endif |
79aceca5 FB |
4086 | } |
4087 | ||
4088 | /* mfsrin */ | |
99e300ef | 4089 | static void gen_mfsrin(DisasContext *ctx) |
79aceca5 | 4090 | { |
9a64fbe4 | 4091 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4092 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9a64fbe4 | 4093 | #else |
74d37793 | 4094 | TCGv t0; |
76db3ba4 | 4095 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4096 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9fddaa0c | 4097 | return; |
9a64fbe4 | 4098 | } |
74d37793 AJ |
4099 | t0 = tcg_temp_new(); |
4100 | tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28); | |
4101 | tcg_gen_andi_tl(t0, t0, 0xF); | |
4102 | gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], t0); | |
4103 | tcg_temp_free(t0); | |
9a64fbe4 | 4104 | #endif |
79aceca5 FB |
4105 | } |
4106 | ||
4107 | /* mtsr */ | |
99e300ef | 4108 | static void gen_mtsr(DisasContext *ctx) |
79aceca5 | 4109 | { |
9a64fbe4 | 4110 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4111 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9a64fbe4 | 4112 | #else |
74d37793 | 4113 | TCGv t0; |
76db3ba4 | 4114 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4115 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9fddaa0c | 4116 | return; |
9a64fbe4 | 4117 | } |
74d37793 AJ |
4118 | t0 = tcg_const_tl(SR(ctx->opcode)); |
4119 | gen_helper_store_sr(t0, cpu_gpr[rS(ctx->opcode)]); | |
4120 | tcg_temp_free(t0); | |
9a64fbe4 | 4121 | #endif |
79aceca5 FB |
4122 | } |
4123 | ||
4124 | /* mtsrin */ | |
99e300ef | 4125 | static void gen_mtsrin(DisasContext *ctx) |
79aceca5 | 4126 | { |
9a64fbe4 | 4127 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4128 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9a64fbe4 | 4129 | #else |
74d37793 | 4130 | TCGv t0; |
76db3ba4 | 4131 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4132 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
9fddaa0c | 4133 | return; |
9a64fbe4 | 4134 | } |
74d37793 AJ |
4135 | t0 = tcg_temp_new(); |
4136 | tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28); | |
4137 | tcg_gen_andi_tl(t0, t0, 0xF); | |
4138 | gen_helper_store_sr(t0, cpu_gpr[rD(ctx->opcode)]); | |
4139 | tcg_temp_free(t0); | |
9a64fbe4 | 4140 | #endif |
79aceca5 FB |
4141 | } |
4142 | ||
12de9a39 JM |
4143 | #if defined(TARGET_PPC64) |
4144 | /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */ | |
e8eaa2c0 | 4145 | |
54623277 | 4146 | /* mfsr */ |
e8eaa2c0 | 4147 | static void gen_mfsr_64b(DisasContext *ctx) |
12de9a39 JM |
4148 | { |
4149 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 4150 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 | 4151 | #else |
74d37793 | 4152 | TCGv t0; |
76db3ba4 | 4153 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4154 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 JM |
4155 | return; |
4156 | } | |
74d37793 | 4157 | t0 = tcg_const_tl(SR(ctx->opcode)); |
f6b868fc | 4158 | gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], t0); |
74d37793 | 4159 | tcg_temp_free(t0); |
12de9a39 JM |
4160 | #endif |
4161 | } | |
4162 | ||
4163 | /* mfsrin */ | |
e8eaa2c0 | 4164 | static void gen_mfsrin_64b(DisasContext *ctx) |
12de9a39 JM |
4165 | { |
4166 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 4167 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 | 4168 | #else |
74d37793 | 4169 | TCGv t0; |
76db3ba4 | 4170 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4171 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 JM |
4172 | return; |
4173 | } | |
74d37793 AJ |
4174 | t0 = tcg_temp_new(); |
4175 | tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28); | |
4176 | tcg_gen_andi_tl(t0, t0, 0xF); | |
f6b868fc | 4177 | gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], t0); |
74d37793 | 4178 | tcg_temp_free(t0); |
12de9a39 JM |
4179 | #endif |
4180 | } | |
4181 | ||
4182 | /* mtsr */ | |
e8eaa2c0 | 4183 | static void gen_mtsr_64b(DisasContext *ctx) |
12de9a39 JM |
4184 | { |
4185 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 4186 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 | 4187 | #else |
74d37793 | 4188 | TCGv t0; |
76db3ba4 | 4189 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4190 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 JM |
4191 | return; |
4192 | } | |
74d37793 | 4193 | t0 = tcg_const_tl(SR(ctx->opcode)); |
f6b868fc | 4194 | gen_helper_store_sr(t0, cpu_gpr[rS(ctx->opcode)]); |
74d37793 | 4195 | tcg_temp_free(t0); |
12de9a39 JM |
4196 | #endif |
4197 | } | |
4198 | ||
4199 | /* mtsrin */ | |
e8eaa2c0 | 4200 | static void gen_mtsrin_64b(DisasContext *ctx) |
12de9a39 JM |
4201 | { |
4202 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 4203 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 | 4204 | #else |
74d37793 | 4205 | TCGv t0; |
76db3ba4 | 4206 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4207 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
12de9a39 JM |
4208 | return; |
4209 | } | |
74d37793 AJ |
4210 | t0 = tcg_temp_new(); |
4211 | tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28); | |
4212 | tcg_gen_andi_tl(t0, t0, 0xF); | |
f6b868fc | 4213 | gen_helper_store_sr(t0, cpu_gpr[rS(ctx->opcode)]); |
74d37793 | 4214 | tcg_temp_free(t0); |
12de9a39 JM |
4215 | #endif |
4216 | } | |
f6b868fc BS |
4217 | |
4218 | /* slbmte */ | |
e8eaa2c0 | 4219 | static void gen_slbmte(DisasContext *ctx) |
f6b868fc BS |
4220 | { |
4221 | #if defined(CONFIG_USER_ONLY) | |
4222 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); | |
4223 | #else | |
4224 | if (unlikely(!ctx->mem_idx)) { | |
4225 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); | |
4226 | return; | |
4227 | } | |
4228 | gen_helper_store_slb(cpu_gpr[rB(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
4229 | #endif | |
4230 | } | |
4231 | ||
12de9a39 JM |
4232 | #endif /* defined(TARGET_PPC64) */ |
4233 | ||
79aceca5 | 4234 | /*** Lookaside buffer management ***/ |
76db3ba4 | 4235 | /* Optional & mem_idx only: */ |
99e300ef | 4236 | |
54623277 | 4237 | /* tlbia */ |
99e300ef | 4238 | static void gen_tlbia(DisasContext *ctx) |
79aceca5 | 4239 | { |
9a64fbe4 | 4240 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4241 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9a64fbe4 | 4242 | #else |
76db3ba4 | 4243 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4244 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9fddaa0c | 4245 | return; |
9a64fbe4 | 4246 | } |
74d37793 | 4247 | gen_helper_tlbia(); |
9a64fbe4 | 4248 | #endif |
79aceca5 FB |
4249 | } |
4250 | ||
bf14b1ce | 4251 | /* tlbiel */ |
99e300ef | 4252 | static void gen_tlbiel(DisasContext *ctx) |
bf14b1ce BS |
4253 | { |
4254 | #if defined(CONFIG_USER_ONLY) | |
4255 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); | |
4256 | #else | |
4257 | if (unlikely(!ctx->mem_idx)) { | |
4258 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); | |
4259 | return; | |
4260 | } | |
4261 | gen_helper_tlbie(cpu_gpr[rB(ctx->opcode)]); | |
4262 | #endif | |
4263 | } | |
4264 | ||
79aceca5 | 4265 | /* tlbie */ |
99e300ef | 4266 | static void gen_tlbie(DisasContext *ctx) |
79aceca5 | 4267 | { |
9a64fbe4 | 4268 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4269 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9a64fbe4 | 4270 | #else |
76db3ba4 | 4271 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4272 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9fddaa0c | 4273 | return; |
9a64fbe4 | 4274 | } |
d9bce9d9 | 4275 | #if defined(TARGET_PPC64) |
74d37793 AJ |
4276 | if (!ctx->sf_mode) { |
4277 | TCGv t0 = tcg_temp_new(); | |
4278 | tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]); | |
4279 | gen_helper_tlbie(t0); | |
4280 | tcg_temp_free(t0); | |
4281 | } else | |
d9bce9d9 | 4282 | #endif |
74d37793 | 4283 | gen_helper_tlbie(cpu_gpr[rB(ctx->opcode)]); |
9a64fbe4 | 4284 | #endif |
79aceca5 FB |
4285 | } |
4286 | ||
4287 | /* tlbsync */ | |
99e300ef | 4288 | static void gen_tlbsync(DisasContext *ctx) |
79aceca5 | 4289 | { |
9a64fbe4 | 4290 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 4291 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9a64fbe4 | 4292 | #else |
76db3ba4 | 4293 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4294 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
9fddaa0c | 4295 | return; |
9a64fbe4 FB |
4296 | } |
4297 | /* This has no effect: it should ensure that all previous | |
4298 | * tlbie have completed | |
4299 | */ | |
e06fcd75 | 4300 | gen_stop_exception(ctx); |
9a64fbe4 | 4301 | #endif |
79aceca5 FB |
4302 | } |
4303 | ||
426613db JM |
4304 | #if defined(TARGET_PPC64) |
4305 | /* slbia */ | |
99e300ef | 4306 | static void gen_slbia(DisasContext *ctx) |
426613db JM |
4307 | { |
4308 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 4309 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
426613db | 4310 | #else |
76db3ba4 | 4311 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4312 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
426613db JM |
4313 | return; |
4314 | } | |
74d37793 | 4315 | gen_helper_slbia(); |
426613db JM |
4316 | #endif |
4317 | } | |
4318 | ||
4319 | /* slbie */ | |
99e300ef | 4320 | static void gen_slbie(DisasContext *ctx) |
426613db JM |
4321 | { |
4322 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 4323 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
426613db | 4324 | #else |
76db3ba4 | 4325 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 4326 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
426613db JM |
4327 | return; |
4328 | } | |
74d37793 | 4329 | gen_helper_slbie(cpu_gpr[rB(ctx->opcode)]); |
426613db JM |
4330 | #endif |
4331 | } | |
4332 | #endif | |
4333 | ||
79aceca5 FB |
4334 | /*** External control ***/ |
4335 | /* Optional: */ | |
99e300ef | 4336 | |
54623277 | 4337 | /* eciwx */ |
99e300ef | 4338 | static void gen_eciwx(DisasContext *ctx) |
79aceca5 | 4339 | { |
76db3ba4 | 4340 | TCGv t0; |
fa407c03 | 4341 | /* Should check EAR[E] ! */ |
76db3ba4 AJ |
4342 | gen_set_access_type(ctx, ACCESS_EXT); |
4343 | t0 = tcg_temp_new(); | |
4344 | gen_addr_reg_index(ctx, t0); | |
fa407c03 | 4345 | gen_check_align(ctx, t0, 0x03); |
76db3ba4 | 4346 | gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], t0); |
fa407c03 | 4347 | tcg_temp_free(t0); |
76a66253 JM |
4348 | } |
4349 | ||
4350 | /* ecowx */ | |
99e300ef | 4351 | static void gen_ecowx(DisasContext *ctx) |
76a66253 | 4352 | { |
76db3ba4 | 4353 | TCGv t0; |
fa407c03 | 4354 | /* Should check EAR[E] ! */ |
76db3ba4 AJ |
4355 | gen_set_access_type(ctx, ACCESS_EXT); |
4356 | t0 = tcg_temp_new(); | |
4357 | gen_addr_reg_index(ctx, t0); | |
fa407c03 | 4358 | gen_check_align(ctx, t0, 0x03); |
76db3ba4 | 4359 | gen_qemu_st32(ctx, cpu_gpr[rD(ctx->opcode)], t0); |
fa407c03 | 4360 | tcg_temp_free(t0); |
76a66253 JM |
4361 | } |
4362 | ||
4363 | /* PowerPC 601 specific instructions */ | |
99e300ef | 4364 | |
54623277 | 4365 | /* abs - abs. */ |
99e300ef | 4366 | static void gen_abs(DisasContext *ctx) |
76a66253 | 4367 | { |
22e0e173 AJ |
4368 | int l1 = gen_new_label(); |
4369 | int l2 = gen_new_label(); | |
4370 | tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l1); | |
4371 | tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4372 | tcg_gen_br(l2); | |
4373 | gen_set_label(l1); | |
4374 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4375 | gen_set_label(l2); | |
76a66253 | 4376 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4377 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4378 | } |
4379 | ||
4380 | /* abso - abso. */ | |
99e300ef | 4381 | static void gen_abso(DisasContext *ctx) |
76a66253 | 4382 | { |
22e0e173 AJ |
4383 | int l1 = gen_new_label(); |
4384 | int l2 = gen_new_label(); | |
4385 | int l3 = gen_new_label(); | |
4386 | /* Start with XER OV disabled, the most likely case */ | |
4387 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
4388 | tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l2); | |
4389 | tcg_gen_brcondi_tl(TCG_COND_NE, cpu_gpr[rA(ctx->opcode)], 0x80000000, l1); | |
4390 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
4391 | tcg_gen_br(l2); | |
4392 | gen_set_label(l1); | |
4393 | tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4394 | tcg_gen_br(l3); | |
4395 | gen_set_label(l2); | |
4396 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4397 | gen_set_label(l3); | |
76a66253 | 4398 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4399 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4400 | } |
4401 | ||
4402 | /* clcs */ | |
99e300ef | 4403 | static void gen_clcs(DisasContext *ctx) |
76a66253 | 4404 | { |
22e0e173 AJ |
4405 | TCGv_i32 t0 = tcg_const_i32(rA(ctx->opcode)); |
4406 | gen_helper_clcs(cpu_gpr[rD(ctx->opcode)], t0); | |
4407 | tcg_temp_free_i32(t0); | |
c7697e1f | 4408 | /* Rc=1 sets CR0 to an undefined state */ |
76a66253 JM |
4409 | } |
4410 | ||
4411 | /* div - div. */ | |
99e300ef | 4412 | static void gen_div(DisasContext *ctx) |
76a66253 | 4413 | { |
22e0e173 | 4414 | gen_helper_div(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
76a66253 | 4415 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4416 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4417 | } |
4418 | ||
4419 | /* divo - divo. */ | |
99e300ef | 4420 | static void gen_divo(DisasContext *ctx) |
76a66253 | 4421 | { |
22e0e173 | 4422 | gen_helper_divo(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
76a66253 | 4423 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4424 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4425 | } |
4426 | ||
4427 | /* divs - divs. */ | |
99e300ef | 4428 | static void gen_divs(DisasContext *ctx) |
76a66253 | 4429 | { |
22e0e173 | 4430 | gen_helper_divs(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
76a66253 | 4431 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4432 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4433 | } |
4434 | ||
4435 | /* divso - divso. */ | |
99e300ef | 4436 | static void gen_divso(DisasContext *ctx) |
76a66253 | 4437 | { |
22e0e173 | 4438 | gen_helper_divso(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
76a66253 | 4439 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4440 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4441 | } |
4442 | ||
4443 | /* doz - doz. */ | |
99e300ef | 4444 | static void gen_doz(DisasContext *ctx) |
76a66253 | 4445 | { |
22e0e173 AJ |
4446 | int l1 = gen_new_label(); |
4447 | int l2 = gen_new_label(); | |
4448 | tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1); | |
4449 | tcg_gen_sub_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4450 | tcg_gen_br(l2); | |
4451 | gen_set_label(l1); | |
4452 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0); | |
4453 | gen_set_label(l2); | |
76a66253 | 4454 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4455 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4456 | } |
4457 | ||
4458 | /* dozo - dozo. */ | |
99e300ef | 4459 | static void gen_dozo(DisasContext *ctx) |
76a66253 | 4460 | { |
22e0e173 AJ |
4461 | int l1 = gen_new_label(); |
4462 | int l2 = gen_new_label(); | |
4463 | TCGv t0 = tcg_temp_new(); | |
4464 | TCGv t1 = tcg_temp_new(); | |
4465 | TCGv t2 = tcg_temp_new(); | |
4466 | /* Start with XER OV disabled, the most likely case */ | |
4467 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
4468 | tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1); | |
4469 | tcg_gen_sub_tl(t0, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4470 | tcg_gen_xor_tl(t1, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4471 | tcg_gen_xor_tl(t2, cpu_gpr[rA(ctx->opcode)], t0); | |
4472 | tcg_gen_andc_tl(t1, t1, t2); | |
4473 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
4474 | tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2); | |
4475 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
4476 | tcg_gen_br(l2); | |
4477 | gen_set_label(l1); | |
4478 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0); | |
4479 | gen_set_label(l2); | |
4480 | tcg_temp_free(t0); | |
4481 | tcg_temp_free(t1); | |
4482 | tcg_temp_free(t2); | |
76a66253 | 4483 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4484 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4485 | } |
4486 | ||
4487 | /* dozi */ | |
99e300ef | 4488 | static void gen_dozi(DisasContext *ctx) |
76a66253 | 4489 | { |
22e0e173 AJ |
4490 | target_long simm = SIMM(ctx->opcode); |
4491 | int l1 = gen_new_label(); | |
4492 | int l2 = gen_new_label(); | |
4493 | tcg_gen_brcondi_tl(TCG_COND_LT, cpu_gpr[rA(ctx->opcode)], simm, l1); | |
4494 | tcg_gen_subfi_tl(cpu_gpr[rD(ctx->opcode)], simm, cpu_gpr[rA(ctx->opcode)]); | |
4495 | tcg_gen_br(l2); | |
4496 | gen_set_label(l1); | |
4497 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0); | |
4498 | gen_set_label(l2); | |
4499 | if (unlikely(Rc(ctx->opcode) != 0)) | |
4500 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); | |
76a66253 JM |
4501 | } |
4502 | ||
76a66253 | 4503 | /* lscbx - lscbx. */ |
99e300ef | 4504 | static void gen_lscbx(DisasContext *ctx) |
76a66253 | 4505 | { |
bdb4b689 AJ |
4506 | TCGv t0 = tcg_temp_new(); |
4507 | TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode)); | |
4508 | TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode)); | |
4509 | TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode)); | |
76a66253 | 4510 | |
76db3ba4 | 4511 | gen_addr_reg_index(ctx, t0); |
76a66253 | 4512 | /* NIP cannot be restored if the memory exception comes from an helper */ |
d9bce9d9 | 4513 | gen_update_nip(ctx, ctx->nip - 4); |
bdb4b689 AJ |
4514 | gen_helper_lscbx(t0, t0, t1, t2, t3); |
4515 | tcg_temp_free_i32(t1); | |
4516 | tcg_temp_free_i32(t2); | |
4517 | tcg_temp_free_i32(t3); | |
3d7b417e | 4518 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~0x7F); |
bdb4b689 | 4519 | tcg_gen_or_tl(cpu_xer, cpu_xer, t0); |
76a66253 | 4520 | if (unlikely(Rc(ctx->opcode) != 0)) |
bdb4b689 AJ |
4521 | gen_set_Rc0(ctx, t0); |
4522 | tcg_temp_free(t0); | |
76a66253 JM |
4523 | } |
4524 | ||
4525 | /* maskg - maskg. */ | |
99e300ef | 4526 | static void gen_maskg(DisasContext *ctx) |
76a66253 | 4527 | { |
22e0e173 AJ |
4528 | int l1 = gen_new_label(); |
4529 | TCGv t0 = tcg_temp_new(); | |
4530 | TCGv t1 = tcg_temp_new(); | |
4531 | TCGv t2 = tcg_temp_new(); | |
4532 | TCGv t3 = tcg_temp_new(); | |
4533 | tcg_gen_movi_tl(t3, 0xFFFFFFFF); | |
4534 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4535 | tcg_gen_andi_tl(t1, cpu_gpr[rS(ctx->opcode)], 0x1F); | |
4536 | tcg_gen_addi_tl(t2, t0, 1); | |
4537 | tcg_gen_shr_tl(t2, t3, t2); | |
4538 | tcg_gen_shr_tl(t3, t3, t1); | |
4539 | tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], t2, t3); | |
4540 | tcg_gen_brcond_tl(TCG_COND_GE, t0, t1, l1); | |
4541 | tcg_gen_neg_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4542 | gen_set_label(l1); | |
4543 | tcg_temp_free(t0); | |
4544 | tcg_temp_free(t1); | |
4545 | tcg_temp_free(t2); | |
4546 | tcg_temp_free(t3); | |
76a66253 | 4547 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4548 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4549 | } |
4550 | ||
4551 | /* maskir - maskir. */ | |
99e300ef | 4552 | static void gen_maskir(DisasContext *ctx) |
76a66253 | 4553 | { |
22e0e173 AJ |
4554 | TCGv t0 = tcg_temp_new(); |
4555 | TCGv t1 = tcg_temp_new(); | |
4556 | tcg_gen_and_tl(t0, cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
4557 | tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
4558 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4559 | tcg_temp_free(t0); | |
4560 | tcg_temp_free(t1); | |
76a66253 | 4561 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4562 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4563 | } |
4564 | ||
4565 | /* mul - mul. */ | |
99e300ef | 4566 | static void gen_mul(DisasContext *ctx) |
76a66253 | 4567 | { |
22e0e173 AJ |
4568 | TCGv_i64 t0 = tcg_temp_new_i64(); |
4569 | TCGv_i64 t1 = tcg_temp_new_i64(); | |
4570 | TCGv t2 = tcg_temp_new(); | |
4571 | tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]); | |
4572 | tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
4573 | tcg_gen_mul_i64(t0, t0, t1); | |
4574 | tcg_gen_trunc_i64_tl(t2, t0); | |
4575 | gen_store_spr(SPR_MQ, t2); | |
4576 | tcg_gen_shri_i64(t1, t0, 32); | |
4577 | tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1); | |
4578 | tcg_temp_free_i64(t0); | |
4579 | tcg_temp_free_i64(t1); | |
4580 | tcg_temp_free(t2); | |
76a66253 | 4581 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4582 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4583 | } |
4584 | ||
4585 | /* mulo - mulo. */ | |
99e300ef | 4586 | static void gen_mulo(DisasContext *ctx) |
76a66253 | 4587 | { |
22e0e173 AJ |
4588 | int l1 = gen_new_label(); |
4589 | TCGv_i64 t0 = tcg_temp_new_i64(); | |
4590 | TCGv_i64 t1 = tcg_temp_new_i64(); | |
4591 | TCGv t2 = tcg_temp_new(); | |
4592 | /* Start with XER OV disabled, the most likely case */ | |
4593 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
4594 | tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]); | |
4595 | tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]); | |
4596 | tcg_gen_mul_i64(t0, t0, t1); | |
4597 | tcg_gen_trunc_i64_tl(t2, t0); | |
4598 | gen_store_spr(SPR_MQ, t2); | |
4599 | tcg_gen_shri_i64(t1, t0, 32); | |
4600 | tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1); | |
4601 | tcg_gen_ext32s_i64(t1, t0); | |
4602 | tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1); | |
4603 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
4604 | gen_set_label(l1); | |
4605 | tcg_temp_free_i64(t0); | |
4606 | tcg_temp_free_i64(t1); | |
4607 | tcg_temp_free(t2); | |
76a66253 | 4608 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4609 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4610 | } |
4611 | ||
4612 | /* nabs - nabs. */ | |
99e300ef | 4613 | static void gen_nabs(DisasContext *ctx) |
76a66253 | 4614 | { |
22e0e173 AJ |
4615 | int l1 = gen_new_label(); |
4616 | int l2 = gen_new_label(); | |
4617 | tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1); | |
4618 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4619 | tcg_gen_br(l2); | |
4620 | gen_set_label(l1); | |
4621 | tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4622 | gen_set_label(l2); | |
76a66253 | 4623 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4624 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4625 | } |
4626 | ||
4627 | /* nabso - nabso. */ | |
99e300ef | 4628 | static void gen_nabso(DisasContext *ctx) |
76a66253 | 4629 | { |
22e0e173 AJ |
4630 | int l1 = gen_new_label(); |
4631 | int l2 = gen_new_label(); | |
4632 | tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1); | |
4633 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4634 | tcg_gen_br(l2); | |
4635 | gen_set_label(l1); | |
4636 | tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
4637 | gen_set_label(l2); | |
4638 | /* nabs never overflows */ | |
4639 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
76a66253 | 4640 | if (unlikely(Rc(ctx->opcode) != 0)) |
22e0e173 | 4641 | gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); |
76a66253 JM |
4642 | } |
4643 | ||
4644 | /* rlmi - rlmi. */ | |
99e300ef | 4645 | static void gen_rlmi(DisasContext *ctx) |
76a66253 | 4646 | { |
7487953d AJ |
4647 | uint32_t mb = MB(ctx->opcode); |
4648 | uint32_t me = ME(ctx->opcode); | |
4649 | TCGv t0 = tcg_temp_new(); | |
4650 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4651 | tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0); | |
4652 | tcg_gen_andi_tl(t0, t0, MASK(mb, me)); | |
4653 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~MASK(mb, me)); | |
4654 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], t0); | |
4655 | tcg_temp_free(t0); | |
76a66253 | 4656 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4657 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4658 | } |
4659 | ||
4660 | /* rrib - rrib. */ | |
99e300ef | 4661 | static void gen_rrib(DisasContext *ctx) |
76a66253 | 4662 | { |
7487953d AJ |
4663 | TCGv t0 = tcg_temp_new(); |
4664 | TCGv t1 = tcg_temp_new(); | |
4665 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4666 | tcg_gen_movi_tl(t1, 0x80000000); | |
4667 | tcg_gen_shr_tl(t1, t1, t0); | |
4668 | tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0); | |
4669 | tcg_gen_and_tl(t0, t0, t1); | |
4670 | tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], t1); | |
4671 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4672 | tcg_temp_free(t0); | |
4673 | tcg_temp_free(t1); | |
76a66253 | 4674 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4675 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4676 | } |
4677 | ||
4678 | /* sle - sle. */ | |
99e300ef | 4679 | static void gen_sle(DisasContext *ctx) |
76a66253 | 4680 | { |
7487953d AJ |
4681 | TCGv t0 = tcg_temp_new(); |
4682 | TCGv t1 = tcg_temp_new(); | |
4683 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4684 | tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1); | |
4685 | tcg_gen_subfi_tl(t1, 32, t1); | |
4686 | tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1); | |
4687 | tcg_gen_or_tl(t1, t0, t1); | |
4688 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
4689 | gen_store_spr(SPR_MQ, t1); | |
4690 | tcg_temp_free(t0); | |
4691 | tcg_temp_free(t1); | |
76a66253 | 4692 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4693 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4694 | } |
4695 | ||
4696 | /* sleq - sleq. */ | |
99e300ef | 4697 | static void gen_sleq(DisasContext *ctx) |
76a66253 | 4698 | { |
7487953d AJ |
4699 | TCGv t0 = tcg_temp_new(); |
4700 | TCGv t1 = tcg_temp_new(); | |
4701 | TCGv t2 = tcg_temp_new(); | |
4702 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4703 | tcg_gen_movi_tl(t2, 0xFFFFFFFF); | |
4704 | tcg_gen_shl_tl(t2, t2, t0); | |
4705 | tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0); | |
4706 | gen_load_spr(t1, SPR_MQ); | |
4707 | gen_store_spr(SPR_MQ, t0); | |
4708 | tcg_gen_and_tl(t0, t0, t2); | |
4709 | tcg_gen_andc_tl(t1, t1, t2); | |
4710 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4711 | tcg_temp_free(t0); | |
4712 | tcg_temp_free(t1); | |
4713 | tcg_temp_free(t2); | |
76a66253 | 4714 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4715 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4716 | } |
4717 | ||
4718 | /* sliq - sliq. */ | |
99e300ef | 4719 | static void gen_sliq(DisasContext *ctx) |
76a66253 | 4720 | { |
7487953d AJ |
4721 | int sh = SH(ctx->opcode); |
4722 | TCGv t0 = tcg_temp_new(); | |
4723 | TCGv t1 = tcg_temp_new(); | |
4724 | tcg_gen_shli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
4725 | tcg_gen_shri_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh); | |
4726 | tcg_gen_or_tl(t1, t0, t1); | |
4727 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
4728 | gen_store_spr(SPR_MQ, t1); | |
4729 | tcg_temp_free(t0); | |
4730 | tcg_temp_free(t1); | |
76a66253 | 4731 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4732 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4733 | } |
4734 | ||
4735 | /* slliq - slliq. */ | |
99e300ef | 4736 | static void gen_slliq(DisasContext *ctx) |
76a66253 | 4737 | { |
7487953d AJ |
4738 | int sh = SH(ctx->opcode); |
4739 | TCGv t0 = tcg_temp_new(); | |
4740 | TCGv t1 = tcg_temp_new(); | |
4741 | tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
4742 | gen_load_spr(t1, SPR_MQ); | |
4743 | gen_store_spr(SPR_MQ, t0); | |
4744 | tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU << sh)); | |
4745 | tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU << sh)); | |
4746 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4747 | tcg_temp_free(t0); | |
4748 | tcg_temp_free(t1); | |
76a66253 | 4749 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4750 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4751 | } |
4752 | ||
4753 | /* sllq - sllq. */ | |
99e300ef | 4754 | static void gen_sllq(DisasContext *ctx) |
76a66253 | 4755 | { |
7487953d AJ |
4756 | int l1 = gen_new_label(); |
4757 | int l2 = gen_new_label(); | |
4758 | TCGv t0 = tcg_temp_local_new(); | |
4759 | TCGv t1 = tcg_temp_local_new(); | |
4760 | TCGv t2 = tcg_temp_local_new(); | |
4761 | tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4762 | tcg_gen_movi_tl(t1, 0xFFFFFFFF); | |
4763 | tcg_gen_shl_tl(t1, t1, t2); | |
4764 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20); | |
4765 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); | |
4766 | gen_load_spr(t0, SPR_MQ); | |
4767 | tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4768 | tcg_gen_br(l2); | |
4769 | gen_set_label(l1); | |
4770 | tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t2); | |
4771 | gen_load_spr(t2, SPR_MQ); | |
4772 | tcg_gen_andc_tl(t1, t2, t1); | |
4773 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4774 | gen_set_label(l2); | |
4775 | tcg_temp_free(t0); | |
4776 | tcg_temp_free(t1); | |
4777 | tcg_temp_free(t2); | |
76a66253 | 4778 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4779 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4780 | } |
4781 | ||
4782 | /* slq - slq. */ | |
99e300ef | 4783 | static void gen_slq(DisasContext *ctx) |
76a66253 | 4784 | { |
7487953d AJ |
4785 | int l1 = gen_new_label(); |
4786 | TCGv t0 = tcg_temp_new(); | |
4787 | TCGv t1 = tcg_temp_new(); | |
4788 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4789 | tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1); | |
4790 | tcg_gen_subfi_tl(t1, 32, t1); | |
4791 | tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1); | |
4792 | tcg_gen_or_tl(t1, t0, t1); | |
4793 | gen_store_spr(SPR_MQ, t1); | |
4794 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20); | |
4795 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
4796 | tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1); | |
4797 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); | |
4798 | gen_set_label(l1); | |
4799 | tcg_temp_free(t0); | |
4800 | tcg_temp_free(t1); | |
76a66253 | 4801 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4802 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4803 | } |
4804 | ||
d9bce9d9 | 4805 | /* sraiq - sraiq. */ |
99e300ef | 4806 | static void gen_sraiq(DisasContext *ctx) |
76a66253 | 4807 | { |
7487953d AJ |
4808 | int sh = SH(ctx->opcode); |
4809 | int l1 = gen_new_label(); | |
4810 | TCGv t0 = tcg_temp_new(); | |
4811 | TCGv t1 = tcg_temp_new(); | |
4812 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
4813 | tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh); | |
4814 | tcg_gen_or_tl(t0, t0, t1); | |
4815 | gen_store_spr(SPR_MQ, t0); | |
4816 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); | |
4817 | tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1); | |
4818 | tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1); | |
4819 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_CA)); | |
4820 | gen_set_label(l1); | |
4821 | tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh); | |
4822 | tcg_temp_free(t0); | |
4823 | tcg_temp_free(t1); | |
76a66253 | 4824 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4825 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4826 | } |
4827 | ||
4828 | /* sraq - sraq. */ | |
99e300ef | 4829 | static void gen_sraq(DisasContext *ctx) |
76a66253 | 4830 | { |
7487953d AJ |
4831 | int l1 = gen_new_label(); |
4832 | int l2 = gen_new_label(); | |
4833 | TCGv t0 = tcg_temp_new(); | |
4834 | TCGv t1 = tcg_temp_local_new(); | |
4835 | TCGv t2 = tcg_temp_local_new(); | |
4836 | tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4837 | tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2); | |
4838 | tcg_gen_sar_tl(t1, cpu_gpr[rS(ctx->opcode)], t2); | |
4839 | tcg_gen_subfi_tl(t2, 32, t2); | |
4840 | tcg_gen_shl_tl(t2, cpu_gpr[rS(ctx->opcode)], t2); | |
4841 | tcg_gen_or_tl(t0, t0, t2); | |
4842 | gen_store_spr(SPR_MQ, t0); | |
4843 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20); | |
4844 | tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l1); | |
4845 | tcg_gen_mov_tl(t2, cpu_gpr[rS(ctx->opcode)]); | |
4846 | tcg_gen_sari_tl(t1, cpu_gpr[rS(ctx->opcode)], 31); | |
4847 | gen_set_label(l1); | |
4848 | tcg_temp_free(t0); | |
4849 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t1); | |
4850 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA)); | |
4851 | tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2); | |
4852 | tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l2); | |
4853 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_CA)); | |
4854 | gen_set_label(l2); | |
4855 | tcg_temp_free(t1); | |
4856 | tcg_temp_free(t2); | |
76a66253 | 4857 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4858 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4859 | } |
4860 | ||
4861 | /* sre - sre. */ | |
99e300ef | 4862 | static void gen_sre(DisasContext *ctx) |
76a66253 | 4863 | { |
7487953d AJ |
4864 | TCGv t0 = tcg_temp_new(); |
4865 | TCGv t1 = tcg_temp_new(); | |
4866 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4867 | tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1); | |
4868 | tcg_gen_subfi_tl(t1, 32, t1); | |
4869 | tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1); | |
4870 | tcg_gen_or_tl(t1, t0, t1); | |
4871 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
4872 | gen_store_spr(SPR_MQ, t1); | |
4873 | tcg_temp_free(t0); | |
4874 | tcg_temp_free(t1); | |
76a66253 | 4875 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4876 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4877 | } |
4878 | ||
4879 | /* srea - srea. */ | |
99e300ef | 4880 | static void gen_srea(DisasContext *ctx) |
76a66253 | 4881 | { |
7487953d AJ |
4882 | TCGv t0 = tcg_temp_new(); |
4883 | TCGv t1 = tcg_temp_new(); | |
4884 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4885 | tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1); | |
4886 | gen_store_spr(SPR_MQ, t0); | |
4887 | tcg_gen_sar_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t1); | |
4888 | tcg_temp_free(t0); | |
4889 | tcg_temp_free(t1); | |
76a66253 | 4890 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4891 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4892 | } |
4893 | ||
4894 | /* sreq */ | |
99e300ef | 4895 | static void gen_sreq(DisasContext *ctx) |
76a66253 | 4896 | { |
7487953d AJ |
4897 | TCGv t0 = tcg_temp_new(); |
4898 | TCGv t1 = tcg_temp_new(); | |
4899 | TCGv t2 = tcg_temp_new(); | |
4900 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4901 | tcg_gen_movi_tl(t1, 0xFFFFFFFF); | |
4902 | tcg_gen_shr_tl(t1, t1, t0); | |
4903 | tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0); | |
4904 | gen_load_spr(t2, SPR_MQ); | |
4905 | gen_store_spr(SPR_MQ, t0); | |
4906 | tcg_gen_and_tl(t0, t0, t1); | |
4907 | tcg_gen_andc_tl(t2, t2, t1); | |
4908 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t2); | |
4909 | tcg_temp_free(t0); | |
4910 | tcg_temp_free(t1); | |
4911 | tcg_temp_free(t2); | |
76a66253 | 4912 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4913 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4914 | } |
4915 | ||
4916 | /* sriq */ | |
99e300ef | 4917 | static void gen_sriq(DisasContext *ctx) |
76a66253 | 4918 | { |
7487953d AJ |
4919 | int sh = SH(ctx->opcode); |
4920 | TCGv t0 = tcg_temp_new(); | |
4921 | TCGv t1 = tcg_temp_new(); | |
4922 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
4923 | tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh); | |
4924 | tcg_gen_or_tl(t1, t0, t1); | |
4925 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
4926 | gen_store_spr(SPR_MQ, t1); | |
4927 | tcg_temp_free(t0); | |
4928 | tcg_temp_free(t1); | |
76a66253 | 4929 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4930 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4931 | } |
4932 | ||
4933 | /* srliq */ | |
99e300ef | 4934 | static void gen_srliq(DisasContext *ctx) |
76a66253 | 4935 | { |
7487953d AJ |
4936 | int sh = SH(ctx->opcode); |
4937 | TCGv t0 = tcg_temp_new(); | |
4938 | TCGv t1 = tcg_temp_new(); | |
4939 | tcg_gen_rotri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh); | |
4940 | gen_load_spr(t1, SPR_MQ); | |
4941 | gen_store_spr(SPR_MQ, t0); | |
4942 | tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU >> sh)); | |
4943 | tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU >> sh)); | |
4944 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4945 | tcg_temp_free(t0); | |
4946 | tcg_temp_free(t1); | |
76a66253 | 4947 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4948 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4949 | } |
4950 | ||
4951 | /* srlq */ | |
99e300ef | 4952 | static void gen_srlq(DisasContext *ctx) |
76a66253 | 4953 | { |
7487953d AJ |
4954 | int l1 = gen_new_label(); |
4955 | int l2 = gen_new_label(); | |
4956 | TCGv t0 = tcg_temp_local_new(); | |
4957 | TCGv t1 = tcg_temp_local_new(); | |
4958 | TCGv t2 = tcg_temp_local_new(); | |
4959 | tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4960 | tcg_gen_movi_tl(t1, 0xFFFFFFFF); | |
4961 | tcg_gen_shr_tl(t2, t1, t2); | |
4962 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20); | |
4963 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); | |
4964 | gen_load_spr(t0, SPR_MQ); | |
4965 | tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t2); | |
4966 | tcg_gen_br(l2); | |
4967 | gen_set_label(l1); | |
4968 | tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2); | |
4969 | tcg_gen_and_tl(t0, t0, t2); | |
4970 | gen_load_spr(t1, SPR_MQ); | |
4971 | tcg_gen_andc_tl(t1, t1, t2); | |
4972 | tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1); | |
4973 | gen_set_label(l2); | |
4974 | tcg_temp_free(t0); | |
4975 | tcg_temp_free(t1); | |
4976 | tcg_temp_free(t2); | |
76a66253 | 4977 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 4978 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
4979 | } |
4980 | ||
4981 | /* srq */ | |
99e300ef | 4982 | static void gen_srq(DisasContext *ctx) |
76a66253 | 4983 | { |
7487953d AJ |
4984 | int l1 = gen_new_label(); |
4985 | TCGv t0 = tcg_temp_new(); | |
4986 | TCGv t1 = tcg_temp_new(); | |
4987 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F); | |
4988 | tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1); | |
4989 | tcg_gen_subfi_tl(t1, 32, t1); | |
4990 | tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1); | |
4991 | tcg_gen_or_tl(t1, t0, t1); | |
4992 | gen_store_spr(SPR_MQ, t1); | |
4993 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20); | |
4994 | tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); | |
4995 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); | |
4996 | tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0); | |
4997 | gen_set_label(l1); | |
4998 | tcg_temp_free(t0); | |
4999 | tcg_temp_free(t1); | |
76a66253 | 5000 | if (unlikely(Rc(ctx->opcode) != 0)) |
7487953d | 5001 | gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
5002 | } |
5003 | ||
5004 | /* PowerPC 602 specific instructions */ | |
99e300ef | 5005 | |
54623277 | 5006 | /* dsa */ |
99e300ef | 5007 | static void gen_dsa(DisasContext *ctx) |
76a66253 JM |
5008 | { |
5009 | /* XXX: TODO */ | |
e06fcd75 | 5010 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
76a66253 JM |
5011 | } |
5012 | ||
5013 | /* esa */ | |
99e300ef | 5014 | static void gen_esa(DisasContext *ctx) |
76a66253 JM |
5015 | { |
5016 | /* XXX: TODO */ | |
e06fcd75 | 5017 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
76a66253 JM |
5018 | } |
5019 | ||
5020 | /* mfrom */ | |
99e300ef | 5021 | static void gen_mfrom(DisasContext *ctx) |
76a66253 JM |
5022 | { |
5023 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5024 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5025 | #else |
76db3ba4 | 5026 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5027 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5028 | return; |
5029 | } | |
cf02a65c | 5030 | gen_helper_602_mfrom(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
5031 | #endif |
5032 | } | |
5033 | ||
5034 | /* 602 - 603 - G2 TLB management */ | |
e8eaa2c0 | 5035 | |
54623277 | 5036 | /* tlbld */ |
e8eaa2c0 | 5037 | static void gen_tlbld_6xx(DisasContext *ctx) |
76a66253 JM |
5038 | { |
5039 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5040 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5041 | #else |
76db3ba4 | 5042 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5043 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5044 | return; |
5045 | } | |
74d37793 | 5046 | gen_helper_6xx_tlbd(cpu_gpr[rB(ctx->opcode)]); |
76a66253 JM |
5047 | #endif |
5048 | } | |
5049 | ||
5050 | /* tlbli */ | |
e8eaa2c0 | 5051 | static void gen_tlbli_6xx(DisasContext *ctx) |
76a66253 JM |
5052 | { |
5053 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5054 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5055 | #else |
76db3ba4 | 5056 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5057 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5058 | return; |
5059 | } | |
74d37793 | 5060 | gen_helper_6xx_tlbi(cpu_gpr[rB(ctx->opcode)]); |
76a66253 JM |
5061 | #endif |
5062 | } | |
5063 | ||
7dbe11ac | 5064 | /* 74xx TLB management */ |
e8eaa2c0 | 5065 | |
54623277 | 5066 | /* tlbld */ |
e8eaa2c0 | 5067 | static void gen_tlbld_74xx(DisasContext *ctx) |
7dbe11ac JM |
5068 | { |
5069 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5070 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
7dbe11ac | 5071 | #else |
76db3ba4 | 5072 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5073 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
7dbe11ac JM |
5074 | return; |
5075 | } | |
74d37793 | 5076 | gen_helper_74xx_tlbd(cpu_gpr[rB(ctx->opcode)]); |
7dbe11ac JM |
5077 | #endif |
5078 | } | |
5079 | ||
5080 | /* tlbli */ | |
e8eaa2c0 | 5081 | static void gen_tlbli_74xx(DisasContext *ctx) |
7dbe11ac JM |
5082 | { |
5083 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5084 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
7dbe11ac | 5085 | #else |
76db3ba4 | 5086 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5087 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
7dbe11ac JM |
5088 | return; |
5089 | } | |
74d37793 | 5090 | gen_helper_74xx_tlbi(cpu_gpr[rB(ctx->opcode)]); |
7dbe11ac JM |
5091 | #endif |
5092 | } | |
5093 | ||
76a66253 | 5094 | /* POWER instructions not in PowerPC 601 */ |
99e300ef | 5095 | |
54623277 | 5096 | /* clf */ |
99e300ef | 5097 | static void gen_clf(DisasContext *ctx) |
76a66253 JM |
5098 | { |
5099 | /* Cache line flush: implemented as no-op */ | |
5100 | } | |
5101 | ||
5102 | /* cli */ | |
99e300ef | 5103 | static void gen_cli(DisasContext *ctx) |
76a66253 | 5104 | { |
7f75ffd3 | 5105 | /* Cache line invalidate: privileged and treated as no-op */ |
76a66253 | 5106 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 5107 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5108 | #else |
76db3ba4 | 5109 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5110 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5111 | return; |
5112 | } | |
5113 | #endif | |
5114 | } | |
5115 | ||
5116 | /* dclst */ | |
99e300ef | 5117 | static void gen_dclst(DisasContext *ctx) |
76a66253 JM |
5118 | { |
5119 | /* Data cache line store: treated as no-op */ | |
5120 | } | |
5121 | ||
99e300ef | 5122 | static void gen_mfsri(DisasContext *ctx) |
76a66253 JM |
5123 | { |
5124 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5125 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5126 | #else |
74d37793 AJ |
5127 | int ra = rA(ctx->opcode); |
5128 | int rd = rD(ctx->opcode); | |
5129 | TCGv t0; | |
76db3ba4 | 5130 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5131 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5132 | return; |
5133 | } | |
74d37793 | 5134 | t0 = tcg_temp_new(); |
76db3ba4 | 5135 | gen_addr_reg_index(ctx, t0); |
74d37793 AJ |
5136 | tcg_gen_shri_tl(t0, t0, 28); |
5137 | tcg_gen_andi_tl(t0, t0, 0xF); | |
5138 | gen_helper_load_sr(cpu_gpr[rd], t0); | |
5139 | tcg_temp_free(t0); | |
76a66253 | 5140 | if (ra != 0 && ra != rd) |
74d37793 | 5141 | tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rd]); |
76a66253 JM |
5142 | #endif |
5143 | } | |
5144 | ||
99e300ef | 5145 | static void gen_rac(DisasContext *ctx) |
76a66253 JM |
5146 | { |
5147 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5148 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5149 | #else |
22e0e173 | 5150 | TCGv t0; |
76db3ba4 | 5151 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5152 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5153 | return; |
5154 | } | |
22e0e173 | 5155 | t0 = tcg_temp_new(); |
76db3ba4 | 5156 | gen_addr_reg_index(ctx, t0); |
22e0e173 AJ |
5157 | gen_helper_rac(cpu_gpr[rD(ctx->opcode)], t0); |
5158 | tcg_temp_free(t0); | |
76a66253 JM |
5159 | #endif |
5160 | } | |
5161 | ||
99e300ef | 5162 | static void gen_rfsvc(DisasContext *ctx) |
76a66253 JM |
5163 | { |
5164 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5165 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5166 | #else |
76db3ba4 | 5167 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5168 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5169 | return; |
5170 | } | |
d72a19f7 | 5171 | gen_helper_rfsvc(); |
e06fcd75 | 5172 | gen_sync_exception(ctx); |
76a66253 JM |
5173 | #endif |
5174 | } | |
5175 | ||
5176 | /* svc is not implemented for now */ | |
5177 | ||
5178 | /* POWER2 specific instructions */ | |
5179 | /* Quad manipulation (load/store two floats at a time) */ | |
76a66253 JM |
5180 | |
5181 | /* lfq */ | |
99e300ef | 5182 | static void gen_lfq(DisasContext *ctx) |
76a66253 | 5183 | { |
01a4afeb | 5184 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5185 | TCGv t0; |
5186 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5187 | t0 = tcg_temp_new(); | |
5188 | gen_addr_imm_index(ctx, t0, 0); | |
5189 | gen_qemu_ld64(ctx, cpu_fpr[rd], t0); | |
5190 | gen_addr_add(ctx, t0, t0, 8); | |
5191 | gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0); | |
01a4afeb | 5192 | tcg_temp_free(t0); |
76a66253 JM |
5193 | } |
5194 | ||
5195 | /* lfqu */ | |
99e300ef | 5196 | static void gen_lfqu(DisasContext *ctx) |
76a66253 JM |
5197 | { |
5198 | int ra = rA(ctx->opcode); | |
01a4afeb | 5199 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5200 | TCGv t0, t1; |
5201 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5202 | t0 = tcg_temp_new(); | |
5203 | t1 = tcg_temp_new(); | |
5204 | gen_addr_imm_index(ctx, t0, 0); | |
5205 | gen_qemu_ld64(ctx, cpu_fpr[rd], t0); | |
5206 | gen_addr_add(ctx, t1, t0, 8); | |
5207 | gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1); | |
76a66253 | 5208 | if (ra != 0) |
01a4afeb AJ |
5209 | tcg_gen_mov_tl(cpu_gpr[ra], t0); |
5210 | tcg_temp_free(t0); | |
5211 | tcg_temp_free(t1); | |
76a66253 JM |
5212 | } |
5213 | ||
5214 | /* lfqux */ | |
99e300ef | 5215 | static void gen_lfqux(DisasContext *ctx) |
76a66253 JM |
5216 | { |
5217 | int ra = rA(ctx->opcode); | |
01a4afeb | 5218 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5219 | gen_set_access_type(ctx, ACCESS_FLOAT); |
5220 | TCGv t0, t1; | |
5221 | t0 = tcg_temp_new(); | |
5222 | gen_addr_reg_index(ctx, t0); | |
5223 | gen_qemu_ld64(ctx, cpu_fpr[rd], t0); | |
5224 | t1 = tcg_temp_new(); | |
5225 | gen_addr_add(ctx, t1, t0, 8); | |
5226 | gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1); | |
5227 | tcg_temp_free(t1); | |
76a66253 | 5228 | if (ra != 0) |
01a4afeb AJ |
5229 | tcg_gen_mov_tl(cpu_gpr[ra], t0); |
5230 | tcg_temp_free(t0); | |
76a66253 JM |
5231 | } |
5232 | ||
5233 | /* lfqx */ | |
99e300ef | 5234 | static void gen_lfqx(DisasContext *ctx) |
76a66253 | 5235 | { |
01a4afeb | 5236 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5237 | TCGv t0; |
5238 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5239 | t0 = tcg_temp_new(); | |
5240 | gen_addr_reg_index(ctx, t0); | |
5241 | gen_qemu_ld64(ctx, cpu_fpr[rd], t0); | |
5242 | gen_addr_add(ctx, t0, t0, 8); | |
5243 | gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0); | |
01a4afeb | 5244 | tcg_temp_free(t0); |
76a66253 JM |
5245 | } |
5246 | ||
5247 | /* stfq */ | |
99e300ef | 5248 | static void gen_stfq(DisasContext *ctx) |
76a66253 | 5249 | { |
01a4afeb | 5250 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5251 | TCGv t0; |
5252 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5253 | t0 = tcg_temp_new(); | |
5254 | gen_addr_imm_index(ctx, t0, 0); | |
5255 | gen_qemu_st64(ctx, cpu_fpr[rd], t0); | |
5256 | gen_addr_add(ctx, t0, t0, 8); | |
5257 | gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0); | |
01a4afeb | 5258 | tcg_temp_free(t0); |
76a66253 JM |
5259 | } |
5260 | ||
5261 | /* stfqu */ | |
99e300ef | 5262 | static void gen_stfqu(DisasContext *ctx) |
76a66253 JM |
5263 | { |
5264 | int ra = rA(ctx->opcode); | |
01a4afeb | 5265 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5266 | TCGv t0, t1; |
5267 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5268 | t0 = tcg_temp_new(); | |
5269 | gen_addr_imm_index(ctx, t0, 0); | |
5270 | gen_qemu_st64(ctx, cpu_fpr[rd], t0); | |
5271 | t1 = tcg_temp_new(); | |
5272 | gen_addr_add(ctx, t1, t0, 8); | |
5273 | gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1); | |
5274 | tcg_temp_free(t1); | |
76a66253 | 5275 | if (ra != 0) |
01a4afeb AJ |
5276 | tcg_gen_mov_tl(cpu_gpr[ra], t0); |
5277 | tcg_temp_free(t0); | |
76a66253 JM |
5278 | } |
5279 | ||
5280 | /* stfqux */ | |
99e300ef | 5281 | static void gen_stfqux(DisasContext *ctx) |
76a66253 JM |
5282 | { |
5283 | int ra = rA(ctx->opcode); | |
01a4afeb | 5284 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5285 | TCGv t0, t1; |
5286 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5287 | t0 = tcg_temp_new(); | |
5288 | gen_addr_reg_index(ctx, t0); | |
5289 | gen_qemu_st64(ctx, cpu_fpr[rd], t0); | |
5290 | t1 = tcg_temp_new(); | |
5291 | gen_addr_add(ctx, t1, t0, 8); | |
5292 | gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1); | |
5293 | tcg_temp_free(t1); | |
76a66253 | 5294 | if (ra != 0) |
01a4afeb AJ |
5295 | tcg_gen_mov_tl(cpu_gpr[ra], t0); |
5296 | tcg_temp_free(t0); | |
76a66253 JM |
5297 | } |
5298 | ||
5299 | /* stfqx */ | |
99e300ef | 5300 | static void gen_stfqx(DisasContext *ctx) |
76a66253 | 5301 | { |
01a4afeb | 5302 | int rd = rD(ctx->opcode); |
76db3ba4 AJ |
5303 | TCGv t0; |
5304 | gen_set_access_type(ctx, ACCESS_FLOAT); | |
5305 | t0 = tcg_temp_new(); | |
5306 | gen_addr_reg_index(ctx, t0); | |
5307 | gen_qemu_st64(ctx, cpu_fpr[rd], t0); | |
5308 | gen_addr_add(ctx, t0, t0, 8); | |
5309 | gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0); | |
01a4afeb | 5310 | tcg_temp_free(t0); |
76a66253 JM |
5311 | } |
5312 | ||
5313 | /* BookE specific instructions */ | |
99e300ef | 5314 | |
54623277 | 5315 | /* XXX: not implemented on 440 ? */ |
99e300ef | 5316 | static void gen_mfapidi(DisasContext *ctx) |
76a66253 JM |
5317 | { |
5318 | /* XXX: TODO */ | |
e06fcd75 | 5319 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
76a66253 JM |
5320 | } |
5321 | ||
2662a059 | 5322 | /* XXX: not implemented on 440 ? */ |
99e300ef | 5323 | static void gen_tlbiva(DisasContext *ctx) |
76a66253 JM |
5324 | { |
5325 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5326 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5327 | #else |
74d37793 | 5328 | TCGv t0; |
76db3ba4 | 5329 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5330 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5331 | return; |
5332 | } | |
ec72e276 | 5333 | t0 = tcg_temp_new(); |
76db3ba4 | 5334 | gen_addr_reg_index(ctx, t0); |
74d37793 AJ |
5335 | gen_helper_tlbie(cpu_gpr[rB(ctx->opcode)]); |
5336 | tcg_temp_free(t0); | |
76a66253 JM |
5337 | #endif |
5338 | } | |
5339 | ||
5340 | /* All 405 MAC instructions are translated here */ | |
636aa200 BS |
5341 | static inline void gen_405_mulladd_insn(DisasContext *ctx, int opc2, int opc3, |
5342 | int ra, int rb, int rt, int Rc) | |
76a66253 | 5343 | { |
182608d4 AJ |
5344 | TCGv t0, t1; |
5345 | ||
a7812ae4 PB |
5346 | t0 = tcg_temp_local_new(); |
5347 | t1 = tcg_temp_local_new(); | |
182608d4 | 5348 | |
76a66253 JM |
5349 | switch (opc3 & 0x0D) { |
5350 | case 0x05: | |
5351 | /* macchw - macchw. - macchwo - macchwo. */ | |
5352 | /* macchws - macchws. - macchwso - macchwso. */ | |
5353 | /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */ | |
5354 | /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */ | |
5355 | /* mulchw - mulchw. */ | |
182608d4 AJ |
5356 | tcg_gen_ext16s_tl(t0, cpu_gpr[ra]); |
5357 | tcg_gen_sari_tl(t1, cpu_gpr[rb], 16); | |
5358 | tcg_gen_ext16s_tl(t1, t1); | |
76a66253 JM |
5359 | break; |
5360 | case 0x04: | |
5361 | /* macchwu - macchwu. - macchwuo - macchwuo. */ | |
5362 | /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */ | |
5363 | /* mulchwu - mulchwu. */ | |
182608d4 AJ |
5364 | tcg_gen_ext16u_tl(t0, cpu_gpr[ra]); |
5365 | tcg_gen_shri_tl(t1, cpu_gpr[rb], 16); | |
5366 | tcg_gen_ext16u_tl(t1, t1); | |
76a66253 JM |
5367 | break; |
5368 | case 0x01: | |
5369 | /* machhw - machhw. - machhwo - machhwo. */ | |
5370 | /* machhws - machhws. - machhwso - machhwso. */ | |
5371 | /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */ | |
5372 | /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */ | |
5373 | /* mulhhw - mulhhw. */ | |
182608d4 AJ |
5374 | tcg_gen_sari_tl(t0, cpu_gpr[ra], 16); |
5375 | tcg_gen_ext16s_tl(t0, t0); | |
5376 | tcg_gen_sari_tl(t1, cpu_gpr[rb], 16); | |
5377 | tcg_gen_ext16s_tl(t1, t1); | |
76a66253 JM |
5378 | break; |
5379 | case 0x00: | |
5380 | /* machhwu - machhwu. - machhwuo - machhwuo. */ | |
5381 | /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */ | |
5382 | /* mulhhwu - mulhhwu. */ | |
182608d4 AJ |
5383 | tcg_gen_shri_tl(t0, cpu_gpr[ra], 16); |
5384 | tcg_gen_ext16u_tl(t0, t0); | |
5385 | tcg_gen_shri_tl(t1, cpu_gpr[rb], 16); | |
5386 | tcg_gen_ext16u_tl(t1, t1); | |
76a66253 JM |
5387 | break; |
5388 | case 0x0D: | |
5389 | /* maclhw - maclhw. - maclhwo - maclhwo. */ | |
5390 | /* maclhws - maclhws. - maclhwso - maclhwso. */ | |
5391 | /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */ | |
5392 | /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */ | |
5393 | /* mullhw - mullhw. */ | |
182608d4 AJ |
5394 | tcg_gen_ext16s_tl(t0, cpu_gpr[ra]); |
5395 | tcg_gen_ext16s_tl(t1, cpu_gpr[rb]); | |
76a66253 JM |
5396 | break; |
5397 | case 0x0C: | |
5398 | /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */ | |
5399 | /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */ | |
5400 | /* mullhwu - mullhwu. */ | |
182608d4 AJ |
5401 | tcg_gen_ext16u_tl(t0, cpu_gpr[ra]); |
5402 | tcg_gen_ext16u_tl(t1, cpu_gpr[rb]); | |
76a66253 JM |
5403 | break; |
5404 | } | |
76a66253 | 5405 | if (opc2 & 0x04) { |
182608d4 AJ |
5406 | /* (n)multiply-and-accumulate (0x0C / 0x0E) */ |
5407 | tcg_gen_mul_tl(t1, t0, t1); | |
5408 | if (opc2 & 0x02) { | |
5409 | /* nmultiply-and-accumulate (0x0E) */ | |
5410 | tcg_gen_sub_tl(t0, cpu_gpr[rt], t1); | |
5411 | } else { | |
5412 | /* multiply-and-accumulate (0x0C) */ | |
5413 | tcg_gen_add_tl(t0, cpu_gpr[rt], t1); | |
5414 | } | |
5415 | ||
5416 | if (opc3 & 0x12) { | |
5417 | /* Check overflow and/or saturate */ | |
5418 | int l1 = gen_new_label(); | |
5419 | ||
5420 | if (opc3 & 0x10) { | |
5421 | /* Start with XER OV disabled, the most likely case */ | |
5422 | tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV)); | |
5423 | } | |
5424 | if (opc3 & 0x01) { | |
5425 | /* Signed */ | |
5426 | tcg_gen_xor_tl(t1, cpu_gpr[rt], t1); | |
5427 | tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1); | |
5428 | tcg_gen_xor_tl(t1, cpu_gpr[rt], t0); | |
5429 | tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1); | |
bdc4e053 | 5430 | if (opc3 & 0x02) { |
182608d4 AJ |
5431 | /* Saturate */ |
5432 | tcg_gen_sari_tl(t0, cpu_gpr[rt], 31); | |
5433 | tcg_gen_xori_tl(t0, t0, 0x7fffffff); | |
5434 | } | |
5435 | } else { | |
5436 | /* Unsigned */ | |
5437 | tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1); | |
bdc4e053 | 5438 | if (opc3 & 0x02) { |
182608d4 AJ |
5439 | /* Saturate */ |
5440 | tcg_gen_movi_tl(t0, UINT32_MAX); | |
5441 | } | |
5442 | } | |
5443 | if (opc3 & 0x10) { | |
5444 | /* Check overflow */ | |
5445 | tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO)); | |
5446 | } | |
5447 | gen_set_label(l1); | |
5448 | tcg_gen_mov_tl(cpu_gpr[rt], t0); | |
5449 | } | |
5450 | } else { | |
5451 | tcg_gen_mul_tl(cpu_gpr[rt], t0, t1); | |
76a66253 | 5452 | } |
182608d4 AJ |
5453 | tcg_temp_free(t0); |
5454 | tcg_temp_free(t1); | |
76a66253 JM |
5455 | if (unlikely(Rc) != 0) { |
5456 | /* Update Rc0 */ | |
182608d4 | 5457 | gen_set_Rc0(ctx, cpu_gpr[rt]); |
76a66253 JM |
5458 | } |
5459 | } | |
5460 | ||
a750fc0b | 5461 | #define GEN_MAC_HANDLER(name, opc2, opc3) \ |
99e300ef | 5462 | static void glue(gen_, name)(DisasContext *ctx) \ |
76a66253 JM |
5463 | { \ |
5464 | gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \ | |
5465 | rD(ctx->opcode), Rc(ctx->opcode)); \ | |
5466 | } | |
5467 | ||
5468 | /* macchw - macchw. */ | |
a750fc0b | 5469 | GEN_MAC_HANDLER(macchw, 0x0C, 0x05); |
76a66253 | 5470 | /* macchwo - macchwo. */ |
a750fc0b | 5471 | GEN_MAC_HANDLER(macchwo, 0x0C, 0x15); |
76a66253 | 5472 | /* macchws - macchws. */ |
a750fc0b | 5473 | GEN_MAC_HANDLER(macchws, 0x0C, 0x07); |
76a66253 | 5474 | /* macchwso - macchwso. */ |
a750fc0b | 5475 | GEN_MAC_HANDLER(macchwso, 0x0C, 0x17); |
76a66253 | 5476 | /* macchwsu - macchwsu. */ |
a750fc0b | 5477 | GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06); |
76a66253 | 5478 | /* macchwsuo - macchwsuo. */ |
a750fc0b | 5479 | GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16); |
76a66253 | 5480 | /* macchwu - macchwu. */ |
a750fc0b | 5481 | GEN_MAC_HANDLER(macchwu, 0x0C, 0x04); |
76a66253 | 5482 | /* macchwuo - macchwuo. */ |
a750fc0b | 5483 | GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14); |
76a66253 | 5484 | /* machhw - machhw. */ |
a750fc0b | 5485 | GEN_MAC_HANDLER(machhw, 0x0C, 0x01); |
76a66253 | 5486 | /* machhwo - machhwo. */ |
a750fc0b | 5487 | GEN_MAC_HANDLER(machhwo, 0x0C, 0x11); |
76a66253 | 5488 | /* machhws - machhws. */ |
a750fc0b | 5489 | GEN_MAC_HANDLER(machhws, 0x0C, 0x03); |
76a66253 | 5490 | /* machhwso - machhwso. */ |
a750fc0b | 5491 | GEN_MAC_HANDLER(machhwso, 0x0C, 0x13); |
76a66253 | 5492 | /* machhwsu - machhwsu. */ |
a750fc0b | 5493 | GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02); |
76a66253 | 5494 | /* machhwsuo - machhwsuo. */ |
a750fc0b | 5495 | GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12); |
76a66253 | 5496 | /* machhwu - machhwu. */ |
a750fc0b | 5497 | GEN_MAC_HANDLER(machhwu, 0x0C, 0x00); |
76a66253 | 5498 | /* machhwuo - machhwuo. */ |
a750fc0b | 5499 | GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10); |
76a66253 | 5500 | /* maclhw - maclhw. */ |
a750fc0b | 5501 | GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D); |
76a66253 | 5502 | /* maclhwo - maclhwo. */ |
a750fc0b | 5503 | GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D); |
76a66253 | 5504 | /* maclhws - maclhws. */ |
a750fc0b | 5505 | GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F); |
76a66253 | 5506 | /* maclhwso - maclhwso. */ |
a750fc0b | 5507 | GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F); |
76a66253 | 5508 | /* maclhwu - maclhwu. */ |
a750fc0b | 5509 | GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C); |
76a66253 | 5510 | /* maclhwuo - maclhwuo. */ |
a750fc0b | 5511 | GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C); |
76a66253 | 5512 | /* maclhwsu - maclhwsu. */ |
a750fc0b | 5513 | GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E); |
76a66253 | 5514 | /* maclhwsuo - maclhwsuo. */ |
a750fc0b | 5515 | GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E); |
76a66253 | 5516 | /* nmacchw - nmacchw. */ |
a750fc0b | 5517 | GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05); |
76a66253 | 5518 | /* nmacchwo - nmacchwo. */ |
a750fc0b | 5519 | GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15); |
76a66253 | 5520 | /* nmacchws - nmacchws. */ |
a750fc0b | 5521 | GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07); |
76a66253 | 5522 | /* nmacchwso - nmacchwso. */ |
a750fc0b | 5523 | GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17); |
76a66253 | 5524 | /* nmachhw - nmachhw. */ |
a750fc0b | 5525 | GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01); |
76a66253 | 5526 | /* nmachhwo - nmachhwo. */ |
a750fc0b | 5527 | GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11); |
76a66253 | 5528 | /* nmachhws - nmachhws. */ |
a750fc0b | 5529 | GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03); |
76a66253 | 5530 | /* nmachhwso - nmachhwso. */ |
a750fc0b | 5531 | GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13); |
76a66253 | 5532 | /* nmaclhw - nmaclhw. */ |
a750fc0b | 5533 | GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D); |
76a66253 | 5534 | /* nmaclhwo - nmaclhwo. */ |
a750fc0b | 5535 | GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D); |
76a66253 | 5536 | /* nmaclhws - nmaclhws. */ |
a750fc0b | 5537 | GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F); |
76a66253 | 5538 | /* nmaclhwso - nmaclhwso. */ |
a750fc0b | 5539 | GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F); |
76a66253 JM |
5540 | |
5541 | /* mulchw - mulchw. */ | |
a750fc0b | 5542 | GEN_MAC_HANDLER(mulchw, 0x08, 0x05); |
76a66253 | 5543 | /* mulchwu - mulchwu. */ |
a750fc0b | 5544 | GEN_MAC_HANDLER(mulchwu, 0x08, 0x04); |
76a66253 | 5545 | /* mulhhw - mulhhw. */ |
a750fc0b | 5546 | GEN_MAC_HANDLER(mulhhw, 0x08, 0x01); |
76a66253 | 5547 | /* mulhhwu - mulhhwu. */ |
a750fc0b | 5548 | GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00); |
76a66253 | 5549 | /* mullhw - mullhw. */ |
a750fc0b | 5550 | GEN_MAC_HANDLER(mullhw, 0x08, 0x0D); |
76a66253 | 5551 | /* mullhwu - mullhwu. */ |
a750fc0b | 5552 | GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C); |
76a66253 JM |
5553 | |
5554 | /* mfdcr */ | |
99e300ef | 5555 | static void gen_mfdcr(DisasContext *ctx) |
76a66253 JM |
5556 | { |
5557 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5558 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
76a66253 | 5559 | #else |
06dca6a7 | 5560 | TCGv dcrn; |
76db3ba4 | 5561 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5562 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
76a66253 JM |
5563 | return; |
5564 | } | |
06dca6a7 AJ |
5565 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5566 | gen_update_nip(ctx, ctx->nip - 4); | |
5567 | dcrn = tcg_const_tl(SPR(ctx->opcode)); | |
5568 | gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], dcrn); | |
5569 | tcg_temp_free(dcrn); | |
76a66253 JM |
5570 | #endif |
5571 | } | |
5572 | ||
5573 | /* mtdcr */ | |
99e300ef | 5574 | static void gen_mtdcr(DisasContext *ctx) |
76a66253 JM |
5575 | { |
5576 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5577 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
76a66253 | 5578 | #else |
06dca6a7 | 5579 | TCGv dcrn; |
76db3ba4 | 5580 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5581 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
76a66253 JM |
5582 | return; |
5583 | } | |
06dca6a7 AJ |
5584 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5585 | gen_update_nip(ctx, ctx->nip - 4); | |
5586 | dcrn = tcg_const_tl(SPR(ctx->opcode)); | |
5587 | gen_helper_store_dcr(dcrn, cpu_gpr[rS(ctx->opcode)]); | |
5588 | tcg_temp_free(dcrn); | |
a42bd6cc JM |
5589 | #endif |
5590 | } | |
5591 | ||
5592 | /* mfdcrx */ | |
2662a059 | 5593 | /* XXX: not implemented on 440 ? */ |
99e300ef | 5594 | static void gen_mfdcrx(DisasContext *ctx) |
a42bd6cc JM |
5595 | { |
5596 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5597 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
a42bd6cc | 5598 | #else |
76db3ba4 | 5599 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5600 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
a42bd6cc JM |
5601 | return; |
5602 | } | |
06dca6a7 AJ |
5603 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5604 | gen_update_nip(ctx, ctx->nip - 4); | |
5605 | gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
a750fc0b | 5606 | /* Note: Rc update flag set leads to undefined state of Rc0 */ |
a42bd6cc JM |
5607 | #endif |
5608 | } | |
5609 | ||
5610 | /* mtdcrx */ | |
2662a059 | 5611 | /* XXX: not implemented on 440 ? */ |
99e300ef | 5612 | static void gen_mtdcrx(DisasContext *ctx) |
a42bd6cc JM |
5613 | { |
5614 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5615 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
a42bd6cc | 5616 | #else |
76db3ba4 | 5617 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5618 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); |
a42bd6cc JM |
5619 | return; |
5620 | } | |
06dca6a7 AJ |
5621 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5622 | gen_update_nip(ctx, ctx->nip - 4); | |
5623 | gen_helper_store_dcr(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
a750fc0b | 5624 | /* Note: Rc update flag set leads to undefined state of Rc0 */ |
76a66253 JM |
5625 | #endif |
5626 | } | |
5627 | ||
a750fc0b | 5628 | /* mfdcrux (PPC 460) : user-mode access to DCR */ |
99e300ef | 5629 | static void gen_mfdcrux(DisasContext *ctx) |
a750fc0b | 5630 | { |
06dca6a7 AJ |
5631 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5632 | gen_update_nip(ctx, ctx->nip - 4); | |
5633 | gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
a750fc0b JM |
5634 | /* Note: Rc update flag set leads to undefined state of Rc0 */ |
5635 | } | |
5636 | ||
5637 | /* mtdcrux (PPC 460) : user-mode access to DCR */ | |
99e300ef | 5638 | static void gen_mtdcrux(DisasContext *ctx) |
a750fc0b | 5639 | { |
06dca6a7 AJ |
5640 | /* NIP cannot be restored if the memory exception comes from an helper */ |
5641 | gen_update_nip(ctx, ctx->nip - 4); | |
5642 | gen_helper_store_dcr(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
a750fc0b JM |
5643 | /* Note: Rc update flag set leads to undefined state of Rc0 */ |
5644 | } | |
5645 | ||
76a66253 | 5646 | /* dccci */ |
99e300ef | 5647 | static void gen_dccci(DisasContext *ctx) |
76a66253 JM |
5648 | { |
5649 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5650 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5651 | #else |
76db3ba4 | 5652 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5653 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5654 | return; |
5655 | } | |
5656 | /* interpreted as no-op */ | |
5657 | #endif | |
5658 | } | |
5659 | ||
5660 | /* dcread */ | |
99e300ef | 5661 | static void gen_dcread(DisasContext *ctx) |
76a66253 JM |
5662 | { |
5663 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5664 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5665 | #else |
b61f2753 | 5666 | TCGv EA, val; |
76db3ba4 | 5667 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5668 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5669 | return; |
5670 | } | |
76db3ba4 | 5671 | gen_set_access_type(ctx, ACCESS_CACHE); |
a7812ae4 | 5672 | EA = tcg_temp_new(); |
76db3ba4 | 5673 | gen_addr_reg_index(ctx, EA); |
a7812ae4 | 5674 | val = tcg_temp_new(); |
76db3ba4 | 5675 | gen_qemu_ld32u(ctx, val, EA); |
b61f2753 AJ |
5676 | tcg_temp_free(val); |
5677 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], EA); | |
5678 | tcg_temp_free(EA); | |
76a66253 JM |
5679 | #endif |
5680 | } | |
5681 | ||
5682 | /* icbt */ | |
e8eaa2c0 | 5683 | static void gen_icbt_40x(DisasContext *ctx) |
76a66253 JM |
5684 | { |
5685 | /* interpreted as no-op */ | |
5686 | /* XXX: specification say this is treated as a load by the MMU | |
5687 | * but does not generate any exception | |
5688 | */ | |
5689 | } | |
5690 | ||
5691 | /* iccci */ | |
99e300ef | 5692 | static void gen_iccci(DisasContext *ctx) |
76a66253 JM |
5693 | { |
5694 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5695 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5696 | #else |
76db3ba4 | 5697 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5698 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5699 | return; |
5700 | } | |
5701 | /* interpreted as no-op */ | |
5702 | #endif | |
5703 | } | |
5704 | ||
5705 | /* icread */ | |
99e300ef | 5706 | static void gen_icread(DisasContext *ctx) |
76a66253 JM |
5707 | { |
5708 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5709 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5710 | #else |
76db3ba4 | 5711 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5712 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5713 | return; |
5714 | } | |
5715 | /* interpreted as no-op */ | |
5716 | #endif | |
5717 | } | |
5718 | ||
76db3ba4 | 5719 | /* rfci (mem_idx only) */ |
e8eaa2c0 | 5720 | static void gen_rfci_40x(DisasContext *ctx) |
a42bd6cc JM |
5721 | { |
5722 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5723 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a42bd6cc | 5724 | #else |
76db3ba4 | 5725 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5726 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a42bd6cc JM |
5727 | return; |
5728 | } | |
5729 | /* Restore CPU state */ | |
d72a19f7 | 5730 | gen_helper_40x_rfci(); |
e06fcd75 | 5731 | gen_sync_exception(ctx); |
a42bd6cc JM |
5732 | #endif |
5733 | } | |
5734 | ||
99e300ef | 5735 | static void gen_rfci(DisasContext *ctx) |
a42bd6cc JM |
5736 | { |
5737 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5738 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a42bd6cc | 5739 | #else |
76db3ba4 | 5740 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5741 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a42bd6cc JM |
5742 | return; |
5743 | } | |
5744 | /* Restore CPU state */ | |
d72a19f7 | 5745 | gen_helper_rfci(); |
e06fcd75 | 5746 | gen_sync_exception(ctx); |
a42bd6cc JM |
5747 | #endif |
5748 | } | |
5749 | ||
5750 | /* BookE specific */ | |
99e300ef | 5751 | |
54623277 | 5752 | /* XXX: not implemented on 440 ? */ |
99e300ef | 5753 | static void gen_rfdi(DisasContext *ctx) |
76a66253 JM |
5754 | { |
5755 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5756 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5757 | #else |
76db3ba4 | 5758 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5759 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5760 | return; |
5761 | } | |
5762 | /* Restore CPU state */ | |
d72a19f7 | 5763 | gen_helper_rfdi(); |
e06fcd75 | 5764 | gen_sync_exception(ctx); |
76a66253 JM |
5765 | #endif |
5766 | } | |
5767 | ||
2662a059 | 5768 | /* XXX: not implemented on 440 ? */ |
99e300ef | 5769 | static void gen_rfmci(DisasContext *ctx) |
a42bd6cc JM |
5770 | { |
5771 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5772 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a42bd6cc | 5773 | #else |
76db3ba4 | 5774 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5775 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
a42bd6cc JM |
5776 | return; |
5777 | } | |
5778 | /* Restore CPU state */ | |
d72a19f7 | 5779 | gen_helper_rfmci(); |
e06fcd75 | 5780 | gen_sync_exception(ctx); |
a42bd6cc JM |
5781 | #endif |
5782 | } | |
5eb7995e | 5783 | |
d9bce9d9 | 5784 | /* TLB management - PowerPC 405 implementation */ |
e8eaa2c0 | 5785 | |
54623277 | 5786 | /* tlbre */ |
e8eaa2c0 | 5787 | static void gen_tlbre_40x(DisasContext *ctx) |
76a66253 JM |
5788 | { |
5789 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5790 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5791 | #else |
76db3ba4 | 5792 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5793 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5794 | return; |
5795 | } | |
5796 | switch (rB(ctx->opcode)) { | |
5797 | case 0: | |
74d37793 | 5798 | gen_helper_4xx_tlbre_hi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
5799 | break; |
5800 | case 1: | |
74d37793 | 5801 | gen_helper_4xx_tlbre_lo(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); |
76a66253 JM |
5802 | break; |
5803 | default: | |
e06fcd75 | 5804 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
76a66253 | 5805 | break; |
9a64fbe4 | 5806 | } |
76a66253 JM |
5807 | #endif |
5808 | } | |
5809 | ||
d9bce9d9 | 5810 | /* tlbsx - tlbsx. */ |
e8eaa2c0 | 5811 | static void gen_tlbsx_40x(DisasContext *ctx) |
76a66253 JM |
5812 | { |
5813 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5814 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5815 | #else |
74d37793 | 5816 | TCGv t0; |
76db3ba4 | 5817 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5818 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5819 | return; |
5820 | } | |
74d37793 | 5821 | t0 = tcg_temp_new(); |
76db3ba4 | 5822 | gen_addr_reg_index(ctx, t0); |
74d37793 AJ |
5823 | gen_helper_4xx_tlbsx(cpu_gpr[rD(ctx->opcode)], t0); |
5824 | tcg_temp_free(t0); | |
5825 | if (Rc(ctx->opcode)) { | |
5826 | int l1 = gen_new_label(); | |
5827 | tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer); | |
5828 | tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO); | |
5829 | tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1); | |
5830 | tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1); | |
5831 | tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02); | |
5832 | gen_set_label(l1); | |
5833 | } | |
76a66253 | 5834 | #endif |
79aceca5 FB |
5835 | } |
5836 | ||
76a66253 | 5837 | /* tlbwe */ |
e8eaa2c0 | 5838 | static void gen_tlbwe_40x(DisasContext *ctx) |
79aceca5 | 5839 | { |
76a66253 | 5840 | #if defined(CONFIG_USER_ONLY) |
e06fcd75 | 5841 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5842 | #else |
76db3ba4 | 5843 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5844 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5845 | return; |
5846 | } | |
5847 | switch (rB(ctx->opcode)) { | |
5848 | case 0: | |
74d37793 | 5849 | gen_helper_4xx_tlbwe_hi(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); |
76a66253 JM |
5850 | break; |
5851 | case 1: | |
74d37793 | 5852 | gen_helper_4xx_tlbwe_lo(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); |
76a66253 JM |
5853 | break; |
5854 | default: | |
e06fcd75 | 5855 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
76a66253 | 5856 | break; |
9a64fbe4 | 5857 | } |
76a66253 JM |
5858 | #endif |
5859 | } | |
5860 | ||
a4bb6c3e | 5861 | /* TLB management - PowerPC 440 implementation */ |
e8eaa2c0 | 5862 | |
54623277 | 5863 | /* tlbre */ |
e8eaa2c0 | 5864 | static void gen_tlbre_440(DisasContext *ctx) |
5eb7995e JM |
5865 | { |
5866 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5867 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
5eb7995e | 5868 | #else |
76db3ba4 | 5869 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5870 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
5eb7995e JM |
5871 | return; |
5872 | } | |
5873 | switch (rB(ctx->opcode)) { | |
5874 | case 0: | |
5eb7995e | 5875 | case 1: |
5eb7995e | 5876 | case 2: |
74d37793 AJ |
5877 | { |
5878 | TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode)); | |
5879 | gen_helper_440_tlbwe(t0, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
5880 | tcg_temp_free_i32(t0); | |
5881 | } | |
5eb7995e JM |
5882 | break; |
5883 | default: | |
e06fcd75 | 5884 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
5eb7995e JM |
5885 | break; |
5886 | } | |
5887 | #endif | |
5888 | } | |
5889 | ||
5890 | /* tlbsx - tlbsx. */ | |
e8eaa2c0 | 5891 | static void gen_tlbsx_440(DisasContext *ctx) |
5eb7995e JM |
5892 | { |
5893 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5894 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
5eb7995e | 5895 | #else |
74d37793 | 5896 | TCGv t0; |
76db3ba4 | 5897 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5898 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
5eb7995e JM |
5899 | return; |
5900 | } | |
74d37793 | 5901 | t0 = tcg_temp_new(); |
76db3ba4 | 5902 | gen_addr_reg_index(ctx, t0); |
74d37793 AJ |
5903 | gen_helper_440_tlbsx(cpu_gpr[rD(ctx->opcode)], t0); |
5904 | tcg_temp_free(t0); | |
5905 | if (Rc(ctx->opcode)) { | |
5906 | int l1 = gen_new_label(); | |
5907 | tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer); | |
5908 | tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO); | |
5909 | tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1); | |
5910 | tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1); | |
5911 | tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02); | |
5912 | gen_set_label(l1); | |
5913 | } | |
5eb7995e JM |
5914 | #endif |
5915 | } | |
5916 | ||
5917 | /* tlbwe */ | |
e8eaa2c0 | 5918 | static void gen_tlbwe_440(DisasContext *ctx) |
5eb7995e JM |
5919 | { |
5920 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5921 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
5eb7995e | 5922 | #else |
76db3ba4 | 5923 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5924 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
5eb7995e JM |
5925 | return; |
5926 | } | |
5927 | switch (rB(ctx->opcode)) { | |
5928 | case 0: | |
5eb7995e | 5929 | case 1: |
5eb7995e | 5930 | case 2: |
74d37793 AJ |
5931 | { |
5932 | TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode)); | |
5933 | gen_helper_440_tlbwe(t0, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); | |
5934 | tcg_temp_free_i32(t0); | |
5935 | } | |
5eb7995e JM |
5936 | break; |
5937 | default: | |
e06fcd75 | 5938 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
5eb7995e JM |
5939 | break; |
5940 | } | |
5941 | #endif | |
5942 | } | |
5943 | ||
76a66253 | 5944 | /* wrtee */ |
99e300ef | 5945 | static void gen_wrtee(DisasContext *ctx) |
76a66253 JM |
5946 | { |
5947 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5948 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5949 | #else |
6527f6ea | 5950 | TCGv t0; |
76db3ba4 | 5951 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5952 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5953 | return; |
5954 | } | |
6527f6ea AJ |
5955 | t0 = tcg_temp_new(); |
5956 | tcg_gen_andi_tl(t0, cpu_gpr[rD(ctx->opcode)], (1 << MSR_EE)); | |
5957 | tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE)); | |
5958 | tcg_gen_or_tl(cpu_msr, cpu_msr, t0); | |
5959 | tcg_temp_free(t0); | |
dee96f6c JM |
5960 | /* Stop translation to have a chance to raise an exception |
5961 | * if we just set msr_ee to 1 | |
5962 | */ | |
e06fcd75 | 5963 | gen_stop_exception(ctx); |
76a66253 JM |
5964 | #endif |
5965 | } | |
5966 | ||
5967 | /* wrteei */ | |
99e300ef | 5968 | static void gen_wrteei(DisasContext *ctx) |
76a66253 JM |
5969 | { |
5970 | #if defined(CONFIG_USER_ONLY) | |
e06fcd75 | 5971 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 | 5972 | #else |
76db3ba4 | 5973 | if (unlikely(!ctx->mem_idx)) { |
e06fcd75 | 5974 | gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); |
76a66253 JM |
5975 | return; |
5976 | } | |
fbe73008 | 5977 | if (ctx->opcode & 0x00008000) { |
6527f6ea AJ |
5978 | tcg_gen_ori_tl(cpu_msr, cpu_msr, (1 << MSR_EE)); |
5979 | /* Stop translation to have a chance to raise an exception */ | |
e06fcd75 | 5980 | gen_stop_exception(ctx); |
6527f6ea | 5981 | } else { |
1b6e5f99 | 5982 | tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE)); |
6527f6ea | 5983 | } |
76a66253 JM |
5984 | #endif |
5985 | } | |
5986 | ||
08e46e54 | 5987 | /* PowerPC 440 specific instructions */ |
99e300ef | 5988 | |
54623277 | 5989 | /* dlmzb */ |
99e300ef | 5990 | static void gen_dlmzb(DisasContext *ctx) |
76a66253 | 5991 | { |
ef0d51af AJ |
5992 | TCGv_i32 t0 = tcg_const_i32(Rc(ctx->opcode)); |
5993 | gen_helper_dlmzb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], | |
5994 | cpu_gpr[rB(ctx->opcode)], t0); | |
5995 | tcg_temp_free_i32(t0); | |
76a66253 JM |
5996 | } |
5997 | ||
5998 | /* mbar replaces eieio on 440 */ | |
99e300ef | 5999 | static void gen_mbar(DisasContext *ctx) |
76a66253 JM |
6000 | { |
6001 | /* interpreted as no-op */ | |
6002 | } | |
6003 | ||
6004 | /* msync replaces sync on 440 */ | |
99e300ef | 6005 | static void gen_msync(DisasContext *ctx) |
76a66253 JM |
6006 | { |
6007 | /* interpreted as no-op */ | |
6008 | } | |
6009 | ||
6010 | /* icbt */ | |
e8eaa2c0 | 6011 | static void gen_icbt_440(DisasContext *ctx) |
76a66253 JM |
6012 | { |
6013 | /* interpreted as no-op */ | |
6014 | /* XXX: specification say this is treated as a load by the MMU | |
6015 | * but does not generate any exception | |
6016 | */ | |
79aceca5 FB |
6017 | } |
6018 | ||
a9d9eb8f JM |
6019 | /*** Altivec vector extension ***/ |
6020 | /* Altivec registers moves */ | |
a9d9eb8f | 6021 | |
636aa200 | 6022 | static inline TCGv_ptr gen_avr_ptr(int reg) |
564e571a | 6023 | { |
e4704b3b | 6024 | TCGv_ptr r = tcg_temp_new_ptr(); |
564e571a AJ |
6025 | tcg_gen_addi_ptr(r, cpu_env, offsetof(CPUPPCState, avr[reg])); |
6026 | return r; | |
6027 | } | |
6028 | ||
a9d9eb8f | 6029 | #define GEN_VR_LDX(name, opc2, opc3) \ |
99e300ef | 6030 | static void glue(gen_, name)(DisasContext *ctx) \ |
a9d9eb8f | 6031 | { \ |
fe1e5c53 | 6032 | TCGv EA; \ |
a9d9eb8f | 6033 | if (unlikely(!ctx->altivec_enabled)) { \ |
e06fcd75 | 6034 | gen_exception(ctx, POWERPC_EXCP_VPU); \ |
a9d9eb8f JM |
6035 | return; \ |
6036 | } \ | |
76db3ba4 | 6037 | gen_set_access_type(ctx, ACCESS_INT); \ |
fe1e5c53 | 6038 | EA = tcg_temp_new(); \ |
76db3ba4 | 6039 | gen_addr_reg_index(ctx, EA); \ |
fe1e5c53 | 6040 | tcg_gen_andi_tl(EA, EA, ~0xf); \ |
76db3ba4 AJ |
6041 | if (ctx->le_mode) { \ |
6042 | gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \ | |
fe1e5c53 | 6043 | tcg_gen_addi_tl(EA, EA, 8); \ |
76db3ba4 | 6044 | gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \ |
fe1e5c53 | 6045 | } else { \ |
76db3ba4 | 6046 | gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \ |
fe1e5c53 | 6047 | tcg_gen_addi_tl(EA, EA, 8); \ |
76db3ba4 | 6048 | gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \ |
fe1e5c53 AJ |
6049 | } \ |
6050 | tcg_temp_free(EA); \ | |
a9d9eb8f JM |
6051 | } |
6052 | ||
6053 | #define GEN_VR_STX(name, opc2, opc3) \ | |
99e300ef | 6054 | static void gen_st##name(DisasContext *ctx) \ |
a9d9eb8f | 6055 | { \ |
fe1e5c53 | 6056 | TCGv EA; \ |
a9d9eb8f | 6057 | if (unlikely(!ctx->altivec_enabled)) { \ |
e06fcd75 | 6058 | gen_exception(ctx, POWERPC_EXCP_VPU); \ |
a9d9eb8f JM |
6059 | return; \ |
6060 | } \ | |
76db3ba4 | 6061 | gen_set_access_type(ctx, ACCESS_INT); \ |
fe1e5c53 | 6062 | EA = tcg_temp_new(); \ |
76db3ba4 | 6063 | gen_addr_reg_index(ctx, EA); \ |
fe1e5c53 | 6064 | tcg_gen_andi_tl(EA, EA, ~0xf); \ |
76db3ba4 AJ |
6065 | if (ctx->le_mode) { \ |
6066 | gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \ | |
fe1e5c53 | 6067 | tcg_gen_addi_tl(EA, EA, 8); \ |
76db3ba4 | 6068 | gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \ |
fe1e5c53 | 6069 | } else { \ |
76db3ba4 | 6070 | gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \ |
fe1e5c53 | 6071 | tcg_gen_addi_tl(EA, EA, 8); \ |
76db3ba4 | 6072 | gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \ |
fe1e5c53 AJ |
6073 | } \ |
6074 | tcg_temp_free(EA); \ | |
a9d9eb8f JM |
6075 | } |
6076 | ||
cbfb6ae9 | 6077 | #define GEN_VR_LVE(name, opc2, opc3) \ |
99e300ef | 6078 | static void gen_lve##name(DisasContext *ctx) \ |
cbfb6ae9 AJ |
6079 | { \ |
6080 | TCGv EA; \ | |
6081 | TCGv_ptr rs; \ | |
6082 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6083 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6084 | return; \ | |
6085 | } \ | |
6086 | gen_set_access_type(ctx, ACCESS_INT); \ | |
6087 | EA = tcg_temp_new(); \ | |
6088 | gen_addr_reg_index(ctx, EA); \ | |
6089 | rs = gen_avr_ptr(rS(ctx->opcode)); \ | |
6090 | gen_helper_lve##name (rs, EA); \ | |
6091 | tcg_temp_free(EA); \ | |
6092 | tcg_temp_free_ptr(rs); \ | |
6093 | } | |
6094 | ||
6095 | #define GEN_VR_STVE(name, opc2, opc3) \ | |
99e300ef | 6096 | static void gen_stve##name(DisasContext *ctx) \ |
cbfb6ae9 AJ |
6097 | { \ |
6098 | TCGv EA; \ | |
6099 | TCGv_ptr rs; \ | |
6100 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6101 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6102 | return; \ | |
6103 | } \ | |
6104 | gen_set_access_type(ctx, ACCESS_INT); \ | |
6105 | EA = tcg_temp_new(); \ | |
6106 | gen_addr_reg_index(ctx, EA); \ | |
6107 | rs = gen_avr_ptr(rS(ctx->opcode)); \ | |
6108 | gen_helper_stve##name (rs, EA); \ | |
6109 | tcg_temp_free(EA); \ | |
6110 | tcg_temp_free_ptr(rs); \ | |
6111 | } | |
6112 | ||
fe1e5c53 | 6113 | GEN_VR_LDX(lvx, 0x07, 0x03); |
a9d9eb8f | 6114 | /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */ |
fe1e5c53 | 6115 | GEN_VR_LDX(lvxl, 0x07, 0x0B); |
a9d9eb8f | 6116 | |
cbfb6ae9 AJ |
6117 | GEN_VR_LVE(bx, 0x07, 0x00); |
6118 | GEN_VR_LVE(hx, 0x07, 0x01); | |
6119 | GEN_VR_LVE(wx, 0x07, 0x02); | |
6120 | ||
fe1e5c53 | 6121 | GEN_VR_STX(svx, 0x07, 0x07); |
a9d9eb8f | 6122 | /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */ |
fe1e5c53 | 6123 | GEN_VR_STX(svxl, 0x07, 0x0F); |
a9d9eb8f | 6124 | |
cbfb6ae9 AJ |
6125 | GEN_VR_STVE(bx, 0x07, 0x04); |
6126 | GEN_VR_STVE(hx, 0x07, 0x05); | |
6127 | GEN_VR_STVE(wx, 0x07, 0x06); | |
6128 | ||
99e300ef | 6129 | static void gen_lvsl(DisasContext *ctx) |
bf8d8ded AJ |
6130 | { |
6131 | TCGv_ptr rd; | |
6132 | TCGv EA; | |
6133 | if (unlikely(!ctx->altivec_enabled)) { | |
6134 | gen_exception(ctx, POWERPC_EXCP_VPU); | |
6135 | return; | |
6136 | } | |
6137 | EA = tcg_temp_new(); | |
6138 | gen_addr_reg_index(ctx, EA); | |
6139 | rd = gen_avr_ptr(rD(ctx->opcode)); | |
6140 | gen_helper_lvsl(rd, EA); | |
6141 | tcg_temp_free(EA); | |
6142 | tcg_temp_free_ptr(rd); | |
6143 | } | |
6144 | ||
99e300ef | 6145 | static void gen_lvsr(DisasContext *ctx) |
bf8d8ded AJ |
6146 | { |
6147 | TCGv_ptr rd; | |
6148 | TCGv EA; | |
6149 | if (unlikely(!ctx->altivec_enabled)) { | |
6150 | gen_exception(ctx, POWERPC_EXCP_VPU); | |
6151 | return; | |
6152 | } | |
6153 | EA = tcg_temp_new(); | |
6154 | gen_addr_reg_index(ctx, EA); | |
6155 | rd = gen_avr_ptr(rD(ctx->opcode)); | |
6156 | gen_helper_lvsr(rd, EA); | |
6157 | tcg_temp_free(EA); | |
6158 | tcg_temp_free_ptr(rd); | |
6159 | } | |
6160 | ||
99e300ef | 6161 | static void gen_mfvscr(DisasContext *ctx) |
785f451b AJ |
6162 | { |
6163 | TCGv_i32 t; | |
6164 | if (unlikely(!ctx->altivec_enabled)) { | |
6165 | gen_exception(ctx, POWERPC_EXCP_VPU); | |
6166 | return; | |
6167 | } | |
6168 | tcg_gen_movi_i64(cpu_avrh[rD(ctx->opcode)], 0); | |
6169 | t = tcg_temp_new_i32(); | |
6170 | tcg_gen_ld_i32(t, cpu_env, offsetof(CPUState, vscr)); | |
6171 | tcg_gen_extu_i32_i64(cpu_avrl[rD(ctx->opcode)], t); | |
fce5ecb7 | 6172 | tcg_temp_free_i32(t); |
785f451b AJ |
6173 | } |
6174 | ||
99e300ef | 6175 | static void gen_mtvscr(DisasContext *ctx) |
785f451b | 6176 | { |
6e87b7c7 | 6177 | TCGv_ptr p; |
785f451b AJ |
6178 | if (unlikely(!ctx->altivec_enabled)) { |
6179 | gen_exception(ctx, POWERPC_EXCP_VPU); | |
6180 | return; | |
6181 | } | |
6e87b7c7 AJ |
6182 | p = gen_avr_ptr(rD(ctx->opcode)); |
6183 | gen_helper_mtvscr(p); | |
6184 | tcg_temp_free_ptr(p); | |
785f451b AJ |
6185 | } |
6186 | ||
7a9b96cf AJ |
6187 | /* Logical operations */ |
6188 | #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \ | |
99e300ef | 6189 | static void glue(gen_, name)(DisasContext *ctx) \ |
7a9b96cf AJ |
6190 | { \ |
6191 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6192 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6193 | return; \ | |
6194 | } \ | |
6195 | tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \ | |
6196 | tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \ | |
6197 | } | |
6198 | ||
6199 | GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16); | |
6200 | GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17); | |
6201 | GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18); | |
6202 | GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19); | |
6203 | GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20); | |
6204 | ||
8e27dd6f | 6205 | #define GEN_VXFORM(name, opc2, opc3) \ |
99e300ef | 6206 | static void glue(gen_, name)(DisasContext *ctx) \ |
8e27dd6f AJ |
6207 | { \ |
6208 | TCGv_ptr ra, rb, rd; \ | |
6209 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6210 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6211 | return; \ | |
6212 | } \ | |
6213 | ra = gen_avr_ptr(rA(ctx->opcode)); \ | |
6214 | rb = gen_avr_ptr(rB(ctx->opcode)); \ | |
6215 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6216 | gen_helper_##name (rd, ra, rb); \ | |
6217 | tcg_temp_free_ptr(ra); \ | |
6218 | tcg_temp_free_ptr(rb); \ | |
6219 | tcg_temp_free_ptr(rd); \ | |
6220 | } | |
6221 | ||
7872c51c AJ |
6222 | GEN_VXFORM(vaddubm, 0, 0); |
6223 | GEN_VXFORM(vadduhm, 0, 1); | |
6224 | GEN_VXFORM(vadduwm, 0, 2); | |
6225 | GEN_VXFORM(vsububm, 0, 16); | |
6226 | GEN_VXFORM(vsubuhm, 0, 17); | |
6227 | GEN_VXFORM(vsubuwm, 0, 18); | |
e4039339 AJ |
6228 | GEN_VXFORM(vmaxub, 1, 0); |
6229 | GEN_VXFORM(vmaxuh, 1, 1); | |
6230 | GEN_VXFORM(vmaxuw, 1, 2); | |
6231 | GEN_VXFORM(vmaxsb, 1, 4); | |
6232 | GEN_VXFORM(vmaxsh, 1, 5); | |
6233 | GEN_VXFORM(vmaxsw, 1, 6); | |
6234 | GEN_VXFORM(vminub, 1, 8); | |
6235 | GEN_VXFORM(vminuh, 1, 9); | |
6236 | GEN_VXFORM(vminuw, 1, 10); | |
6237 | GEN_VXFORM(vminsb, 1, 12); | |
6238 | GEN_VXFORM(vminsh, 1, 13); | |
6239 | GEN_VXFORM(vminsw, 1, 14); | |
fab3cbe9 AJ |
6240 | GEN_VXFORM(vavgub, 1, 16); |
6241 | GEN_VXFORM(vavguh, 1, 17); | |
6242 | GEN_VXFORM(vavguw, 1, 18); | |
6243 | GEN_VXFORM(vavgsb, 1, 20); | |
6244 | GEN_VXFORM(vavgsh, 1, 21); | |
6245 | GEN_VXFORM(vavgsw, 1, 22); | |
3b430048 AJ |
6246 | GEN_VXFORM(vmrghb, 6, 0); |
6247 | GEN_VXFORM(vmrghh, 6, 1); | |
6248 | GEN_VXFORM(vmrghw, 6, 2); | |
6249 | GEN_VXFORM(vmrglb, 6, 4); | |
6250 | GEN_VXFORM(vmrglh, 6, 5); | |
6251 | GEN_VXFORM(vmrglw, 6, 6); | |
2c277908 AJ |
6252 | GEN_VXFORM(vmuloub, 4, 0); |
6253 | GEN_VXFORM(vmulouh, 4, 1); | |
6254 | GEN_VXFORM(vmulosb, 4, 4); | |
6255 | GEN_VXFORM(vmulosh, 4, 5); | |
6256 | GEN_VXFORM(vmuleub, 4, 8); | |
6257 | GEN_VXFORM(vmuleuh, 4, 9); | |
6258 | GEN_VXFORM(vmulesb, 4, 12); | |
6259 | GEN_VXFORM(vmulesh, 4, 13); | |
d79f0809 AJ |
6260 | GEN_VXFORM(vslb, 2, 4); |
6261 | GEN_VXFORM(vslh, 2, 5); | |
6262 | GEN_VXFORM(vslw, 2, 6); | |
07ef34c3 AJ |
6263 | GEN_VXFORM(vsrb, 2, 8); |
6264 | GEN_VXFORM(vsrh, 2, 9); | |
6265 | GEN_VXFORM(vsrw, 2, 10); | |
6266 | GEN_VXFORM(vsrab, 2, 12); | |
6267 | GEN_VXFORM(vsrah, 2, 13); | |
6268 | GEN_VXFORM(vsraw, 2, 14); | |
7b239bec AJ |
6269 | GEN_VXFORM(vslo, 6, 16); |
6270 | GEN_VXFORM(vsro, 6, 17); | |
e343da72 AJ |
6271 | GEN_VXFORM(vaddcuw, 0, 6); |
6272 | GEN_VXFORM(vsubcuw, 0, 22); | |
5ab09f33 AJ |
6273 | GEN_VXFORM(vaddubs, 0, 8); |
6274 | GEN_VXFORM(vadduhs, 0, 9); | |
6275 | GEN_VXFORM(vadduws, 0, 10); | |
6276 | GEN_VXFORM(vaddsbs, 0, 12); | |
6277 | GEN_VXFORM(vaddshs, 0, 13); | |
6278 | GEN_VXFORM(vaddsws, 0, 14); | |
6279 | GEN_VXFORM(vsububs, 0, 24); | |
6280 | GEN_VXFORM(vsubuhs, 0, 25); | |
6281 | GEN_VXFORM(vsubuws, 0, 26); | |
6282 | GEN_VXFORM(vsubsbs, 0, 28); | |
6283 | GEN_VXFORM(vsubshs, 0, 29); | |
6284 | GEN_VXFORM(vsubsws, 0, 30); | |
5e1d0985 AJ |
6285 | GEN_VXFORM(vrlb, 2, 0); |
6286 | GEN_VXFORM(vrlh, 2, 1); | |
6287 | GEN_VXFORM(vrlw, 2, 2); | |
d9430add AJ |
6288 | GEN_VXFORM(vsl, 2, 7); |
6289 | GEN_VXFORM(vsr, 2, 11); | |
5335a145 AJ |
6290 | GEN_VXFORM(vpkuhum, 7, 0); |
6291 | GEN_VXFORM(vpkuwum, 7, 1); | |
6292 | GEN_VXFORM(vpkuhus, 7, 2); | |
6293 | GEN_VXFORM(vpkuwus, 7, 3); | |
6294 | GEN_VXFORM(vpkshus, 7, 4); | |
6295 | GEN_VXFORM(vpkswus, 7, 5); | |
6296 | GEN_VXFORM(vpkshss, 7, 6); | |
6297 | GEN_VXFORM(vpkswss, 7, 7); | |
1dd9ffb9 | 6298 | GEN_VXFORM(vpkpx, 7, 12); |
8142cddd AJ |
6299 | GEN_VXFORM(vsum4ubs, 4, 24); |
6300 | GEN_VXFORM(vsum4sbs, 4, 28); | |
6301 | GEN_VXFORM(vsum4shs, 4, 25); | |
6302 | GEN_VXFORM(vsum2sws, 4, 26); | |
6303 | GEN_VXFORM(vsumsws, 4, 30); | |
56fdd213 AJ |
6304 | GEN_VXFORM(vaddfp, 5, 0); |
6305 | GEN_VXFORM(vsubfp, 5, 1); | |
1536ff64 AJ |
6306 | GEN_VXFORM(vmaxfp, 5, 16); |
6307 | GEN_VXFORM(vminfp, 5, 17); | |
fab3cbe9 | 6308 | |
0cbcd906 | 6309 | #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \ |
e8eaa2c0 | 6310 | static void glue(gen_, name)(DisasContext *ctx) \ |
0cbcd906 AJ |
6311 | { \ |
6312 | TCGv_ptr ra, rb, rd; \ | |
6313 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6314 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6315 | return; \ | |
6316 | } \ | |
6317 | ra = gen_avr_ptr(rA(ctx->opcode)); \ | |
6318 | rb = gen_avr_ptr(rB(ctx->opcode)); \ | |
6319 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6320 | gen_helper_##opname (rd, ra, rb); \ | |
6321 | tcg_temp_free_ptr(ra); \ | |
6322 | tcg_temp_free_ptr(rb); \ | |
6323 | tcg_temp_free_ptr(rd); \ | |
6324 | } | |
6325 | ||
6326 | #define GEN_VXRFORM(name, opc2, opc3) \ | |
6327 | GEN_VXRFORM1(name, name, #name, opc2, opc3) \ | |
6328 | GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4))) | |
6329 | ||
1add6e23 AJ |
6330 | GEN_VXRFORM(vcmpequb, 3, 0) |
6331 | GEN_VXRFORM(vcmpequh, 3, 1) | |
6332 | GEN_VXRFORM(vcmpequw, 3, 2) | |
6333 | GEN_VXRFORM(vcmpgtsb, 3, 12) | |
6334 | GEN_VXRFORM(vcmpgtsh, 3, 13) | |
6335 | GEN_VXRFORM(vcmpgtsw, 3, 14) | |
6336 | GEN_VXRFORM(vcmpgtub, 3, 8) | |
6337 | GEN_VXRFORM(vcmpgtuh, 3, 9) | |
6338 | GEN_VXRFORM(vcmpgtuw, 3, 10) | |
819ca121 AJ |
6339 | GEN_VXRFORM(vcmpeqfp, 3, 3) |
6340 | GEN_VXRFORM(vcmpgefp, 3, 7) | |
6341 | GEN_VXRFORM(vcmpgtfp, 3, 11) | |
6342 | GEN_VXRFORM(vcmpbfp, 3, 15) | |
1add6e23 | 6343 | |
c026766b | 6344 | #define GEN_VXFORM_SIMM(name, opc2, opc3) \ |
99e300ef | 6345 | static void glue(gen_, name)(DisasContext *ctx) \ |
c026766b AJ |
6346 | { \ |
6347 | TCGv_ptr rd; \ | |
6348 | TCGv_i32 simm; \ | |
6349 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6350 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6351 | return; \ | |
6352 | } \ | |
6353 | simm = tcg_const_i32(SIMM5(ctx->opcode)); \ | |
6354 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6355 | gen_helper_##name (rd, simm); \ | |
6356 | tcg_temp_free_i32(simm); \ | |
6357 | tcg_temp_free_ptr(rd); \ | |
6358 | } | |
6359 | ||
6360 | GEN_VXFORM_SIMM(vspltisb, 6, 12); | |
6361 | GEN_VXFORM_SIMM(vspltish, 6, 13); | |
6362 | GEN_VXFORM_SIMM(vspltisw, 6, 14); | |
6363 | ||
de5f2484 | 6364 | #define GEN_VXFORM_NOA(name, opc2, opc3) \ |
99e300ef | 6365 | static void glue(gen_, name)(DisasContext *ctx) \ |
de5f2484 AJ |
6366 | { \ |
6367 | TCGv_ptr rb, rd; \ | |
6368 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6369 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6370 | return; \ | |
6371 | } \ | |
6372 | rb = gen_avr_ptr(rB(ctx->opcode)); \ | |
6373 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6374 | gen_helper_##name (rd, rb); \ | |
6375 | tcg_temp_free_ptr(rb); \ | |
6376 | tcg_temp_free_ptr(rd); \ | |
6377 | } | |
6378 | ||
6cf1c6e5 AJ |
6379 | GEN_VXFORM_NOA(vupkhsb, 7, 8); |
6380 | GEN_VXFORM_NOA(vupkhsh, 7, 9); | |
6381 | GEN_VXFORM_NOA(vupklsb, 7, 10); | |
6382 | GEN_VXFORM_NOA(vupklsh, 7, 11); | |
79f85c3a AJ |
6383 | GEN_VXFORM_NOA(vupkhpx, 7, 13); |
6384 | GEN_VXFORM_NOA(vupklpx, 7, 15); | |
bdfbac35 | 6385 | GEN_VXFORM_NOA(vrefp, 5, 4); |
071fc3b1 | 6386 | GEN_VXFORM_NOA(vrsqrtefp, 5, 5); |
b580763f | 6387 | GEN_VXFORM_NOA(vlogefp, 5, 7); |
f6b19645 AJ |
6388 | GEN_VXFORM_NOA(vrfim, 5, 8); |
6389 | GEN_VXFORM_NOA(vrfin, 5, 9); | |
6390 | GEN_VXFORM_NOA(vrfip, 5, 10); | |
6391 | GEN_VXFORM_NOA(vrfiz, 5, 11); | |
79f85c3a | 6392 | |
21d21583 | 6393 | #define GEN_VXFORM_SIMM(name, opc2, opc3) \ |
99e300ef | 6394 | static void glue(gen_, name)(DisasContext *ctx) \ |
21d21583 AJ |
6395 | { \ |
6396 | TCGv_ptr rd; \ | |
6397 | TCGv_i32 simm; \ | |
6398 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6399 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6400 | return; \ | |
6401 | } \ | |
6402 | simm = tcg_const_i32(SIMM5(ctx->opcode)); \ | |
6403 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6404 | gen_helper_##name (rd, simm); \ | |
6405 | tcg_temp_free_i32(simm); \ | |
6406 | tcg_temp_free_ptr(rd); \ | |
6407 | } | |
6408 | ||
27a4edb3 | 6409 | #define GEN_VXFORM_UIMM(name, opc2, opc3) \ |
99e300ef | 6410 | static void glue(gen_, name)(DisasContext *ctx) \ |
27a4edb3 AJ |
6411 | { \ |
6412 | TCGv_ptr rb, rd; \ | |
6413 | TCGv_i32 uimm; \ | |
6414 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6415 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6416 | return; \ | |
6417 | } \ | |
6418 | uimm = tcg_const_i32(UIMM5(ctx->opcode)); \ | |
6419 | rb = gen_avr_ptr(rB(ctx->opcode)); \ | |
6420 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6421 | gen_helper_##name (rd, rb, uimm); \ | |
6422 | tcg_temp_free_i32(uimm); \ | |
6423 | tcg_temp_free_ptr(rb); \ | |
6424 | tcg_temp_free_ptr(rd); \ | |
6425 | } | |
6426 | ||
e4e6bee7 AJ |
6427 | GEN_VXFORM_UIMM(vspltb, 6, 8); |
6428 | GEN_VXFORM_UIMM(vsplth, 6, 9); | |
6429 | GEN_VXFORM_UIMM(vspltw, 6, 10); | |
e140632e AJ |
6430 | GEN_VXFORM_UIMM(vcfux, 5, 12); |
6431 | GEN_VXFORM_UIMM(vcfsx, 5, 13); | |
875b31db AJ |
6432 | GEN_VXFORM_UIMM(vctuxs, 5, 14); |
6433 | GEN_VXFORM_UIMM(vctsxs, 5, 15); | |
e4e6bee7 | 6434 | |
99e300ef | 6435 | static void gen_vsldoi(DisasContext *ctx) |
cd633b10 AJ |
6436 | { |
6437 | TCGv_ptr ra, rb, rd; | |
fce5ecb7 | 6438 | TCGv_i32 sh; |
cd633b10 AJ |
6439 | if (unlikely(!ctx->altivec_enabled)) { |
6440 | gen_exception(ctx, POWERPC_EXCP_VPU); | |
6441 | return; | |
6442 | } | |
6443 | ra = gen_avr_ptr(rA(ctx->opcode)); | |
6444 | rb = gen_avr_ptr(rB(ctx->opcode)); | |
6445 | rd = gen_avr_ptr(rD(ctx->opcode)); | |
6446 | sh = tcg_const_i32(VSH(ctx->opcode)); | |
6447 | gen_helper_vsldoi (rd, ra, rb, sh); | |
6448 | tcg_temp_free_ptr(ra); | |
6449 | tcg_temp_free_ptr(rb); | |
6450 | tcg_temp_free_ptr(rd); | |
fce5ecb7 | 6451 | tcg_temp_free_i32(sh); |
cd633b10 AJ |
6452 | } |
6453 | ||
707cec33 | 6454 | #define GEN_VAFORM_PAIRED(name0, name1, opc2) \ |
99e300ef | 6455 | static void glue(gen_, name0##_##name1)(DisasContext *ctx) \ |
707cec33 AJ |
6456 | { \ |
6457 | TCGv_ptr ra, rb, rc, rd; \ | |
6458 | if (unlikely(!ctx->altivec_enabled)) { \ | |
6459 | gen_exception(ctx, POWERPC_EXCP_VPU); \ | |
6460 | return; \ | |
6461 | } \ | |
6462 | ra = gen_avr_ptr(rA(ctx->opcode)); \ | |
6463 | rb = gen_avr_ptr(rB(ctx->opcode)); \ | |
6464 | rc = gen_avr_ptr(rC(ctx->opcode)); \ | |
6465 | rd = gen_avr_ptr(rD(ctx->opcode)); \ | |
6466 | if (Rc(ctx->opcode)) { \ | |
6467 | gen_helper_##name1 (rd, ra, rb, rc); \ | |
6468 | } else { \ | |
6469 | gen_helper_##name0 (rd, ra, rb, rc); \ | |
6470 | } \ | |
6471 | tcg_temp_free_ptr(ra); \ | |
6472 | tcg_temp_free_ptr(rb); \ | |
6473 | tcg_temp_free_ptr(rc); \ | |
6474 | tcg_temp_free_ptr(rd); \ | |
6475 | } | |
6476 | ||
b161ae27 AJ |
6477 | GEN_VAFORM_PAIRED(vmhaddshs, vmhraddshs, 16) |
6478 | ||
99e300ef | 6479 | static void gen_vmladduhm(DisasContext *ctx) |
bcd2ee23 AJ |
6480 | { |
6481 | TCGv_ptr ra, rb, rc, rd; | |
6482 | if (unlikely(!ctx->altivec_enabled)) { | |
6483 | gen_exception(ctx, POWERPC_EXCP_VPU); | |
6484 | return; | |
6485 | } | |
6486 | ra = gen_avr_ptr(rA(ctx->opcode)); | |
6487 | rb = gen_avr_ptr(rB(ctx->opcode)); | |
6488 | rc = gen_avr_ptr(rC(ctx->opcode)); | |
6489 | rd = gen_avr_ptr(rD(ctx->opcode)); | |
6490 | gen_helper_vmladduhm(rd, ra, rb, rc); | |
6491 | tcg_temp_free_ptr(ra); | |
6492 | tcg_temp_free_ptr(rb); | |
6493 | tcg_temp_free_ptr(rc); | |
6494 | tcg_temp_free_ptr(rd); | |
6495 | } | |
6496 | ||
b04ae981 | 6497 | GEN_VAFORM_PAIRED(vmsumubm, vmsummbm, 18) |
4d9903b6 | 6498 | GEN_VAFORM_PAIRED(vmsumuhm, vmsumuhs, 19) |
eae07261 | 6499 | GEN_VAFORM_PAIRED(vmsumshm, vmsumshs, 20) |
d1258698 | 6500 | GEN_VAFORM_PAIRED(vsel, vperm, 21) |
35cf7c7e | 6501 | GEN_VAFORM_PAIRED(vmaddfp, vnmsubfp, 23) |
b04ae981 | 6502 | |
0487d6a8 | 6503 | /*** SPE extension ***/ |
0487d6a8 | 6504 | /* Register moves */ |
3cd7d1dd | 6505 | |
636aa200 BS |
6506 | static inline void gen_load_gpr64(TCGv_i64 t, int reg) |
6507 | { | |
f78fb44e AJ |
6508 | #if defined(TARGET_PPC64) |
6509 | tcg_gen_mov_i64(t, cpu_gpr[reg]); | |
6510 | #else | |
36aa55dc | 6511 | tcg_gen_concat_i32_i64(t, cpu_gpr[reg], cpu_gprh[reg]); |
3cd7d1dd | 6512 | #endif |
f78fb44e | 6513 | } |
3cd7d1dd | 6514 | |
636aa200 BS |
6515 | static inline void gen_store_gpr64(int reg, TCGv_i64 t) |
6516 | { | |
f78fb44e AJ |
6517 | #if defined(TARGET_PPC64) |
6518 | tcg_gen_mov_i64(cpu_gpr[reg], t); | |
6519 | #else | |
a7812ae4 | 6520 | TCGv_i64 tmp = tcg_temp_new_i64(); |
f78fb44e | 6521 | tcg_gen_trunc_i64_i32(cpu_gpr[reg], t); |
f78fb44e AJ |
6522 | tcg_gen_shri_i64(tmp, t, 32); |
6523 | tcg_gen_trunc_i64_i32(cpu_gprh[reg], tmp); | |
a7812ae4 | 6524 | tcg_temp_free_i64(tmp); |
3cd7d1dd | 6525 | #endif |
f78fb44e | 6526 | } |
3cd7d1dd | 6527 | |
0487d6a8 | 6528 | #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \ |
99e300ef | 6529 | static void glue(gen_, name0##_##name1)(DisasContext *ctx) \ |
0487d6a8 JM |
6530 | { \ |
6531 | if (Rc(ctx->opcode)) \ | |
6532 | gen_##name1(ctx); \ | |
6533 | else \ | |
6534 | gen_##name0(ctx); \ | |
6535 | } | |
6536 | ||
6537 | /* Handler for undefined SPE opcodes */ | |
636aa200 | 6538 | static inline void gen_speundef(DisasContext *ctx) |
0487d6a8 | 6539 | { |
e06fcd75 | 6540 | gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); |
0487d6a8 JM |
6541 | } |
6542 | ||
57951c27 AJ |
6543 | /* SPE logic */ |
6544 | #if defined(TARGET_PPC64) | |
6545 | #define GEN_SPEOP_LOGIC2(name, tcg_op) \ | |
636aa200 | 6546 | static inline void gen_##name(DisasContext *ctx) \ |
0487d6a8 JM |
6547 | { \ |
6548 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6549 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
0487d6a8 JM |
6550 | return; \ |
6551 | } \ | |
57951c27 AJ |
6552 | tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \ |
6553 | cpu_gpr[rB(ctx->opcode)]); \ | |
6554 | } | |
6555 | #else | |
6556 | #define GEN_SPEOP_LOGIC2(name, tcg_op) \ | |
636aa200 | 6557 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
6558 | { \ |
6559 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6560 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
6561 | return; \ |
6562 | } \ | |
6563 | tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \ | |
6564 | cpu_gpr[rB(ctx->opcode)]); \ | |
6565 | tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \ | |
6566 | cpu_gprh[rB(ctx->opcode)]); \ | |
0487d6a8 | 6567 | } |
57951c27 AJ |
6568 | #endif |
6569 | ||
6570 | GEN_SPEOP_LOGIC2(evand, tcg_gen_and_tl); | |
6571 | GEN_SPEOP_LOGIC2(evandc, tcg_gen_andc_tl); | |
6572 | GEN_SPEOP_LOGIC2(evxor, tcg_gen_xor_tl); | |
6573 | GEN_SPEOP_LOGIC2(evor, tcg_gen_or_tl); | |
6574 | GEN_SPEOP_LOGIC2(evnor, tcg_gen_nor_tl); | |
6575 | GEN_SPEOP_LOGIC2(eveqv, tcg_gen_eqv_tl); | |
6576 | GEN_SPEOP_LOGIC2(evorc, tcg_gen_orc_tl); | |
6577 | GEN_SPEOP_LOGIC2(evnand, tcg_gen_nand_tl); | |
0487d6a8 | 6578 | |
57951c27 AJ |
6579 | /* SPE logic immediate */ |
6580 | #if defined(TARGET_PPC64) | |
6581 | #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \ | |
636aa200 | 6582 | static inline void gen_##name(DisasContext *ctx) \ |
3d3a6a0a AJ |
6583 | { \ |
6584 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6585 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
3d3a6a0a AJ |
6586 | return; \ |
6587 | } \ | |
a7812ae4 PB |
6588 | TCGv_i32 t0 = tcg_temp_local_new_i32(); \ |
6589 | TCGv_i32 t1 = tcg_temp_local_new_i32(); \ | |
6590 | TCGv_i64 t2 = tcg_temp_local_new_i64(); \ | |
57951c27 AJ |
6591 | tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \ |
6592 | tcg_opi(t0, t0, rB(ctx->opcode)); \ | |
6593 | tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \ | |
6594 | tcg_gen_trunc_i64_i32(t1, t2); \ | |
a7812ae4 | 6595 | tcg_temp_free_i64(t2); \ |
57951c27 AJ |
6596 | tcg_opi(t1, t1, rB(ctx->opcode)); \ |
6597 | tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \ | |
a7812ae4 PB |
6598 | tcg_temp_free_i32(t0); \ |
6599 | tcg_temp_free_i32(t1); \ | |
3d3a6a0a | 6600 | } |
57951c27 AJ |
6601 | #else |
6602 | #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \ | |
636aa200 | 6603 | static inline void gen_##name(DisasContext *ctx) \ |
0487d6a8 JM |
6604 | { \ |
6605 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6606 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
0487d6a8 JM |
6607 | return; \ |
6608 | } \ | |
57951c27 AJ |
6609 | tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \ |
6610 | rB(ctx->opcode)); \ | |
6611 | tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \ | |
6612 | rB(ctx->opcode)); \ | |
0487d6a8 | 6613 | } |
57951c27 AJ |
6614 | #endif |
6615 | GEN_SPEOP_TCG_LOGIC_IMM2(evslwi, tcg_gen_shli_i32); | |
6616 | GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu, tcg_gen_shri_i32); | |
6617 | GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis, tcg_gen_sari_i32); | |
6618 | GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi, tcg_gen_rotli_i32); | |
0487d6a8 | 6619 | |
57951c27 AJ |
6620 | /* SPE arithmetic */ |
6621 | #if defined(TARGET_PPC64) | |
6622 | #define GEN_SPEOP_ARITH1(name, tcg_op) \ | |
636aa200 | 6623 | static inline void gen_##name(DisasContext *ctx) \ |
0487d6a8 JM |
6624 | { \ |
6625 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6626 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
0487d6a8 JM |
6627 | return; \ |
6628 | } \ | |
a7812ae4 PB |
6629 | TCGv_i32 t0 = tcg_temp_local_new_i32(); \ |
6630 | TCGv_i32 t1 = tcg_temp_local_new_i32(); \ | |
6631 | TCGv_i64 t2 = tcg_temp_local_new_i64(); \ | |
57951c27 AJ |
6632 | tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \ |
6633 | tcg_op(t0, t0); \ | |
6634 | tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \ | |
6635 | tcg_gen_trunc_i64_i32(t1, t2); \ | |
a7812ae4 | 6636 | tcg_temp_free_i64(t2); \ |
57951c27 AJ |
6637 | tcg_op(t1, t1); \ |
6638 | tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \ | |
a7812ae4 PB |
6639 | tcg_temp_free_i32(t0); \ |
6640 | tcg_temp_free_i32(t1); \ | |
0487d6a8 | 6641 | } |
57951c27 | 6642 | #else |
a7812ae4 | 6643 | #define GEN_SPEOP_ARITH1(name, tcg_op) \ |
636aa200 | 6644 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
6645 | { \ |
6646 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6647 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
6648 | return; \ |
6649 | } \ | |
6650 | tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \ | |
6651 | tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \ | |
6652 | } | |
6653 | #endif | |
0487d6a8 | 6654 | |
636aa200 | 6655 | static inline void gen_op_evabs(TCGv_i32 ret, TCGv_i32 arg1) |
57951c27 AJ |
6656 | { |
6657 | int l1 = gen_new_label(); | |
6658 | int l2 = gen_new_label(); | |
0487d6a8 | 6659 | |
57951c27 AJ |
6660 | tcg_gen_brcondi_i32(TCG_COND_GE, arg1, 0, l1); |
6661 | tcg_gen_neg_i32(ret, arg1); | |
6662 | tcg_gen_br(l2); | |
6663 | gen_set_label(l1); | |
a7812ae4 | 6664 | tcg_gen_mov_i32(ret, arg1); |
57951c27 AJ |
6665 | gen_set_label(l2); |
6666 | } | |
6667 | GEN_SPEOP_ARITH1(evabs, gen_op_evabs); | |
6668 | GEN_SPEOP_ARITH1(evneg, tcg_gen_neg_i32); | |
6669 | GEN_SPEOP_ARITH1(evextsb, tcg_gen_ext8s_i32); | |
6670 | GEN_SPEOP_ARITH1(evextsh, tcg_gen_ext16s_i32); | |
636aa200 | 6671 | static inline void gen_op_evrndw(TCGv_i32 ret, TCGv_i32 arg1) |
0487d6a8 | 6672 | { |
57951c27 AJ |
6673 | tcg_gen_addi_i32(ret, arg1, 0x8000); |
6674 | tcg_gen_ext16u_i32(ret, ret); | |
6675 | } | |
6676 | GEN_SPEOP_ARITH1(evrndw, gen_op_evrndw); | |
a7812ae4 PB |
6677 | GEN_SPEOP_ARITH1(evcntlsw, gen_helper_cntlsw32); |
6678 | GEN_SPEOP_ARITH1(evcntlzw, gen_helper_cntlzw32); | |
0487d6a8 | 6679 | |
57951c27 AJ |
6680 | #if defined(TARGET_PPC64) |
6681 | #define GEN_SPEOP_ARITH2(name, tcg_op) \ | |
636aa200 | 6682 | static inline void gen_##name(DisasContext *ctx) \ |
0487d6a8 JM |
6683 | { \ |
6684 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6685 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
0487d6a8 JM |
6686 | return; \ |
6687 | } \ | |
a7812ae4 PB |
6688 | TCGv_i32 t0 = tcg_temp_local_new_i32(); \ |
6689 | TCGv_i32 t1 = tcg_temp_local_new_i32(); \ | |
6690 | TCGv_i32 t2 = tcg_temp_local_new_i32(); \ | |
501e23c4 | 6691 | TCGv_i64 t3 = tcg_temp_local_new_i64(); \ |
57951c27 AJ |
6692 | tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \ |
6693 | tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \ | |
6694 | tcg_op(t0, t0, t2); \ | |
6695 | tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \ | |
6696 | tcg_gen_trunc_i64_i32(t1, t3); \ | |
6697 | tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \ | |
6698 | tcg_gen_trunc_i64_i32(t2, t3); \ | |
a7812ae4 | 6699 | tcg_temp_free_i64(t3); \ |
57951c27 | 6700 | tcg_op(t1, t1, t2); \ |
a7812ae4 | 6701 | tcg_temp_free_i32(t2); \ |
57951c27 | 6702 | tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \ |
a7812ae4 PB |
6703 | tcg_temp_free_i32(t0); \ |
6704 | tcg_temp_free_i32(t1); \ | |
0487d6a8 | 6705 | } |
57951c27 AJ |
6706 | #else |
6707 | #define GEN_SPEOP_ARITH2(name, tcg_op) \ | |
636aa200 | 6708 | static inline void gen_##name(DisasContext *ctx) \ |
0487d6a8 JM |
6709 | { \ |
6710 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6711 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
0487d6a8 JM |
6712 | return; \ |
6713 | } \ | |
57951c27 AJ |
6714 | tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \ |
6715 | cpu_gpr[rB(ctx->opcode)]); \ | |
6716 | tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \ | |
6717 | cpu_gprh[rB(ctx->opcode)]); \ | |
0487d6a8 | 6718 | } |
57951c27 | 6719 | #endif |
0487d6a8 | 6720 | |
636aa200 | 6721 | static inline void gen_op_evsrwu(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) |
57951c27 | 6722 | { |
a7812ae4 | 6723 | TCGv_i32 t0; |
57951c27 | 6724 | int l1, l2; |
0487d6a8 | 6725 | |
57951c27 AJ |
6726 | l1 = gen_new_label(); |
6727 | l2 = gen_new_label(); | |
a7812ae4 | 6728 | t0 = tcg_temp_local_new_i32(); |
57951c27 AJ |
6729 | /* No error here: 6 bits are used */ |
6730 | tcg_gen_andi_i32(t0, arg2, 0x3F); | |
6731 | tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1); | |
6732 | tcg_gen_shr_i32(ret, arg1, t0); | |
6733 | tcg_gen_br(l2); | |
6734 | gen_set_label(l1); | |
6735 | tcg_gen_movi_i32(ret, 0); | |
6736 | tcg_gen_br(l2); | |
a7812ae4 | 6737 | tcg_temp_free_i32(t0); |
57951c27 AJ |
6738 | } |
6739 | GEN_SPEOP_ARITH2(evsrwu, gen_op_evsrwu); | |
636aa200 | 6740 | static inline void gen_op_evsrws(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) |
57951c27 | 6741 | { |
a7812ae4 | 6742 | TCGv_i32 t0; |
57951c27 AJ |
6743 | int l1, l2; |
6744 | ||
6745 | l1 = gen_new_label(); | |
6746 | l2 = gen_new_label(); | |
a7812ae4 | 6747 | t0 = tcg_temp_local_new_i32(); |
57951c27 AJ |
6748 | /* No error here: 6 bits are used */ |
6749 | tcg_gen_andi_i32(t0, arg2, 0x3F); | |
6750 | tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1); | |
6751 | tcg_gen_sar_i32(ret, arg1, t0); | |
6752 | tcg_gen_br(l2); | |
6753 | gen_set_label(l1); | |
6754 | tcg_gen_movi_i32(ret, 0); | |
6755 | tcg_gen_br(l2); | |
a7812ae4 | 6756 | tcg_temp_free_i32(t0); |
57951c27 AJ |
6757 | } |
6758 | GEN_SPEOP_ARITH2(evsrws, gen_op_evsrws); | |
636aa200 | 6759 | static inline void gen_op_evslw(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) |
57951c27 | 6760 | { |
a7812ae4 | 6761 | TCGv_i32 t0; |
57951c27 AJ |
6762 | int l1, l2; |
6763 | ||
6764 | l1 = gen_new_label(); | |
6765 | l2 = gen_new_label(); | |
a7812ae4 | 6766 | t0 = tcg_temp_local_new_i32(); |
57951c27 AJ |
6767 | /* No error here: 6 bits are used */ |
6768 | tcg_gen_andi_i32(t0, arg2, 0x3F); | |
6769 | tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1); | |
6770 | tcg_gen_shl_i32(ret, arg1, t0); | |
6771 | tcg_gen_br(l2); | |
6772 | gen_set_label(l1); | |
6773 | tcg_gen_movi_i32(ret, 0); | |
6774 | tcg_gen_br(l2); | |
a7812ae4 | 6775 | tcg_temp_free_i32(t0); |
57951c27 AJ |
6776 | } |
6777 | GEN_SPEOP_ARITH2(evslw, gen_op_evslw); | |
636aa200 | 6778 | static inline void gen_op_evrlw(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) |
57951c27 | 6779 | { |
a7812ae4 | 6780 | TCGv_i32 t0 = tcg_temp_new_i32(); |
57951c27 AJ |
6781 | tcg_gen_andi_i32(t0, arg2, 0x1F); |
6782 | tcg_gen_rotl_i32(ret, arg1, t0); | |
a7812ae4 | 6783 | tcg_temp_free_i32(t0); |
57951c27 AJ |
6784 | } |
6785 | GEN_SPEOP_ARITH2(evrlw, gen_op_evrlw); | |
636aa200 | 6786 | static inline void gen_evmergehi(DisasContext *ctx) |
57951c27 AJ |
6787 | { |
6788 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 6789 | gen_exception(ctx, POWERPC_EXCP_APU); |
57951c27 AJ |
6790 | return; |
6791 | } | |
6792 | #if defined(TARGET_PPC64) | |
a7812ae4 PB |
6793 | TCGv t0 = tcg_temp_new(); |
6794 | TCGv t1 = tcg_temp_new(); | |
57951c27 AJ |
6795 | tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32); |
6796 | tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL); | |
6797 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1); | |
6798 | tcg_temp_free(t0); | |
6799 | tcg_temp_free(t1); | |
6800 | #else | |
6801 | tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]); | |
6802 | tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); | |
6803 | #endif | |
6804 | } | |
6805 | GEN_SPEOP_ARITH2(evaddw, tcg_gen_add_i32); | |
636aa200 | 6806 | static inline void gen_op_evsubf(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) |
0487d6a8 | 6807 | { |
57951c27 AJ |
6808 | tcg_gen_sub_i32(ret, arg2, arg1); |
6809 | } | |
6810 | GEN_SPEOP_ARITH2(evsubfw, gen_op_evsubf); | |
0487d6a8 | 6811 | |
57951c27 AJ |
6812 | /* SPE arithmetic immediate */ |
6813 | #if defined(TARGET_PPC64) | |
6814 | #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \ | |
636aa200 | 6815 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
6816 | { \ |
6817 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6818 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
6819 | return; \ |
6820 | } \ | |
a7812ae4 PB |
6821 | TCGv_i32 t0 = tcg_temp_local_new_i32(); \ |
6822 | TCGv_i32 t1 = tcg_temp_local_new_i32(); \ | |
6823 | TCGv_i64 t2 = tcg_temp_local_new_i64(); \ | |
57951c27 AJ |
6824 | tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \ |
6825 | tcg_op(t0, t0, rA(ctx->opcode)); \ | |
6826 | tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \ | |
6827 | tcg_gen_trunc_i64_i32(t1, t2); \ | |
e06fcd75 | 6828 | tcg_temp_free_i64(t2); \ |
57951c27 AJ |
6829 | tcg_op(t1, t1, rA(ctx->opcode)); \ |
6830 | tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \ | |
a7812ae4 PB |
6831 | tcg_temp_free_i32(t0); \ |
6832 | tcg_temp_free_i32(t1); \ | |
57951c27 AJ |
6833 | } |
6834 | #else | |
6835 | #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \ | |
636aa200 | 6836 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
6837 | { \ |
6838 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6839 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
6840 | return; \ |
6841 | } \ | |
6842 | tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \ | |
6843 | rA(ctx->opcode)); \ | |
6844 | tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \ | |
6845 | rA(ctx->opcode)); \ | |
6846 | } | |
6847 | #endif | |
6848 | GEN_SPEOP_ARITH_IMM2(evaddiw, tcg_gen_addi_i32); | |
6849 | GEN_SPEOP_ARITH_IMM2(evsubifw, tcg_gen_subi_i32); | |
6850 | ||
6851 | /* SPE comparison */ | |
6852 | #if defined(TARGET_PPC64) | |
6853 | #define GEN_SPEOP_COMP(name, tcg_cond) \ | |
636aa200 | 6854 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
6855 | { \ |
6856 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6857 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
6858 | return; \ |
6859 | } \ | |
6860 | int l1 = gen_new_label(); \ | |
6861 | int l2 = gen_new_label(); \ | |
6862 | int l3 = gen_new_label(); \ | |
6863 | int l4 = gen_new_label(); \ | |
a7812ae4 PB |
6864 | TCGv_i32 t0 = tcg_temp_local_new_i32(); \ |
6865 | TCGv_i32 t1 = tcg_temp_local_new_i32(); \ | |
6866 | TCGv_i64 t2 = tcg_temp_local_new_i64(); \ | |
57951c27 AJ |
6867 | tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \ |
6868 | tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \ | |
6869 | tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \ | |
a7812ae4 | 6870 | tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \ |
57951c27 AJ |
6871 | tcg_gen_br(l2); \ |
6872 | gen_set_label(l1); \ | |
6873 | tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \ | |
6874 | CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \ | |
6875 | gen_set_label(l2); \ | |
6876 | tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \ | |
6877 | tcg_gen_trunc_i64_i32(t0, t2); \ | |
6878 | tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \ | |
6879 | tcg_gen_trunc_i64_i32(t1, t2); \ | |
a7812ae4 | 6880 | tcg_temp_free_i64(t2); \ |
57951c27 AJ |
6881 | tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \ |
6882 | tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \ | |
6883 | ~(CRF_CH | CRF_CH_AND_CL)); \ | |
6884 | tcg_gen_br(l4); \ | |
6885 | gen_set_label(l3); \ | |
6886 | tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \ | |
6887 | CRF_CH | CRF_CH_OR_CL); \ | |
6888 | gen_set_label(l4); \ | |
a7812ae4 PB |
6889 | tcg_temp_free_i32(t0); \ |
6890 | tcg_temp_free_i32(t1); \ | |
57951c27 AJ |
6891 | } |
6892 | #else | |
6893 | #define GEN_SPEOP_COMP(name, tcg_cond) \ | |
636aa200 | 6894 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
6895 | { \ |
6896 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 6897 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
6898 | return; \ |
6899 | } \ | |
6900 | int l1 = gen_new_label(); \ | |
6901 | int l2 = gen_new_label(); \ | |
6902 | int l3 = gen_new_label(); \ | |
6903 | int l4 = gen_new_label(); \ | |
6904 | \ | |
6905 | tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \ | |
6906 | cpu_gpr[rB(ctx->opcode)], l1); \ | |
6907 | tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \ | |
6908 | tcg_gen_br(l2); \ | |
6909 | gen_set_label(l1); \ | |
6910 | tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \ | |
6911 | CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \ | |
6912 | gen_set_label(l2); \ | |
6913 | tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \ | |
6914 | cpu_gprh[rB(ctx->opcode)], l3); \ | |
6915 | tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \ | |
6916 | ~(CRF_CH | CRF_CH_AND_CL)); \ | |
6917 | tcg_gen_br(l4); \ | |
6918 | gen_set_label(l3); \ | |
6919 | tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \ | |
6920 | CRF_CH | CRF_CH_OR_CL); \ | |
6921 | gen_set_label(l4); \ | |
6922 | } | |
6923 | #endif | |
6924 | GEN_SPEOP_COMP(evcmpgtu, TCG_COND_GTU); | |
6925 | GEN_SPEOP_COMP(evcmpgts, TCG_COND_GT); | |
6926 | GEN_SPEOP_COMP(evcmpltu, TCG_COND_LTU); | |
6927 | GEN_SPEOP_COMP(evcmplts, TCG_COND_LT); | |
6928 | GEN_SPEOP_COMP(evcmpeq, TCG_COND_EQ); | |
6929 | ||
6930 | /* SPE misc */ | |
636aa200 | 6931 | static inline void gen_brinc(DisasContext *ctx) |
57951c27 AJ |
6932 | { |
6933 | /* Note: brinc is usable even if SPE is disabled */ | |
a7812ae4 PB |
6934 | gen_helper_brinc(cpu_gpr[rD(ctx->opcode)], |
6935 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
0487d6a8 | 6936 | } |
636aa200 | 6937 | static inline void gen_evmergelo(DisasContext *ctx) |
57951c27 AJ |
6938 | { |
6939 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 6940 | gen_exception(ctx, POWERPC_EXCP_APU); |
57951c27 AJ |
6941 | return; |
6942 | } | |
6943 | #if defined(TARGET_PPC64) | |
a7812ae4 PB |
6944 | TCGv t0 = tcg_temp_new(); |
6945 | TCGv t1 = tcg_temp_new(); | |
57951c27 AJ |
6946 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFLL); |
6947 | tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32); | |
6948 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1); | |
6949 | tcg_temp_free(t0); | |
6950 | tcg_temp_free(t1); | |
6951 | #else | |
57951c27 | 6952 | tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); |
33890b3e | 6953 | tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); |
57951c27 AJ |
6954 | #endif |
6955 | } | |
636aa200 | 6956 | static inline void gen_evmergehilo(DisasContext *ctx) |
57951c27 AJ |
6957 | { |
6958 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 6959 | gen_exception(ctx, POWERPC_EXCP_APU); |
57951c27 AJ |
6960 | return; |
6961 | } | |
6962 | #if defined(TARGET_PPC64) | |
a7812ae4 PB |
6963 | TCGv t0 = tcg_temp_new(); |
6964 | TCGv t1 = tcg_temp_new(); | |
57951c27 AJ |
6965 | tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFLL); |
6966 | tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL); | |
6967 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1); | |
6968 | tcg_temp_free(t0); | |
6969 | tcg_temp_free(t1); | |
6970 | #else | |
6971 | tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
6972 | tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); | |
6973 | #endif | |
6974 | } | |
636aa200 | 6975 | static inline void gen_evmergelohi(DisasContext *ctx) |
57951c27 AJ |
6976 | { |
6977 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 6978 | gen_exception(ctx, POWERPC_EXCP_APU); |
57951c27 AJ |
6979 | return; |
6980 | } | |
6981 | #if defined(TARGET_PPC64) | |
a7812ae4 PB |
6982 | TCGv t0 = tcg_temp_new(); |
6983 | TCGv t1 = tcg_temp_new(); | |
57951c27 AJ |
6984 | tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32); |
6985 | tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32); | |
6986 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1); | |
6987 | tcg_temp_free(t0); | |
6988 | tcg_temp_free(t1); | |
6989 | #else | |
33890b3e NF |
6990 | if (rD(ctx->opcode) == rA(ctx->opcode)) { |
6991 | TCGv_i32 tmp = tcg_temp_new_i32(); | |
6992 | tcg_gen_mov_i32(tmp, cpu_gpr[rA(ctx->opcode)]); | |
6993 | tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]); | |
6994 | tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], tmp); | |
6995 | tcg_temp_free_i32(tmp); | |
6996 | } else { | |
6997 | tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]); | |
6998 | tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
6999 | } | |
57951c27 AJ |
7000 | #endif |
7001 | } | |
636aa200 | 7002 | static inline void gen_evsplati(DisasContext *ctx) |
57951c27 | 7003 | { |
38d14952 | 7004 | uint64_t imm = ((int32_t)(rA(ctx->opcode) << 11)) >> 27; |
0487d6a8 | 7005 | |
57951c27 | 7006 | #if defined(TARGET_PPC64) |
38d14952 | 7007 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm); |
57951c27 AJ |
7008 | #else |
7009 | tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm); | |
7010 | tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm); | |
7011 | #endif | |
7012 | } | |
636aa200 | 7013 | static inline void gen_evsplatfi(DisasContext *ctx) |
0487d6a8 | 7014 | { |
38d14952 | 7015 | uint64_t imm = rA(ctx->opcode) << 11; |
0487d6a8 | 7016 | |
57951c27 | 7017 | #if defined(TARGET_PPC64) |
38d14952 | 7018 | tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm); |
57951c27 AJ |
7019 | #else |
7020 | tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm); | |
7021 | tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm); | |
7022 | #endif | |
0487d6a8 JM |
7023 | } |
7024 | ||
636aa200 | 7025 | static inline void gen_evsel(DisasContext *ctx) |
57951c27 AJ |
7026 | { |
7027 | int l1 = gen_new_label(); | |
7028 | int l2 = gen_new_label(); | |
7029 | int l3 = gen_new_label(); | |
7030 | int l4 = gen_new_label(); | |
a7812ae4 | 7031 | TCGv_i32 t0 = tcg_temp_local_new_i32(); |
57951c27 | 7032 | #if defined(TARGET_PPC64) |
a7812ae4 PB |
7033 | TCGv t1 = tcg_temp_local_new(); |
7034 | TCGv t2 = tcg_temp_local_new(); | |
57951c27 AJ |
7035 | #endif |
7036 | tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 3); | |
7037 | tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1); | |
7038 | #if defined(TARGET_PPC64) | |
7039 | tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF00000000ULL); | |
7040 | #else | |
7041 | tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); | |
7042 | #endif | |
7043 | tcg_gen_br(l2); | |
7044 | gen_set_label(l1); | |
7045 | #if defined(TARGET_PPC64) | |
7046 | tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0xFFFFFFFF00000000ULL); | |
7047 | #else | |
7048 | tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]); | |
7049 | #endif | |
7050 | gen_set_label(l2); | |
7051 | tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 2); | |
7052 | tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l3); | |
7053 | #if defined(TARGET_PPC64) | |
7054 | tcg_gen_andi_tl(t2, cpu_gpr[rA(ctx->opcode)], 0x00000000FFFFFFFFULL); | |
7055 | #else | |
7056 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); | |
7057 | #endif | |
7058 | tcg_gen_br(l4); | |
7059 | gen_set_label(l3); | |
7060 | #if defined(TARGET_PPC64) | |
7061 | tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFULL); | |
7062 | #else | |
7063 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); | |
7064 | #endif | |
7065 | gen_set_label(l4); | |
a7812ae4 | 7066 | tcg_temp_free_i32(t0); |
57951c27 AJ |
7067 | #if defined(TARGET_PPC64) |
7068 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t1, t2); | |
7069 | tcg_temp_free(t1); | |
7070 | tcg_temp_free(t2); | |
7071 | #endif | |
7072 | } | |
e8eaa2c0 BS |
7073 | |
7074 | static void gen_evsel0(DisasContext *ctx) | |
57951c27 AJ |
7075 | { |
7076 | gen_evsel(ctx); | |
7077 | } | |
e8eaa2c0 BS |
7078 | |
7079 | static void gen_evsel1(DisasContext *ctx) | |
57951c27 AJ |
7080 | { |
7081 | gen_evsel(ctx); | |
7082 | } | |
e8eaa2c0 BS |
7083 | |
7084 | static void gen_evsel2(DisasContext *ctx) | |
57951c27 AJ |
7085 | { |
7086 | gen_evsel(ctx); | |
7087 | } | |
e8eaa2c0 BS |
7088 | |
7089 | static void gen_evsel3(DisasContext *ctx) | |
57951c27 AJ |
7090 | { |
7091 | gen_evsel(ctx); | |
7092 | } | |
0487d6a8 JM |
7093 | |
7094 | GEN_SPE(evaddw, speundef, 0x00, 0x08, 0x00000000, PPC_SPE); //// | |
7095 | GEN_SPE(evaddiw, speundef, 0x01, 0x08, 0x00000000, PPC_SPE); | |
7096 | GEN_SPE(evsubfw, speundef, 0x02, 0x08, 0x00000000, PPC_SPE); //// | |
7097 | GEN_SPE(evsubifw, speundef, 0x03, 0x08, 0x00000000, PPC_SPE); | |
7098 | GEN_SPE(evabs, evneg, 0x04, 0x08, 0x0000F800, PPC_SPE); //// | |
7099 | GEN_SPE(evextsb, evextsh, 0x05, 0x08, 0x0000F800, PPC_SPE); //// | |
7100 | GEN_SPE(evrndw, evcntlzw, 0x06, 0x08, 0x0000F800, PPC_SPE); //// | |
7101 | GEN_SPE(evcntlsw, brinc, 0x07, 0x08, 0x00000000, PPC_SPE); // | |
7102 | GEN_SPE(speundef, evand, 0x08, 0x08, 0x00000000, PPC_SPE); //// | |
7103 | GEN_SPE(evandc, speundef, 0x09, 0x08, 0x00000000, PPC_SPE); //// | |
7104 | GEN_SPE(evxor, evor, 0x0B, 0x08, 0x00000000, PPC_SPE); //// | |
7105 | GEN_SPE(evnor, eveqv, 0x0C, 0x08, 0x00000000, PPC_SPE); //// | |
7106 | GEN_SPE(speundef, evorc, 0x0D, 0x08, 0x00000000, PPC_SPE); //// | |
7107 | GEN_SPE(evnand, speundef, 0x0F, 0x08, 0x00000000, PPC_SPE); //// | |
7108 | GEN_SPE(evsrwu, evsrws, 0x10, 0x08, 0x00000000, PPC_SPE); //// | |
7109 | GEN_SPE(evsrwiu, evsrwis, 0x11, 0x08, 0x00000000, PPC_SPE); | |
7110 | GEN_SPE(evslw, speundef, 0x12, 0x08, 0x00000000, PPC_SPE); //// | |
7111 | GEN_SPE(evslwi, speundef, 0x13, 0x08, 0x00000000, PPC_SPE); | |
7112 | GEN_SPE(evrlw, evsplati, 0x14, 0x08, 0x00000000, PPC_SPE); // | |
7113 | GEN_SPE(evrlwi, evsplatfi, 0x15, 0x08, 0x00000000, PPC_SPE); | |
7114 | GEN_SPE(evmergehi, evmergelo, 0x16, 0x08, 0x00000000, PPC_SPE); //// | |
7115 | GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, PPC_SPE); //// | |
7116 | GEN_SPE(evcmpgtu, evcmpgts, 0x18, 0x08, 0x00600000, PPC_SPE); //// | |
7117 | GEN_SPE(evcmpltu, evcmplts, 0x19, 0x08, 0x00600000, PPC_SPE); //// | |
7118 | GEN_SPE(evcmpeq, speundef, 0x1A, 0x08, 0x00600000, PPC_SPE); //// | |
7119 | ||
6a6ae23f | 7120 | /* SPE load and stores */ |
636aa200 | 7121 | static inline void gen_addr_spe_imm_index(DisasContext *ctx, TCGv EA, int sh) |
6a6ae23f AJ |
7122 | { |
7123 | target_ulong uimm = rB(ctx->opcode); | |
7124 | ||
76db3ba4 | 7125 | if (rA(ctx->opcode) == 0) { |
6a6ae23f | 7126 | tcg_gen_movi_tl(EA, uimm << sh); |
76db3ba4 | 7127 | } else { |
6a6ae23f | 7128 | tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], uimm << sh); |
76db3ba4 AJ |
7129 | #if defined(TARGET_PPC64) |
7130 | if (!ctx->sf_mode) { | |
7131 | tcg_gen_ext32u_tl(EA, EA); | |
7132 | } | |
7133 | #endif | |
7134 | } | |
0487d6a8 | 7135 | } |
6a6ae23f | 7136 | |
636aa200 | 7137 | static inline void gen_op_evldd(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7138 | { |
7139 | #if defined(TARGET_PPC64) | |
76db3ba4 | 7140 | gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], addr); |
6a6ae23f AJ |
7141 | #else |
7142 | TCGv_i64 t0 = tcg_temp_new_i64(); | |
76db3ba4 | 7143 | gen_qemu_ld64(ctx, t0, addr); |
6a6ae23f AJ |
7144 | tcg_gen_trunc_i64_i32(cpu_gpr[rD(ctx->opcode)], t0); |
7145 | tcg_gen_shri_i64(t0, t0, 32); | |
7146 | tcg_gen_trunc_i64_i32(cpu_gprh[rD(ctx->opcode)], t0); | |
7147 | tcg_temp_free_i64(t0); | |
7148 | #endif | |
0487d6a8 | 7149 | } |
6a6ae23f | 7150 | |
636aa200 | 7151 | static inline void gen_op_evldw(DisasContext *ctx, TCGv addr) |
6a6ae23f | 7152 | { |
0487d6a8 | 7153 | #if defined(TARGET_PPC64) |
6a6ae23f | 7154 | TCGv t0 = tcg_temp_new(); |
76db3ba4 | 7155 | gen_qemu_ld32u(ctx, t0, addr); |
6a6ae23f | 7156 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32); |
76db3ba4 AJ |
7157 | gen_addr_add(ctx, addr, addr, 4); |
7158 | gen_qemu_ld32u(ctx, t0, addr); | |
6a6ae23f AJ |
7159 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); |
7160 | tcg_temp_free(t0); | |
7161 | #else | |
76db3ba4 AJ |
7162 | gen_qemu_ld32u(ctx, cpu_gprh[rD(ctx->opcode)], addr); |
7163 | gen_addr_add(ctx, addr, addr, 4); | |
7164 | gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], addr); | |
6a6ae23f | 7165 | #endif |
0487d6a8 | 7166 | } |
6a6ae23f | 7167 | |
636aa200 | 7168 | static inline void gen_op_evldh(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7169 | { |
7170 | TCGv t0 = tcg_temp_new(); | |
7171 | #if defined(TARGET_PPC64) | |
76db3ba4 | 7172 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f | 7173 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48); |
76db3ba4 AJ |
7174 | gen_addr_add(ctx, addr, addr, 2); |
7175 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7176 | tcg_gen_shli_tl(t0, t0, 32); |
7177 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
76db3ba4 AJ |
7178 | gen_addr_add(ctx, addr, addr, 2); |
7179 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7180 | tcg_gen_shli_tl(t0, t0, 16); |
7181 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
76db3ba4 AJ |
7182 | gen_addr_add(ctx, addr, addr, 2); |
7183 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f | 7184 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); |
0487d6a8 | 7185 | #else |
76db3ba4 | 7186 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f | 7187 | tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16); |
76db3ba4 AJ |
7188 | gen_addr_add(ctx, addr, addr, 2); |
7189 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f | 7190 | tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0); |
76db3ba4 AJ |
7191 | gen_addr_add(ctx, addr, addr, 2); |
7192 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f | 7193 | tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16); |
76db3ba4 AJ |
7194 | gen_addr_add(ctx, addr, addr, 2); |
7195 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f | 7196 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); |
0487d6a8 | 7197 | #endif |
6a6ae23f | 7198 | tcg_temp_free(t0); |
0487d6a8 JM |
7199 | } |
7200 | ||
636aa200 | 7201 | static inline void gen_op_evlhhesplat(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7202 | { |
7203 | TCGv t0 = tcg_temp_new(); | |
76db3ba4 | 7204 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f AJ |
7205 | #if defined(TARGET_PPC64) |
7206 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48); | |
7207 | tcg_gen_shli_tl(t0, t0, 16); | |
7208 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7209 | #else | |
7210 | tcg_gen_shli_tl(t0, t0, 16); | |
7211 | tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0); | |
7212 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
7213 | #endif | |
7214 | tcg_temp_free(t0); | |
0487d6a8 JM |
7215 | } |
7216 | ||
636aa200 | 7217 | static inline void gen_op_evlhhousplat(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7218 | { |
7219 | TCGv t0 = tcg_temp_new(); | |
76db3ba4 | 7220 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f AJ |
7221 | #if defined(TARGET_PPC64) |
7222 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32); | |
7223 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7224 | #else | |
7225 | tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0); | |
7226 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
7227 | #endif | |
7228 | tcg_temp_free(t0); | |
0487d6a8 JM |
7229 | } |
7230 | ||
636aa200 | 7231 | static inline void gen_op_evlhhossplat(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7232 | { |
7233 | TCGv t0 = tcg_temp_new(); | |
76db3ba4 | 7234 | gen_qemu_ld16s(ctx, t0, addr); |
6a6ae23f AJ |
7235 | #if defined(TARGET_PPC64) |
7236 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32); | |
7237 | tcg_gen_ext32u_tl(t0, t0); | |
7238 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7239 | #else | |
7240 | tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0); | |
7241 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
7242 | #endif | |
7243 | tcg_temp_free(t0); | |
7244 | } | |
7245 | ||
636aa200 | 7246 | static inline void gen_op_evlwhe(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7247 | { |
7248 | TCGv t0 = tcg_temp_new(); | |
7249 | #if defined(TARGET_PPC64) | |
76db3ba4 | 7250 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f | 7251 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48); |
76db3ba4 AJ |
7252 | gen_addr_add(ctx, addr, addr, 2); |
7253 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7254 | tcg_gen_shli_tl(t0, t0, 16); |
7255 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7256 | #else | |
76db3ba4 | 7257 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f | 7258 | tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16); |
76db3ba4 AJ |
7259 | gen_addr_add(ctx, addr, addr, 2); |
7260 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7261 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16); |
7262 | #endif | |
7263 | tcg_temp_free(t0); | |
7264 | } | |
7265 | ||
636aa200 | 7266 | static inline void gen_op_evlwhou(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7267 | { |
7268 | #if defined(TARGET_PPC64) | |
7269 | TCGv t0 = tcg_temp_new(); | |
76db3ba4 AJ |
7270 | gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr); |
7271 | gen_addr_add(ctx, addr, addr, 2); | |
7272 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7273 | tcg_gen_shli_tl(t0, t0, 32); |
7274 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7275 | tcg_temp_free(t0); | |
7276 | #else | |
76db3ba4 AJ |
7277 | gen_qemu_ld16u(ctx, cpu_gprh[rD(ctx->opcode)], addr); |
7278 | gen_addr_add(ctx, addr, addr, 2); | |
7279 | gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr); | |
6a6ae23f AJ |
7280 | #endif |
7281 | } | |
7282 | ||
636aa200 | 7283 | static inline void gen_op_evlwhos(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7284 | { |
7285 | #if defined(TARGET_PPC64) | |
7286 | TCGv t0 = tcg_temp_new(); | |
76db3ba4 | 7287 | gen_qemu_ld16s(ctx, t0, addr); |
6a6ae23f | 7288 | tcg_gen_ext32u_tl(cpu_gpr[rD(ctx->opcode)], t0); |
76db3ba4 AJ |
7289 | gen_addr_add(ctx, addr, addr, 2); |
7290 | gen_qemu_ld16s(ctx, t0, addr); | |
6a6ae23f AJ |
7291 | tcg_gen_shli_tl(t0, t0, 32); |
7292 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7293 | tcg_temp_free(t0); | |
7294 | #else | |
76db3ba4 AJ |
7295 | gen_qemu_ld16s(ctx, cpu_gprh[rD(ctx->opcode)], addr); |
7296 | gen_addr_add(ctx, addr, addr, 2); | |
7297 | gen_qemu_ld16s(ctx, cpu_gpr[rD(ctx->opcode)], addr); | |
6a6ae23f AJ |
7298 | #endif |
7299 | } | |
7300 | ||
636aa200 | 7301 | static inline void gen_op_evlwwsplat(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7302 | { |
7303 | TCGv t0 = tcg_temp_new(); | |
76db3ba4 | 7304 | gen_qemu_ld32u(ctx, t0, addr); |
0487d6a8 | 7305 | #if defined(TARGET_PPC64) |
6a6ae23f AJ |
7306 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32); |
7307 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7308 | #else | |
7309 | tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0); | |
7310 | tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0); | |
7311 | #endif | |
7312 | tcg_temp_free(t0); | |
7313 | } | |
7314 | ||
636aa200 | 7315 | static inline void gen_op_evlwhsplat(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7316 | { |
7317 | TCGv t0 = tcg_temp_new(); | |
7318 | #if defined(TARGET_PPC64) | |
76db3ba4 | 7319 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f AJ |
7320 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48); |
7321 | tcg_gen_shli_tl(t0, t0, 32); | |
7322 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
76db3ba4 AJ |
7323 | gen_addr_add(ctx, addr, addr, 2); |
7324 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7325 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); |
7326 | tcg_gen_shli_tl(t0, t0, 16); | |
7327 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0); | |
7328 | #else | |
76db3ba4 | 7329 | gen_qemu_ld16u(ctx, t0, addr); |
6a6ae23f AJ |
7330 | tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16); |
7331 | tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0); | |
76db3ba4 AJ |
7332 | gen_addr_add(ctx, addr, addr, 2); |
7333 | gen_qemu_ld16u(ctx, t0, addr); | |
6a6ae23f AJ |
7334 | tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16); |
7335 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0); | |
0487d6a8 | 7336 | #endif |
6a6ae23f AJ |
7337 | tcg_temp_free(t0); |
7338 | } | |
7339 | ||
636aa200 | 7340 | static inline void gen_op_evstdd(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7341 | { |
7342 | #if defined(TARGET_PPC64) | |
76db3ba4 | 7343 | gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], addr); |
0487d6a8 | 7344 | #else |
6a6ae23f AJ |
7345 | TCGv_i64 t0 = tcg_temp_new_i64(); |
7346 | tcg_gen_concat_i32_i64(t0, cpu_gpr[rS(ctx->opcode)], cpu_gprh[rS(ctx->opcode)]); | |
76db3ba4 | 7347 | gen_qemu_st64(ctx, t0, addr); |
6a6ae23f AJ |
7348 | tcg_temp_free_i64(t0); |
7349 | #endif | |
7350 | } | |
7351 | ||
636aa200 | 7352 | static inline void gen_op_evstdw(DisasContext *ctx, TCGv addr) |
6a6ae23f | 7353 | { |
0487d6a8 | 7354 | #if defined(TARGET_PPC64) |
6a6ae23f AJ |
7355 | TCGv t0 = tcg_temp_new(); |
7356 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32); | |
76db3ba4 | 7357 | gen_qemu_st32(ctx, t0, addr); |
6a6ae23f AJ |
7358 | tcg_temp_free(t0); |
7359 | #else | |
76db3ba4 | 7360 | gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr); |
6a6ae23f | 7361 | #endif |
76db3ba4 AJ |
7362 | gen_addr_add(ctx, addr, addr, 4); |
7363 | gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr); | |
6a6ae23f AJ |
7364 | } |
7365 | ||
636aa200 | 7366 | static inline void gen_op_evstdh(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7367 | { |
7368 | TCGv t0 = tcg_temp_new(); | |
7369 | #if defined(TARGET_PPC64) | |
7370 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48); | |
7371 | #else | |
7372 | tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16); | |
7373 | #endif | |
76db3ba4 AJ |
7374 | gen_qemu_st16(ctx, t0, addr); |
7375 | gen_addr_add(ctx, addr, addr, 2); | |
6a6ae23f AJ |
7376 | #if defined(TARGET_PPC64) |
7377 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32); | |
76db3ba4 | 7378 | gen_qemu_st16(ctx, t0, addr); |
6a6ae23f | 7379 | #else |
76db3ba4 | 7380 | gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr); |
6a6ae23f | 7381 | #endif |
76db3ba4 | 7382 | gen_addr_add(ctx, addr, addr, 2); |
6a6ae23f | 7383 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16); |
76db3ba4 | 7384 | gen_qemu_st16(ctx, t0, addr); |
6a6ae23f | 7385 | tcg_temp_free(t0); |
76db3ba4 AJ |
7386 | gen_addr_add(ctx, addr, addr, 2); |
7387 | gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr); | |
6a6ae23f AJ |
7388 | } |
7389 | ||
636aa200 | 7390 | static inline void gen_op_evstwhe(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7391 | { |
7392 | TCGv t0 = tcg_temp_new(); | |
7393 | #if defined(TARGET_PPC64) | |
7394 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48); | |
7395 | #else | |
7396 | tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16); | |
7397 | #endif | |
76db3ba4 AJ |
7398 | gen_qemu_st16(ctx, t0, addr); |
7399 | gen_addr_add(ctx, addr, addr, 2); | |
6a6ae23f | 7400 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16); |
76db3ba4 | 7401 | gen_qemu_st16(ctx, t0, addr); |
6a6ae23f AJ |
7402 | tcg_temp_free(t0); |
7403 | } | |
7404 | ||
636aa200 | 7405 | static inline void gen_op_evstwho(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7406 | { |
7407 | #if defined(TARGET_PPC64) | |
7408 | TCGv t0 = tcg_temp_new(); | |
7409 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32); | |
76db3ba4 | 7410 | gen_qemu_st16(ctx, t0, addr); |
6a6ae23f AJ |
7411 | tcg_temp_free(t0); |
7412 | #else | |
76db3ba4 | 7413 | gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr); |
6a6ae23f | 7414 | #endif |
76db3ba4 AJ |
7415 | gen_addr_add(ctx, addr, addr, 2); |
7416 | gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr); | |
6a6ae23f AJ |
7417 | } |
7418 | ||
636aa200 | 7419 | static inline void gen_op_evstwwe(DisasContext *ctx, TCGv addr) |
6a6ae23f AJ |
7420 | { |
7421 | #if defined(TARGET_PPC64) | |
7422 | TCGv t0 = tcg_temp_new(); | |
7423 | tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32); | |
76db3ba4 | 7424 | gen_qemu_st32(ctx, t0, addr); |
6a6ae23f AJ |
7425 | tcg_temp_free(t0); |
7426 | #else | |
76db3ba4 | 7427 | gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr); |
6a6ae23f AJ |
7428 | #endif |
7429 | } | |
7430 | ||
636aa200 | 7431 | static inline void gen_op_evstwwo(DisasContext *ctx, TCGv addr) |
6a6ae23f | 7432 | { |
76db3ba4 | 7433 | gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr); |
6a6ae23f AJ |
7434 | } |
7435 | ||
7436 | #define GEN_SPEOP_LDST(name, opc2, sh) \ | |
99e300ef | 7437 | static void glue(gen_, name)(DisasContext *ctx) \ |
6a6ae23f AJ |
7438 | { \ |
7439 | TCGv t0; \ | |
7440 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7441 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
6a6ae23f AJ |
7442 | return; \ |
7443 | } \ | |
76db3ba4 | 7444 | gen_set_access_type(ctx, ACCESS_INT); \ |
6a6ae23f AJ |
7445 | t0 = tcg_temp_new(); \ |
7446 | if (Rc(ctx->opcode)) { \ | |
76db3ba4 | 7447 | gen_addr_spe_imm_index(ctx, t0, sh); \ |
6a6ae23f | 7448 | } else { \ |
76db3ba4 | 7449 | gen_addr_reg_index(ctx, t0); \ |
6a6ae23f AJ |
7450 | } \ |
7451 | gen_op_##name(ctx, t0); \ | |
7452 | tcg_temp_free(t0); \ | |
7453 | } | |
7454 | ||
7455 | GEN_SPEOP_LDST(evldd, 0x00, 3); | |
7456 | GEN_SPEOP_LDST(evldw, 0x01, 3); | |
7457 | GEN_SPEOP_LDST(evldh, 0x02, 3); | |
7458 | GEN_SPEOP_LDST(evlhhesplat, 0x04, 1); | |
7459 | GEN_SPEOP_LDST(evlhhousplat, 0x06, 1); | |
7460 | GEN_SPEOP_LDST(evlhhossplat, 0x07, 1); | |
7461 | GEN_SPEOP_LDST(evlwhe, 0x08, 2); | |
7462 | GEN_SPEOP_LDST(evlwhou, 0x0A, 2); | |
7463 | GEN_SPEOP_LDST(evlwhos, 0x0B, 2); | |
7464 | GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2); | |
7465 | GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2); | |
7466 | ||
7467 | GEN_SPEOP_LDST(evstdd, 0x10, 3); | |
7468 | GEN_SPEOP_LDST(evstdw, 0x11, 3); | |
7469 | GEN_SPEOP_LDST(evstdh, 0x12, 3); | |
7470 | GEN_SPEOP_LDST(evstwhe, 0x18, 2); | |
7471 | GEN_SPEOP_LDST(evstwho, 0x1A, 2); | |
7472 | GEN_SPEOP_LDST(evstwwe, 0x1C, 2); | |
7473 | GEN_SPEOP_LDST(evstwwo, 0x1E, 2); | |
0487d6a8 JM |
7474 | |
7475 | /* Multiply and add - TODO */ | |
7476 | #if 0 | |
7477 | GEN_SPE(speundef, evmhessf, 0x01, 0x10, 0x00000000, PPC_SPE); | |
7478 | GEN_SPE(speundef, evmhossf, 0x03, 0x10, 0x00000000, PPC_SPE); | |
7479 | GEN_SPE(evmheumi, evmhesmi, 0x04, 0x10, 0x00000000, PPC_SPE); | |
7480 | GEN_SPE(speundef, evmhesmf, 0x05, 0x10, 0x00000000, PPC_SPE); | |
7481 | GEN_SPE(evmhoumi, evmhosmi, 0x06, 0x10, 0x00000000, PPC_SPE); | |
7482 | GEN_SPE(speundef, evmhosmf, 0x07, 0x10, 0x00000000, PPC_SPE); | |
7483 | GEN_SPE(speundef, evmhessfa, 0x11, 0x10, 0x00000000, PPC_SPE); | |
7484 | GEN_SPE(speundef, evmhossfa, 0x13, 0x10, 0x00000000, PPC_SPE); | |
7485 | GEN_SPE(evmheumia, evmhesmia, 0x14, 0x10, 0x00000000, PPC_SPE); | |
7486 | GEN_SPE(speundef, evmhesmfa, 0x15, 0x10, 0x00000000, PPC_SPE); | |
7487 | GEN_SPE(evmhoumia, evmhosmia, 0x16, 0x10, 0x00000000, PPC_SPE); | |
7488 | GEN_SPE(speundef, evmhosmfa, 0x17, 0x10, 0x00000000, PPC_SPE); | |
7489 | ||
7490 | GEN_SPE(speundef, evmwhssf, 0x03, 0x11, 0x00000000, PPC_SPE); | |
7491 | GEN_SPE(evmwlumi, speundef, 0x04, 0x11, 0x00000000, PPC_SPE); | |
7492 | GEN_SPE(evmwhumi, evmwhsmi, 0x06, 0x11, 0x00000000, PPC_SPE); | |
7493 | GEN_SPE(speundef, evmwhsmf, 0x07, 0x11, 0x00000000, PPC_SPE); | |
7494 | GEN_SPE(speundef, evmwssf, 0x09, 0x11, 0x00000000, PPC_SPE); | |
7495 | GEN_SPE(evmwumi, evmwsmi, 0x0C, 0x11, 0x00000000, PPC_SPE); | |
7496 | GEN_SPE(speundef, evmwsmf, 0x0D, 0x11, 0x00000000, PPC_SPE); | |
7497 | GEN_SPE(speundef, evmwhssfa, 0x13, 0x11, 0x00000000, PPC_SPE); | |
7498 | GEN_SPE(evmwlumia, speundef, 0x14, 0x11, 0x00000000, PPC_SPE); | |
7499 | GEN_SPE(evmwhumia, evmwhsmia, 0x16, 0x11, 0x00000000, PPC_SPE); | |
7500 | GEN_SPE(speundef, evmwhsmfa, 0x17, 0x11, 0x00000000, PPC_SPE); | |
7501 | GEN_SPE(speundef, evmwssfa, 0x19, 0x11, 0x00000000, PPC_SPE); | |
7502 | GEN_SPE(evmwumia, evmwsmia, 0x1C, 0x11, 0x00000000, PPC_SPE); | |
7503 | GEN_SPE(speundef, evmwsmfa, 0x1D, 0x11, 0x00000000, PPC_SPE); | |
7504 | ||
7505 | GEN_SPE(evadduiaaw, evaddsiaaw, 0x00, 0x13, 0x0000F800, PPC_SPE); | |
7506 | GEN_SPE(evsubfusiaaw, evsubfssiaaw, 0x01, 0x13, 0x0000F800, PPC_SPE); | |
7507 | GEN_SPE(evaddumiaaw, evaddsmiaaw, 0x04, 0x13, 0x0000F800, PPC_SPE); | |
7508 | GEN_SPE(evsubfumiaaw, evsubfsmiaaw, 0x05, 0x13, 0x0000F800, PPC_SPE); | |
7509 | GEN_SPE(evdivws, evdivwu, 0x06, 0x13, 0x00000000, PPC_SPE); | |
7510 | GEN_SPE(evmra, speundef, 0x07, 0x13, 0x0000F800, PPC_SPE); | |
7511 | ||
7512 | GEN_SPE(evmheusiaaw, evmhessiaaw, 0x00, 0x14, 0x00000000, PPC_SPE); | |
7513 | GEN_SPE(speundef, evmhessfaaw, 0x01, 0x14, 0x00000000, PPC_SPE); | |
7514 | GEN_SPE(evmhousiaaw, evmhossiaaw, 0x02, 0x14, 0x00000000, PPC_SPE); | |
7515 | GEN_SPE(speundef, evmhossfaaw, 0x03, 0x14, 0x00000000, PPC_SPE); | |
7516 | GEN_SPE(evmheumiaaw, evmhesmiaaw, 0x04, 0x14, 0x00000000, PPC_SPE); | |
7517 | GEN_SPE(speundef, evmhesmfaaw, 0x05, 0x14, 0x00000000, PPC_SPE); | |
7518 | GEN_SPE(evmhoumiaaw, evmhosmiaaw, 0x06, 0x14, 0x00000000, PPC_SPE); | |
7519 | GEN_SPE(speundef, evmhosmfaaw, 0x07, 0x14, 0x00000000, PPC_SPE); | |
7520 | GEN_SPE(evmhegumiaa, evmhegsmiaa, 0x14, 0x14, 0x00000000, PPC_SPE); | |
7521 | GEN_SPE(speundef, evmhegsmfaa, 0x15, 0x14, 0x00000000, PPC_SPE); | |
7522 | GEN_SPE(evmhogumiaa, evmhogsmiaa, 0x16, 0x14, 0x00000000, PPC_SPE); | |
7523 | GEN_SPE(speundef, evmhogsmfaa, 0x17, 0x14, 0x00000000, PPC_SPE); | |
7524 | ||
7525 | GEN_SPE(evmwlusiaaw, evmwlssiaaw, 0x00, 0x15, 0x00000000, PPC_SPE); | |
7526 | GEN_SPE(evmwlumiaaw, evmwlsmiaaw, 0x04, 0x15, 0x00000000, PPC_SPE); | |
7527 | GEN_SPE(speundef, evmwssfaa, 0x09, 0x15, 0x00000000, PPC_SPE); | |
7528 | GEN_SPE(evmwumiaa, evmwsmiaa, 0x0C, 0x15, 0x00000000, PPC_SPE); | |
7529 | GEN_SPE(speundef, evmwsmfaa, 0x0D, 0x15, 0x00000000, PPC_SPE); | |
7530 | ||
7531 | GEN_SPE(evmheusianw, evmhessianw, 0x00, 0x16, 0x00000000, PPC_SPE); | |
7532 | GEN_SPE(speundef, evmhessfanw, 0x01, 0x16, 0x00000000, PPC_SPE); | |
7533 | GEN_SPE(evmhousianw, evmhossianw, 0x02, 0x16, 0x00000000, PPC_SPE); | |
7534 | GEN_SPE(speundef, evmhossfanw, 0x03, 0x16, 0x00000000, PPC_SPE); | |
7535 | GEN_SPE(evmheumianw, evmhesmianw, 0x04, 0x16, 0x00000000, PPC_SPE); | |
7536 | GEN_SPE(speundef, evmhesmfanw, 0x05, 0x16, 0x00000000, PPC_SPE); | |
7537 | GEN_SPE(evmhoumianw, evmhosmianw, 0x06, 0x16, 0x00000000, PPC_SPE); | |
7538 | GEN_SPE(speundef, evmhosmfanw, 0x07, 0x16, 0x00000000, PPC_SPE); | |
7539 | GEN_SPE(evmhegumian, evmhegsmian, 0x14, 0x16, 0x00000000, PPC_SPE); | |
7540 | GEN_SPE(speundef, evmhegsmfan, 0x15, 0x16, 0x00000000, PPC_SPE); | |
7541 | GEN_SPE(evmhigumian, evmhigsmian, 0x16, 0x16, 0x00000000, PPC_SPE); | |
7542 | GEN_SPE(speundef, evmhogsmfan, 0x17, 0x16, 0x00000000, PPC_SPE); | |
7543 | ||
7544 | GEN_SPE(evmwlusianw, evmwlssianw, 0x00, 0x17, 0x00000000, PPC_SPE); | |
7545 | GEN_SPE(evmwlumianw, evmwlsmianw, 0x04, 0x17, 0x00000000, PPC_SPE); | |
7546 | GEN_SPE(speundef, evmwssfan, 0x09, 0x17, 0x00000000, PPC_SPE); | |
7547 | GEN_SPE(evmwumian, evmwsmian, 0x0C, 0x17, 0x00000000, PPC_SPE); | |
7548 | GEN_SPE(speundef, evmwsmfan, 0x0D, 0x17, 0x00000000, PPC_SPE); | |
7549 | #endif | |
7550 | ||
7551 | /*** SPE floating-point extension ***/ | |
1c97856d AJ |
7552 | #if defined(TARGET_PPC64) |
7553 | #define GEN_SPEFPUOP_CONV_32_32(name) \ | |
636aa200 | 7554 | static inline void gen_##name(DisasContext *ctx) \ |
0487d6a8 | 7555 | { \ |
1c97856d AJ |
7556 | TCGv_i32 t0; \ |
7557 | TCGv t1; \ | |
7558 | t0 = tcg_temp_new_i32(); \ | |
7559 | tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \ | |
7560 | gen_helper_##name(t0, t0); \ | |
7561 | t1 = tcg_temp_new(); \ | |
7562 | tcg_gen_extu_i32_tl(t1, t0); \ | |
7563 | tcg_temp_free_i32(t0); \ | |
7564 | tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \ | |
7565 | 0xFFFFFFFF00000000ULL); \ | |
7566 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \ | |
7567 | tcg_temp_free(t1); \ | |
0487d6a8 | 7568 | } |
1c97856d | 7569 | #define GEN_SPEFPUOP_CONV_32_64(name) \ |
636aa200 | 7570 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7571 | { \ |
7572 | TCGv_i32 t0; \ | |
7573 | TCGv t1; \ | |
7574 | t0 = tcg_temp_new_i32(); \ | |
7575 | gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \ | |
7576 | t1 = tcg_temp_new(); \ | |
7577 | tcg_gen_extu_i32_tl(t1, t0); \ | |
7578 | tcg_temp_free_i32(t0); \ | |
7579 | tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \ | |
7580 | 0xFFFFFFFF00000000ULL); \ | |
7581 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \ | |
7582 | tcg_temp_free(t1); \ | |
7583 | } | |
7584 | #define GEN_SPEFPUOP_CONV_64_32(name) \ | |
636aa200 | 7585 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7586 | { \ |
7587 | TCGv_i32 t0 = tcg_temp_new_i32(); \ | |
7588 | tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \ | |
7589 | gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \ | |
7590 | tcg_temp_free_i32(t0); \ | |
7591 | } | |
7592 | #define GEN_SPEFPUOP_CONV_64_64(name) \ | |
636aa200 | 7593 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7594 | { \ |
7595 | gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \ | |
7596 | } | |
7597 | #define GEN_SPEFPUOP_ARITH2_32_32(name) \ | |
636aa200 | 7598 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 | 7599 | { \ |
1c97856d AJ |
7600 | TCGv_i32 t0, t1; \ |
7601 | TCGv_i64 t2; \ | |
57951c27 | 7602 | if (unlikely(!ctx->spe_enabled)) { \ |
e06fcd75 | 7603 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
7604 | return; \ |
7605 | } \ | |
1c97856d AJ |
7606 | t0 = tcg_temp_new_i32(); \ |
7607 | t1 = tcg_temp_new_i32(); \ | |
7608 | tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \ | |
7609 | tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \ | |
7610 | gen_helper_##name(t0, t0, t1); \ | |
7611 | tcg_temp_free_i32(t1); \ | |
7612 | t2 = tcg_temp_new(); \ | |
7613 | tcg_gen_extu_i32_tl(t2, t0); \ | |
7614 | tcg_temp_free_i32(t0); \ | |
7615 | tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \ | |
7616 | 0xFFFFFFFF00000000ULL); \ | |
7617 | tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \ | |
7618 | tcg_temp_free(t2); \ | |
57951c27 | 7619 | } |
1c97856d | 7620 | #define GEN_SPEFPUOP_ARITH2_64_64(name) \ |
636aa200 | 7621 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 AJ |
7622 | { \ |
7623 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7624 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
7625 | return; \ |
7626 | } \ | |
1c97856d AJ |
7627 | gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \ |
7628 | cpu_gpr[rB(ctx->opcode)]); \ | |
57951c27 | 7629 | } |
1c97856d | 7630 | #define GEN_SPEFPUOP_COMP_32(name) \ |
636aa200 | 7631 | static inline void gen_##name(DisasContext *ctx) \ |
57951c27 | 7632 | { \ |
1c97856d | 7633 | TCGv_i32 t0, t1; \ |
57951c27 | 7634 | if (unlikely(!ctx->spe_enabled)) { \ |
e06fcd75 | 7635 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
57951c27 AJ |
7636 | return; \ |
7637 | } \ | |
1c97856d AJ |
7638 | t0 = tcg_temp_new_i32(); \ |
7639 | t1 = tcg_temp_new_i32(); \ | |
7640 | tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \ | |
7641 | tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \ | |
7642 | gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \ | |
7643 | tcg_temp_free_i32(t0); \ | |
7644 | tcg_temp_free_i32(t1); \ | |
7645 | } | |
7646 | #define GEN_SPEFPUOP_COMP_64(name) \ | |
636aa200 | 7647 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7648 | { \ |
7649 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7650 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
1c97856d AJ |
7651 | return; \ |
7652 | } \ | |
7653 | gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \ | |
7654 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \ | |
7655 | } | |
7656 | #else | |
7657 | #define GEN_SPEFPUOP_CONV_32_32(name) \ | |
636aa200 | 7658 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7659 | { \ |
7660 | gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \ | |
57951c27 | 7661 | } |
1c97856d | 7662 | #define GEN_SPEFPUOP_CONV_32_64(name) \ |
636aa200 | 7663 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7664 | { \ |
7665 | TCGv_i64 t0 = tcg_temp_new_i64(); \ | |
7666 | gen_load_gpr64(t0, rB(ctx->opcode)); \ | |
7667 | gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \ | |
7668 | tcg_temp_free_i64(t0); \ | |
7669 | } | |
7670 | #define GEN_SPEFPUOP_CONV_64_32(name) \ | |
636aa200 | 7671 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7672 | { \ |
7673 | TCGv_i64 t0 = tcg_temp_new_i64(); \ | |
7674 | gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \ | |
7675 | gen_store_gpr64(rD(ctx->opcode), t0); \ | |
7676 | tcg_temp_free_i64(t0); \ | |
7677 | } | |
7678 | #define GEN_SPEFPUOP_CONV_64_64(name) \ | |
636aa200 | 7679 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7680 | { \ |
7681 | TCGv_i64 t0 = tcg_temp_new_i64(); \ | |
7682 | gen_load_gpr64(t0, rB(ctx->opcode)); \ | |
7683 | gen_helper_##name(t0, t0); \ | |
7684 | gen_store_gpr64(rD(ctx->opcode), t0); \ | |
7685 | tcg_temp_free_i64(t0); \ | |
7686 | } | |
7687 | #define GEN_SPEFPUOP_ARITH2_32_32(name) \ | |
636aa200 | 7688 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7689 | { \ |
7690 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7691 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
1c97856d AJ |
7692 | return; \ |
7693 | } \ | |
7694 | gen_helper_##name(cpu_gpr[rD(ctx->opcode)], \ | |
7695 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \ | |
7696 | } | |
7697 | #define GEN_SPEFPUOP_ARITH2_64_64(name) \ | |
636aa200 | 7698 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7699 | { \ |
7700 | TCGv_i64 t0, t1; \ | |
7701 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7702 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
1c97856d AJ |
7703 | return; \ |
7704 | } \ | |
7705 | t0 = tcg_temp_new_i64(); \ | |
7706 | t1 = tcg_temp_new_i64(); \ | |
7707 | gen_load_gpr64(t0, rA(ctx->opcode)); \ | |
7708 | gen_load_gpr64(t1, rB(ctx->opcode)); \ | |
7709 | gen_helper_##name(t0, t0, t1); \ | |
7710 | gen_store_gpr64(rD(ctx->opcode), t0); \ | |
7711 | tcg_temp_free_i64(t0); \ | |
7712 | tcg_temp_free_i64(t1); \ | |
7713 | } | |
7714 | #define GEN_SPEFPUOP_COMP_32(name) \ | |
636aa200 | 7715 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7716 | { \ |
7717 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7718 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
1c97856d AJ |
7719 | return; \ |
7720 | } \ | |
7721 | gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \ | |
7722 | cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \ | |
7723 | } | |
7724 | #define GEN_SPEFPUOP_COMP_64(name) \ | |
636aa200 | 7725 | static inline void gen_##name(DisasContext *ctx) \ |
1c97856d AJ |
7726 | { \ |
7727 | TCGv_i64 t0, t1; \ | |
7728 | if (unlikely(!ctx->spe_enabled)) { \ | |
e06fcd75 | 7729 | gen_exception(ctx, POWERPC_EXCP_APU); \ |
1c97856d AJ |
7730 | return; \ |
7731 | } \ | |
7732 | t0 = tcg_temp_new_i64(); \ | |
7733 | t1 = tcg_temp_new_i64(); \ | |
7734 | gen_load_gpr64(t0, rA(ctx->opcode)); \ | |
7735 | gen_load_gpr64(t1, rB(ctx->opcode)); \ | |
7736 | gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \ | |
7737 | tcg_temp_free_i64(t0); \ | |
7738 | tcg_temp_free_i64(t1); \ | |
7739 | } | |
7740 | #endif | |
57951c27 | 7741 | |
0487d6a8 JM |
7742 | /* Single precision floating-point vectors operations */ |
7743 | /* Arithmetic */ | |
1c97856d AJ |
7744 | GEN_SPEFPUOP_ARITH2_64_64(evfsadd); |
7745 | GEN_SPEFPUOP_ARITH2_64_64(evfssub); | |
7746 | GEN_SPEFPUOP_ARITH2_64_64(evfsmul); | |
7747 | GEN_SPEFPUOP_ARITH2_64_64(evfsdiv); | |
636aa200 | 7748 | static inline void gen_evfsabs(DisasContext *ctx) |
1c97856d AJ |
7749 | { |
7750 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7751 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7752 | return; |
7753 | } | |
7754 | #if defined(TARGET_PPC64) | |
7755 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000080000000LL); | |
7756 | #else | |
7757 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x80000000); | |
7758 | tcg_gen_andi_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000); | |
7759 | #endif | |
7760 | } | |
636aa200 | 7761 | static inline void gen_evfsnabs(DisasContext *ctx) |
1c97856d AJ |
7762 | { |
7763 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7764 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7765 | return; |
7766 | } | |
7767 | #if defined(TARGET_PPC64) | |
7768 | tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL); | |
7769 | #else | |
7770 | tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000); | |
7771 | tcg_gen_ori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000); | |
7772 | #endif | |
7773 | } | |
636aa200 | 7774 | static inline void gen_evfsneg(DisasContext *ctx) |
1c97856d AJ |
7775 | { |
7776 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7777 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7778 | return; |
7779 | } | |
7780 | #if defined(TARGET_PPC64) | |
7781 | tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL); | |
7782 | #else | |
7783 | tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000); | |
7784 | tcg_gen_xori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000); | |
7785 | #endif | |
7786 | } | |
7787 | ||
0487d6a8 | 7788 | /* Conversion */ |
1c97856d AJ |
7789 | GEN_SPEFPUOP_CONV_64_64(evfscfui); |
7790 | GEN_SPEFPUOP_CONV_64_64(evfscfsi); | |
7791 | GEN_SPEFPUOP_CONV_64_64(evfscfuf); | |
7792 | GEN_SPEFPUOP_CONV_64_64(evfscfsf); | |
7793 | GEN_SPEFPUOP_CONV_64_64(evfsctui); | |
7794 | GEN_SPEFPUOP_CONV_64_64(evfsctsi); | |
7795 | GEN_SPEFPUOP_CONV_64_64(evfsctuf); | |
7796 | GEN_SPEFPUOP_CONV_64_64(evfsctsf); | |
7797 | GEN_SPEFPUOP_CONV_64_64(evfsctuiz); | |
7798 | GEN_SPEFPUOP_CONV_64_64(evfsctsiz); | |
7799 | ||
0487d6a8 | 7800 | /* Comparison */ |
1c97856d AJ |
7801 | GEN_SPEFPUOP_COMP_64(evfscmpgt); |
7802 | GEN_SPEFPUOP_COMP_64(evfscmplt); | |
7803 | GEN_SPEFPUOP_COMP_64(evfscmpeq); | |
7804 | GEN_SPEFPUOP_COMP_64(evfststgt); | |
7805 | GEN_SPEFPUOP_COMP_64(evfststlt); | |
7806 | GEN_SPEFPUOP_COMP_64(evfststeq); | |
0487d6a8 JM |
7807 | |
7808 | /* Opcodes definitions */ | |
40569b7e AJ |
7809 | GEN_SPE(evfsadd, evfssub, 0x00, 0x0A, 0x00000000, PPC_SPE_SINGLE); // |
7810 | GEN_SPE(evfsabs, evfsnabs, 0x02, 0x0A, 0x0000F800, PPC_SPE_SINGLE); // | |
7811 | GEN_SPE(evfsneg, speundef, 0x03, 0x0A, 0x0000F800, PPC_SPE_SINGLE); // | |
7812 | GEN_SPE(evfsmul, evfsdiv, 0x04, 0x0A, 0x00000000, PPC_SPE_SINGLE); // | |
7813 | GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, PPC_SPE_SINGLE); // | |
7814 | GEN_SPE(evfscmpeq, speundef, 0x07, 0x0A, 0x00600000, PPC_SPE_SINGLE); // | |
7815 | GEN_SPE(evfscfui, evfscfsi, 0x08, 0x0A, 0x00180000, PPC_SPE_SINGLE); // | |
7816 | GEN_SPE(evfscfuf, evfscfsf, 0x09, 0x0A, 0x00180000, PPC_SPE_SINGLE); // | |
7817 | GEN_SPE(evfsctui, evfsctsi, 0x0A, 0x0A, 0x00180000, PPC_SPE_SINGLE); // | |
7818 | GEN_SPE(evfsctuf, evfsctsf, 0x0B, 0x0A, 0x00180000, PPC_SPE_SINGLE); // | |
7819 | GEN_SPE(evfsctuiz, speundef, 0x0C, 0x0A, 0x00180000, PPC_SPE_SINGLE); // | |
7820 | GEN_SPE(evfsctsiz, speundef, 0x0D, 0x0A, 0x00180000, PPC_SPE_SINGLE); // | |
7821 | GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, PPC_SPE_SINGLE); // | |
7822 | GEN_SPE(evfststeq, speundef, 0x0F, 0x0A, 0x00600000, PPC_SPE_SINGLE); // | |
0487d6a8 JM |
7823 | |
7824 | /* Single precision floating-point operations */ | |
7825 | /* Arithmetic */ | |
1c97856d AJ |
7826 | GEN_SPEFPUOP_ARITH2_32_32(efsadd); |
7827 | GEN_SPEFPUOP_ARITH2_32_32(efssub); | |
7828 | GEN_SPEFPUOP_ARITH2_32_32(efsmul); | |
7829 | GEN_SPEFPUOP_ARITH2_32_32(efsdiv); | |
636aa200 | 7830 | static inline void gen_efsabs(DisasContext *ctx) |
1c97856d AJ |
7831 | { |
7832 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7833 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7834 | return; |
7835 | } | |
7836 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], (target_long)~0x80000000LL); | |
7837 | } | |
636aa200 | 7838 | static inline void gen_efsnabs(DisasContext *ctx) |
1c97856d AJ |
7839 | { |
7840 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7841 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7842 | return; |
7843 | } | |
7844 | tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000); | |
7845 | } | |
636aa200 | 7846 | static inline void gen_efsneg(DisasContext *ctx) |
1c97856d AJ |
7847 | { |
7848 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7849 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7850 | return; |
7851 | } | |
7852 | tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000); | |
7853 | } | |
7854 | ||
0487d6a8 | 7855 | /* Conversion */ |
1c97856d AJ |
7856 | GEN_SPEFPUOP_CONV_32_32(efscfui); |
7857 | GEN_SPEFPUOP_CONV_32_32(efscfsi); | |
7858 | GEN_SPEFPUOP_CONV_32_32(efscfuf); | |
7859 | GEN_SPEFPUOP_CONV_32_32(efscfsf); | |
7860 | GEN_SPEFPUOP_CONV_32_32(efsctui); | |
7861 | GEN_SPEFPUOP_CONV_32_32(efsctsi); | |
7862 | GEN_SPEFPUOP_CONV_32_32(efsctuf); | |
7863 | GEN_SPEFPUOP_CONV_32_32(efsctsf); | |
7864 | GEN_SPEFPUOP_CONV_32_32(efsctuiz); | |
7865 | GEN_SPEFPUOP_CONV_32_32(efsctsiz); | |
7866 | GEN_SPEFPUOP_CONV_32_64(efscfd); | |
7867 | ||
0487d6a8 | 7868 | /* Comparison */ |
1c97856d AJ |
7869 | GEN_SPEFPUOP_COMP_32(efscmpgt); |
7870 | GEN_SPEFPUOP_COMP_32(efscmplt); | |
7871 | GEN_SPEFPUOP_COMP_32(efscmpeq); | |
7872 | GEN_SPEFPUOP_COMP_32(efststgt); | |
7873 | GEN_SPEFPUOP_COMP_32(efststlt); | |
7874 | GEN_SPEFPUOP_COMP_32(efststeq); | |
0487d6a8 JM |
7875 | |
7876 | /* Opcodes definitions */ | |
40569b7e AJ |
7877 | GEN_SPE(efsadd, efssub, 0x00, 0x0B, 0x00000000, PPC_SPE_SINGLE); // |
7878 | GEN_SPE(efsabs, efsnabs, 0x02, 0x0B, 0x0000F800, PPC_SPE_SINGLE); // | |
7879 | GEN_SPE(efsneg, speundef, 0x03, 0x0B, 0x0000F800, PPC_SPE_SINGLE); // | |
7880 | GEN_SPE(efsmul, efsdiv, 0x04, 0x0B, 0x00000000, PPC_SPE_SINGLE); // | |
7881 | GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, PPC_SPE_SINGLE); // | |
7882 | GEN_SPE(efscmpeq, efscfd, 0x07, 0x0B, 0x00600000, PPC_SPE_SINGLE); // | |
7883 | GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, PPC_SPE_SINGLE); // | |
7884 | GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, PPC_SPE_SINGLE); // | |
7885 | GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, PPC_SPE_SINGLE); // | |
7886 | GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, PPC_SPE_SINGLE); // | |
7887 | GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, PPC_SPE_SINGLE); // | |
7888 | GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, PPC_SPE_SINGLE); // | |
7889 | GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, PPC_SPE_SINGLE); // | |
7890 | GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, PPC_SPE_SINGLE); // | |
0487d6a8 JM |
7891 | |
7892 | /* Double precision floating-point operations */ | |
7893 | /* Arithmetic */ | |
1c97856d AJ |
7894 | GEN_SPEFPUOP_ARITH2_64_64(efdadd); |
7895 | GEN_SPEFPUOP_ARITH2_64_64(efdsub); | |
7896 | GEN_SPEFPUOP_ARITH2_64_64(efdmul); | |
7897 | GEN_SPEFPUOP_ARITH2_64_64(efddiv); | |
636aa200 | 7898 | static inline void gen_efdabs(DisasContext *ctx) |
1c97856d AJ |
7899 | { |
7900 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7901 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7902 | return; |
7903 | } | |
7904 | #if defined(TARGET_PPC64) | |
7905 | tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000000000000LL); | |
7906 | #else | |
7907 | tcg_gen_andi_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000); | |
7908 | #endif | |
7909 | } | |
636aa200 | 7910 | static inline void gen_efdnabs(DisasContext *ctx) |
1c97856d AJ |
7911 | { |
7912 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7913 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7914 | return; |
7915 | } | |
7916 | #if defined(TARGET_PPC64) | |
7917 | tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL); | |
7918 | #else | |
7919 | tcg_gen_ori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000); | |
7920 | #endif | |
7921 | } | |
636aa200 | 7922 | static inline void gen_efdneg(DisasContext *ctx) |
1c97856d AJ |
7923 | { |
7924 | if (unlikely(!ctx->spe_enabled)) { | |
e06fcd75 | 7925 | gen_exception(ctx, POWERPC_EXCP_APU); |
1c97856d AJ |
7926 | return; |
7927 | } | |
7928 | #if defined(TARGET_PPC64) | |
7929 | tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL); | |
7930 | #else | |
7931 | tcg_gen_xori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000); | |
7932 | #endif | |
7933 | } | |
7934 | ||
0487d6a8 | 7935 | /* Conversion */ |
1c97856d AJ |
7936 | GEN_SPEFPUOP_CONV_64_32(efdcfui); |
7937 | GEN_SPEFPUOP_CONV_64_32(efdcfsi); | |
7938 | GEN_SPEFPUOP_CONV_64_32(efdcfuf); | |
7939 | GEN_SPEFPUOP_CONV_64_32(efdcfsf); | |
7940 | GEN_SPEFPUOP_CONV_32_64(efdctui); | |
7941 | GEN_SPEFPUOP_CONV_32_64(efdctsi); | |
7942 | GEN_SPEFPUOP_CONV_32_64(efdctuf); | |
7943 | GEN_SPEFPUOP_CONV_32_64(efdctsf); | |
7944 | GEN_SPEFPUOP_CONV_32_64(efdctuiz); | |
7945 | GEN_SPEFPUOP_CONV_32_64(efdctsiz); | |
7946 | GEN_SPEFPUOP_CONV_64_32(efdcfs); | |
7947 | GEN_SPEFPUOP_CONV_64_64(efdcfuid); | |
7948 | GEN_SPEFPUOP_CONV_64_64(efdcfsid); | |
7949 | GEN_SPEFPUOP_CONV_64_64(efdctuidz); | |
7950 | GEN_SPEFPUOP_CONV_64_64(efdctsidz); | |
0487d6a8 | 7951 | |
0487d6a8 | 7952 | /* Comparison */ |
1c97856d AJ |
7953 | GEN_SPEFPUOP_COMP_64(efdcmpgt); |
7954 | GEN_SPEFPUOP_COMP_64(efdcmplt); | |
7955 | GEN_SPEFPUOP_COMP_64(efdcmpeq); | |
7956 | GEN_SPEFPUOP_COMP_64(efdtstgt); | |
7957 | GEN_SPEFPUOP_COMP_64(efdtstlt); | |
7958 | GEN_SPEFPUOP_COMP_64(efdtsteq); | |
0487d6a8 JM |
7959 | |
7960 | /* Opcodes definitions */ | |
40569b7e AJ |
7961 | GEN_SPE(efdadd, efdsub, 0x10, 0x0B, 0x00000000, PPC_SPE_DOUBLE); // |
7962 | GEN_SPE(efdcfuid, efdcfsid, 0x11, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7963 | GEN_SPE(efdabs, efdnabs, 0x12, 0x0B, 0x0000F800, PPC_SPE_DOUBLE); // | |
7964 | GEN_SPE(efdneg, speundef, 0x13, 0x0B, 0x0000F800, PPC_SPE_DOUBLE); // | |
7965 | GEN_SPE(efdmul, efddiv, 0x14, 0x0B, 0x00000000, PPC_SPE_DOUBLE); // | |
7966 | GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7967 | GEN_SPE(efdcmpgt, efdcmplt, 0x16, 0x0B, 0x00600000, PPC_SPE_DOUBLE); // | |
7968 | GEN_SPE(efdcmpeq, efdcfs, 0x17, 0x0B, 0x00600000, PPC_SPE_DOUBLE); // | |
7969 | GEN_SPE(efdcfui, efdcfsi, 0x18, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7970 | GEN_SPE(efdcfuf, efdcfsf, 0x19, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7971 | GEN_SPE(efdctui, efdctsi, 0x1A, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7972 | GEN_SPE(efdctuf, efdctsf, 0x1B, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7973 | GEN_SPE(efdctuiz, speundef, 0x1C, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7974 | GEN_SPE(efdctsiz, speundef, 0x1D, 0x0B, 0x00180000, PPC_SPE_DOUBLE); // | |
7975 | GEN_SPE(efdtstgt, efdtstlt, 0x1E, 0x0B, 0x00600000, PPC_SPE_DOUBLE); // | |
7976 | GEN_SPE(efdtsteq, speundef, 0x1F, 0x0B, 0x00600000, PPC_SPE_DOUBLE); // | |
0487d6a8 | 7977 | |
5c55ff99 BS |
7978 | static opcode_t opcodes[] = { |
7979 | GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE), | |
7980 | GEN_HANDLER(cmp, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER), | |
7981 | GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER), | |
7982 | GEN_HANDLER(cmpl, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER), | |
7983 | GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER), | |
7984 | GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL), | |
7985 | GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
7986 | GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
7987 | GEN_HANDLER2(addic_, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
7988 | GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
7989 | GEN_HANDLER(mulhw, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER), | |
7990 | GEN_HANDLER(mulhwu, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER), | |
7991 | GEN_HANDLER(mullw, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER), | |
7992 | GEN_HANDLER(mullwo, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER), | |
7993 | GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
7994 | #if defined(TARGET_PPC64) | |
7995 | GEN_HANDLER(mulld, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B), | |
7996 | #endif | |
7997 | GEN_HANDLER(neg, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER), | |
7998 | GEN_HANDLER(nego, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER), | |
7999 | GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8000 | GEN_HANDLER2(andi_, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8001 | GEN_HANDLER2(andis_, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8002 | GEN_HANDLER(cntlzw, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER), | |
8003 | GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER), | |
8004 | GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER), | |
8005 | GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8006 | GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8007 | GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8008 | GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8009 | GEN_HANDLER(popcntb, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB), | |
8010 | #if defined(TARGET_PPC64) | |
8011 | GEN_HANDLER(cntlzd, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B), | |
8012 | #endif | |
8013 | GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8014 | GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8015 | GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8016 | GEN_HANDLER(slw, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER), | |
8017 | GEN_HANDLER(sraw, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER), | |
8018 | GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER), | |
8019 | GEN_HANDLER(srw, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER), | |
8020 | #if defined(TARGET_PPC64) | |
8021 | GEN_HANDLER(sld, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B), | |
8022 | GEN_HANDLER(srad, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B), | |
8023 | GEN_HANDLER2(sradi0, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B), | |
8024 | GEN_HANDLER2(sradi1, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B), | |
8025 | GEN_HANDLER(srd, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B), | |
8026 | #endif | |
8027 | GEN_HANDLER(frsqrtes, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES), | |
8028 | GEN_HANDLER(fsqrt, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT), | |
8029 | GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT), | |
8030 | GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT), | |
8031 | GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT), | |
8032 | GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT), | |
8033 | GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT), | |
8034 | GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT), | |
8035 | GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT), | |
8036 | GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT), | |
8037 | GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x00010000, PPC_FLOAT), | |
8038 | GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT), | |
8039 | #if defined(TARGET_PPC64) | |
8040 | GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B), | |
8041 | GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX), | |
8042 | GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B), | |
8043 | #endif | |
8044 | GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8045 | GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER), | |
8046 | GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING), | |
8047 | GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING), | |
8048 | GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING), | |
8049 | GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING), | |
8050 | GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO), | |
8051 | GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM), | |
8052 | GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES), | |
8053 | GEN_HANDLER2(stwcx_, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES), | |
8054 | #if defined(TARGET_PPC64) | |
8055 | GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B), | |
8056 | GEN_HANDLER2(stdcx_, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B), | |
8057 | #endif | |
8058 | GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC), | |
8059 | GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT), | |
8060 | GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW), | |
8061 | GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW), | |
8062 | GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW), | |
8063 | GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW), | |
8064 | GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER), | |
8065 | GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW), | |
8066 | #if defined(TARGET_PPC64) | |
8067 | GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B), | |
8068 | GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H), | |
8069 | #endif | |
8070 | GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW), | |
8071 | GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW), | |
8072 | GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW), | |
8073 | #if defined(TARGET_PPC64) | |
8074 | GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B), | |
8075 | GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B), | |
8076 | #endif | |
8077 | GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC), | |
8078 | GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC), | |
8079 | GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC), | |
8080 | GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC), | |
8081 | GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB), | |
8082 | GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC), | |
8083 | #if defined(TARGET_PPC64) | |
8084 | GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B), | |
8085 | #endif | |
8086 | GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC), | |
8087 | GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC), | |
8088 | GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE), | |
8089 | GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE), | |
8090 | GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE), | |
8091 | GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE), | |
8092 | GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE), | |
8093 | GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ), | |
8094 | GEN_HANDLER2(dcbz_970, "dcbz", 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT), | |
8095 | GEN_HANDLER(dst, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC), | |
8096 | GEN_HANDLER(dstst, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC), | |
8097 | GEN_HANDLER(dss, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC), | |
8098 | GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI), | |
8099 | GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA), | |
8100 | GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT), | |
8101 | GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT), | |
8102 | GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT), | |
8103 | GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT), | |
8104 | #if defined(TARGET_PPC64) | |
8105 | GEN_HANDLER2(mfsr_64b, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B), | |
8106 | GEN_HANDLER2(mfsrin_64b, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001, | |
8107 | PPC_SEGMENT_64B), | |
8108 | GEN_HANDLER2(mtsr_64b, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B), | |
8109 | GEN_HANDLER2(mtsrin_64b, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001, | |
8110 | PPC_SEGMENT_64B), | |
8111 | GEN_HANDLER2(slbmte, "slbmte", 0x1F, 0x12, 0x0C, 0x00000000, PPC_SEGMENT_64B), | |
8112 | #endif | |
8113 | GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA), | |
8114 | GEN_HANDLER(tlbiel, 0x1F, 0x12, 0x08, 0x03FF0001, PPC_MEM_TLBIE), | |
8115 | GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE), | |
8116 | GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC), | |
8117 | #if defined(TARGET_PPC64) | |
8118 | GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI), | |
8119 | GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI), | |
8120 | #endif | |
8121 | GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN), | |
8122 | GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN), | |
8123 | GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR), | |
8124 | GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR), | |
8125 | GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR), | |
8126 | GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR), | |
8127 | GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR), | |
8128 | GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR), | |
8129 | GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR), | |
8130 | GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR), | |
8131 | GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR), | |
8132 | GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR), | |
8133 | GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR), | |
8134 | GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR), | |
8135 | GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR), | |
8136 | GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR), | |
8137 | GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR), | |
8138 | GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR), | |
8139 | GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR), | |
8140 | GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR), | |
8141 | GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR), | |
8142 | GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR), | |
8143 | GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR), | |
8144 | GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR), | |
8145 | GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR), | |
8146 | GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR), | |
8147 | GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR), | |
8148 | GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR), | |
8149 | GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR), | |
8150 | GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR), | |
8151 | GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR), | |
8152 | GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR), | |
8153 | GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR), | |
8154 | GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR), | |
8155 | GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR), | |
8156 | GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR), | |
8157 | GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC), | |
8158 | GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC), | |
8159 | GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC), | |
8160 | GEN_HANDLER2(tlbld_6xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB), | |
8161 | GEN_HANDLER2(tlbli_6xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB), | |
8162 | GEN_HANDLER2(tlbld_74xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB), | |
8163 | GEN_HANDLER2(tlbli_74xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB), | |
8164 | GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER), | |
8165 | GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER), | |
8166 | GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER), | |
8167 | GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER), | |
8168 | GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER), | |
8169 | GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER), | |
8170 | GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2), | |
8171 | GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2), | |
8172 | GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2), | |
8173 | GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2), | |
8174 | GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2), | |
8175 | GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2), | |
8176 | GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2), | |
8177 | GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2), | |
8178 | GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI), | |
8179 | GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA), | |
8180 | GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR), | |
8181 | GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR), | |
8182 | GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX), | |
8183 | GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX), | |
8184 | GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX), | |
8185 | GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX), | |
8186 | GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON), | |
8187 | GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON), | |
8188 | GEN_HANDLER2(icbt_40x, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT), | |
8189 | GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON), | |
8190 | GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON), | |
8191 | GEN_HANDLER2(rfci_40x, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP), | |
8192 | GEN_HANDLER(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE), | |
8193 | GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI), | |
8194 | GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI), | |
8195 | GEN_HANDLER2(tlbre_40x, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB), | |
8196 | GEN_HANDLER2(tlbsx_40x, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB), | |
8197 | GEN_HANDLER2(tlbwe_40x, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB), | |
8198 | GEN_HANDLER2(tlbre_440, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE), | |
8199 | GEN_HANDLER2(tlbsx_440, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE), | |
8200 | GEN_HANDLER2(tlbwe_440, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE), | |
8201 | GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE), | |
fbe73008 | 8202 | GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE), |
5c55ff99 BS |
8203 | GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC), |
8204 | GEN_HANDLER(mbar, 0x1F, 0x16, 0x1a, 0x001FF801, PPC_BOOKE), | |
8205 | GEN_HANDLER(msync, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE), | |
8206 | GEN_HANDLER2(icbt_440, "icbt", 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE), | |
8207 | GEN_HANDLER(lvsl, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC), | |
8208 | GEN_HANDLER(lvsr, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC), | |
8209 | GEN_HANDLER(mfvscr, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC), | |
8210 | GEN_HANDLER(mtvscr, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC), | |
8211 | GEN_HANDLER(vsldoi, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC), | |
8212 | GEN_HANDLER(vmladduhm, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC), | |
8213 | GEN_HANDLER2(evsel0, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE), | |
8214 | GEN_HANDLER2(evsel1, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE), | |
8215 | GEN_HANDLER2(evsel2, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE), | |
8216 | GEN_HANDLER2(evsel3, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE), | |
8217 | ||
8218 | #undef GEN_INT_ARITH_ADD | |
8219 | #undef GEN_INT_ARITH_ADD_CONST | |
8220 | #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \ | |
8221 | GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER), | |
8222 | #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \ | |
8223 | add_ca, compute_ca, compute_ov) \ | |
8224 | GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER), | |
8225 | GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0) | |
8226 | GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1) | |
8227 | GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0) | |
8228 | GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1) | |
8229 | GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0) | |
8230 | GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1) | |
8231 | GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0) | |
8232 | GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1) | |
8233 | GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0) | |
8234 | GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1) | |
8235 | ||
8236 | #undef GEN_INT_ARITH_DIVW | |
8237 | #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \ | |
8238 | GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER) | |
8239 | GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0), | |
8240 | GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1), | |
8241 | GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0), | |
8242 | GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1), | |
8243 | ||
8244 | #if defined(TARGET_PPC64) | |
8245 | #undef GEN_INT_ARITH_DIVD | |
8246 | #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \ | |
8247 | GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) | |
8248 | GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0), | |
8249 | GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1), | |
8250 | GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0), | |
8251 | GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1), | |
8252 | ||
8253 | #undef GEN_INT_ARITH_MUL_HELPER | |
8254 | #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \ | |
8255 | GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) | |
8256 | GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00), | |
8257 | GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02), | |
8258 | GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17), | |
8259 | #endif | |
8260 | ||
8261 | #undef GEN_INT_ARITH_SUBF | |
8262 | #undef GEN_INT_ARITH_SUBF_CONST | |
8263 | #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \ | |
8264 | GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER), | |
8265 | #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \ | |
8266 | add_ca, compute_ca, compute_ov) \ | |
8267 | GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER), | |
8268 | GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0) | |
8269 | GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1) | |
8270 | GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0) | |
8271 | GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1) | |
8272 | GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0) | |
8273 | GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1) | |
8274 | GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0) | |
8275 | GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1) | |
8276 | GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0) | |
8277 | GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1) | |
8278 | ||
8279 | #undef GEN_LOGICAL1 | |
8280 | #undef GEN_LOGICAL2 | |
8281 | #define GEN_LOGICAL2(name, tcg_op, opc, type) \ | |
8282 | GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type) | |
8283 | #define GEN_LOGICAL1(name, tcg_op, opc, type) \ | |
8284 | GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type) | |
8285 | GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER), | |
8286 | GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER), | |
8287 | GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER), | |
8288 | GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER), | |
8289 | GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER), | |
8290 | GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER), | |
8291 | GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER), | |
8292 | GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER), | |
8293 | #if defined(TARGET_PPC64) | |
8294 | GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B), | |
8295 | #endif | |
8296 | ||
8297 | #if defined(TARGET_PPC64) | |
8298 | #undef GEN_PPC64_R2 | |
8299 | #undef GEN_PPC64_R4 | |
8300 | #define GEN_PPC64_R2(name, opc1, opc2) \ | |
8301 | GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\ | |
8302 | GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \ | |
8303 | PPC_64B) | |
8304 | #define GEN_PPC64_R4(name, opc1, opc2) \ | |
8305 | GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\ | |
8306 | GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \ | |
8307 | PPC_64B), \ | |
8308 | GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \ | |
8309 | PPC_64B), \ | |
8310 | GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \ | |
8311 | PPC_64B) | |
8312 | GEN_PPC64_R4(rldicl, 0x1E, 0x00), | |
8313 | GEN_PPC64_R4(rldicr, 0x1E, 0x02), | |
8314 | GEN_PPC64_R4(rldic, 0x1E, 0x04), | |
8315 | GEN_PPC64_R2(rldcl, 0x1E, 0x08), | |
8316 | GEN_PPC64_R2(rldcr, 0x1E, 0x09), | |
8317 | GEN_PPC64_R4(rldimi, 0x1E, 0x06), | |
8318 | #endif | |
8319 | ||
8320 | #undef _GEN_FLOAT_ACB | |
8321 | #undef GEN_FLOAT_ACB | |
8322 | #undef _GEN_FLOAT_AB | |
8323 | #undef GEN_FLOAT_AB | |
8324 | #undef _GEN_FLOAT_AC | |
8325 | #undef GEN_FLOAT_AC | |
8326 | #undef GEN_FLOAT_B | |
8327 | #undef GEN_FLOAT_BS | |
8328 | #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \ | |
8329 | GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type) | |
8330 | #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \ | |
8331 | _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type), \ | |
8332 | _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type) | |
8333 | #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \ | |
8334 | GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) | |
8335 | #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \ | |
8336 | _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type), \ | |
8337 | _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type) | |
8338 | #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \ | |
8339 | GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) | |
8340 | #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \ | |
8341 | _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type), \ | |
8342 | _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type) | |
8343 | #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \ | |
8344 | GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type) | |
8345 | #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \ | |
8346 | GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type) | |
8347 | ||
8348 | GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT), | |
8349 | GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT), | |
8350 | GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT), | |
8351 | GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT), | |
8352 | GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES), | |
8353 | GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE), | |
8354 | _GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL), | |
8355 | GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT), | |
8356 | GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT), | |
8357 | GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT), | |
8358 | GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT), | |
8359 | GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT), | |
8360 | GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT), | |
8361 | GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT), | |
8362 | GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT), | |
8363 | #if defined(TARGET_PPC64) | |
8364 | GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B), | |
8365 | GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B), | |
8366 | GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B), | |
8367 | #endif | |
8368 | GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT), | |
8369 | GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT), | |
8370 | GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT), | |
8371 | GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT), | |
8372 | GEN_FLOAT_B(abs, 0x08, 0x08, 0, PPC_FLOAT), | |
8373 | GEN_FLOAT_B(nabs, 0x08, 0x04, 0, PPC_FLOAT), | |
8374 | GEN_FLOAT_B(neg, 0x08, 0x01, 0, PPC_FLOAT), | |
8375 | ||
8376 | #undef GEN_LD | |
8377 | #undef GEN_LDU | |
8378 | #undef GEN_LDUX | |
8379 | #undef GEN_LDX | |
8380 | #undef GEN_LDS | |
8381 | #define GEN_LD(name, ldop, opc, type) \ | |
8382 | GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type), | |
8383 | #define GEN_LDU(name, ldop, opc, type) \ | |
8384 | GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type), | |
8385 | #define GEN_LDUX(name, ldop, opc2, opc3, type) \ | |
8386 | GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type), | |
8387 | #define GEN_LDX(name, ldop, opc2, opc3, type) \ | |
8388 | GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type), | |
8389 | #define GEN_LDS(name, ldop, op, type) \ | |
8390 | GEN_LD(name, ldop, op | 0x20, type) \ | |
8391 | GEN_LDU(name, ldop, op | 0x21, type) \ | |
8392 | GEN_LDUX(name, ldop, 0x17, op | 0x01, type) \ | |
8393 | GEN_LDX(name, ldop, 0x17, op | 0x00, type) | |
8394 | ||
8395 | GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER) | |
8396 | GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER) | |
8397 | GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER) | |
8398 | GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER) | |
8399 | #if defined(TARGET_PPC64) | |
8400 | GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B) | |
8401 | GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B) | |
8402 | GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B) | |
8403 | GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B) | |
8404 | #endif | |
8405 | GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER) | |
8406 | GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER) | |
8407 | ||
8408 | #undef GEN_ST | |
8409 | #undef GEN_STU | |
8410 | #undef GEN_STUX | |
8411 | #undef GEN_STX | |
8412 | #undef GEN_STS | |
8413 | #define GEN_ST(name, stop, opc, type) \ | |
8414 | GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type), | |
8415 | #define GEN_STU(name, stop, opc, type) \ | |
8416 | GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type), | |
8417 | #define GEN_STUX(name, stop, opc2, opc3, type) \ | |
8418 | GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type), | |
8419 | #define GEN_STX(name, stop, opc2, opc3, type) \ | |
8420 | GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type), | |
8421 | #define GEN_STS(name, stop, op, type) \ | |
8422 | GEN_ST(name, stop, op | 0x20, type) \ | |
8423 | GEN_STU(name, stop, op | 0x21, type) \ | |
8424 | GEN_STUX(name, stop, 0x17, op | 0x01, type) \ | |
8425 | GEN_STX(name, stop, 0x17, op | 0x00, type) | |
8426 | ||
8427 | GEN_STS(stb, st8, 0x06, PPC_INTEGER) | |
8428 | GEN_STS(sth, st16, 0x0C, PPC_INTEGER) | |
8429 | GEN_STS(stw, st32, 0x04, PPC_INTEGER) | |
8430 | #if defined(TARGET_PPC64) | |
8431 | GEN_STUX(std, st64, 0x15, 0x05, PPC_64B) | |
8432 | GEN_STX(std, st64, 0x15, 0x04, PPC_64B) | |
8433 | #endif | |
8434 | GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER) | |
8435 | GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER) | |
8436 | ||
8437 | #undef GEN_LDF | |
8438 | #undef GEN_LDUF | |
8439 | #undef GEN_LDUXF | |
8440 | #undef GEN_LDXF | |
8441 | #undef GEN_LDFS | |
8442 | #define GEN_LDF(name, ldop, opc, type) \ | |
8443 | GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type), | |
8444 | #define GEN_LDUF(name, ldop, opc, type) \ | |
8445 | GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type), | |
8446 | #define GEN_LDUXF(name, ldop, opc, type) \ | |
8447 | GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type), | |
8448 | #define GEN_LDXF(name, ldop, opc2, opc3, type) \ | |
8449 | GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type), | |
8450 | #define GEN_LDFS(name, ldop, op, type) \ | |
8451 | GEN_LDF(name, ldop, op | 0x20, type) \ | |
8452 | GEN_LDUF(name, ldop, op | 0x21, type) \ | |
8453 | GEN_LDUXF(name, ldop, op | 0x01, type) \ | |
8454 | GEN_LDXF(name, ldop, 0x17, op | 0x00, type) | |
8455 | ||
8456 | GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT) | |
8457 | GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT) | |
8458 | ||
8459 | #undef GEN_STF | |
8460 | #undef GEN_STUF | |
8461 | #undef GEN_STUXF | |
8462 | #undef GEN_STXF | |
8463 | #undef GEN_STFS | |
8464 | #define GEN_STF(name, stop, opc, type) \ | |
8465 | GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type), | |
8466 | #define GEN_STUF(name, stop, opc, type) \ | |
8467 | GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type), | |
8468 | #define GEN_STUXF(name, stop, opc, type) \ | |
8469 | GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type), | |
8470 | #define GEN_STXF(name, stop, opc2, opc3, type) \ | |
8471 | GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type), | |
8472 | #define GEN_STFS(name, stop, op, type) \ | |
8473 | GEN_STF(name, stop, op | 0x20, type) \ | |
8474 | GEN_STUF(name, stop, op | 0x21, type) \ | |
8475 | GEN_STUXF(name, stop, op | 0x01, type) \ | |
8476 | GEN_STXF(name, stop, 0x17, op | 0x00, type) | |
8477 | ||
8478 | GEN_STFS(stfd, st64, 0x16, PPC_FLOAT) | |
8479 | GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT) | |
8480 | GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX) | |
8481 | ||
8482 | #undef GEN_CRLOGIC | |
8483 | #define GEN_CRLOGIC(name, tcg_op, opc) \ | |
8484 | GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER) | |
8485 | GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08), | |
8486 | GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04), | |
8487 | GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09), | |
8488 | GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07), | |
8489 | GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01), | |
8490 | GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E), | |
8491 | GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D), | |
8492 | GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06), | |
8493 | ||
8494 | #undef GEN_MAC_HANDLER | |
8495 | #define GEN_MAC_HANDLER(name, opc2, opc3) \ | |
8496 | GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC) | |
8497 | GEN_MAC_HANDLER(macchw, 0x0C, 0x05), | |
8498 | GEN_MAC_HANDLER(macchwo, 0x0C, 0x15), | |
8499 | GEN_MAC_HANDLER(macchws, 0x0C, 0x07), | |
8500 | GEN_MAC_HANDLER(macchwso, 0x0C, 0x17), | |
8501 | GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06), | |
8502 | GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16), | |
8503 | GEN_MAC_HANDLER(macchwu, 0x0C, 0x04), | |
8504 | GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14), | |
8505 | GEN_MAC_HANDLER(machhw, 0x0C, 0x01), | |
8506 | GEN_MAC_HANDLER(machhwo, 0x0C, 0x11), | |
8507 | GEN_MAC_HANDLER(machhws, 0x0C, 0x03), | |
8508 | GEN_MAC_HANDLER(machhwso, 0x0C, 0x13), | |
8509 | GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02), | |
8510 | GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12), | |
8511 | GEN_MAC_HANDLER(machhwu, 0x0C, 0x00), | |
8512 | GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10), | |
8513 | GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D), | |
8514 | GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D), | |
8515 | GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F), | |
8516 | GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F), | |
8517 | GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C), | |
8518 | GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C), | |
8519 | GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E), | |
8520 | GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E), | |
8521 | GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05), | |
8522 | GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15), | |
8523 | GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07), | |
8524 | GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17), | |
8525 | GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01), | |
8526 | GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11), | |
8527 | GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03), | |
8528 | GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13), | |
8529 | GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D), | |
8530 | GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D), | |
8531 | GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F), | |
8532 | GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F), | |
8533 | GEN_MAC_HANDLER(mulchw, 0x08, 0x05), | |
8534 | GEN_MAC_HANDLER(mulchwu, 0x08, 0x04), | |
8535 | GEN_MAC_HANDLER(mulhhw, 0x08, 0x01), | |
8536 | GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00), | |
8537 | GEN_MAC_HANDLER(mullhw, 0x08, 0x0D), | |
8538 | GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C), | |
8539 | ||
8540 | #undef GEN_VR_LDX | |
8541 | #undef GEN_VR_STX | |
8542 | #undef GEN_VR_LVE | |
8543 | #undef GEN_VR_STVE | |
8544 | #define GEN_VR_LDX(name, opc2, opc3) \ | |
8545 | GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) | |
8546 | #define GEN_VR_STX(name, opc2, opc3) \ | |
8547 | GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) | |
8548 | #define GEN_VR_LVE(name, opc2, opc3) \ | |
8549 | GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) | |
8550 | #define GEN_VR_STVE(name, opc2, opc3) \ | |
8551 | GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) | |
8552 | GEN_VR_LDX(lvx, 0x07, 0x03), | |
8553 | GEN_VR_LDX(lvxl, 0x07, 0x0B), | |
8554 | GEN_VR_LVE(bx, 0x07, 0x00), | |
8555 | GEN_VR_LVE(hx, 0x07, 0x01), | |
8556 | GEN_VR_LVE(wx, 0x07, 0x02), | |
8557 | GEN_VR_STX(svx, 0x07, 0x07), | |
8558 | GEN_VR_STX(svxl, 0x07, 0x0F), | |
8559 | GEN_VR_STVE(bx, 0x07, 0x04), | |
8560 | GEN_VR_STVE(hx, 0x07, 0x05), | |
8561 | GEN_VR_STVE(wx, 0x07, 0x06), | |
8562 | ||
8563 | #undef GEN_VX_LOGICAL | |
8564 | #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \ | |
8565 | GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) | |
8566 | GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16), | |
8567 | GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17), | |
8568 | GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18), | |
8569 | GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19), | |
8570 | GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20), | |
8571 | ||
8572 | #undef GEN_VXFORM | |
8573 | #define GEN_VXFORM(name, opc2, opc3) \ | |
8574 | GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) | |
8575 | GEN_VXFORM(vaddubm, 0, 0), | |
8576 | GEN_VXFORM(vadduhm, 0, 1), | |
8577 | GEN_VXFORM(vadduwm, 0, 2), | |
8578 | GEN_VXFORM(vsububm, 0, 16), | |
8579 | GEN_VXFORM(vsubuhm, 0, 17), | |
8580 | GEN_VXFORM(vsubuwm, 0, 18), | |
8581 | GEN_VXFORM(vmaxub, 1, 0), | |
8582 | GEN_VXFORM(vmaxuh, 1, 1), | |
8583 | GEN_VXFORM(vmaxuw, 1, 2), | |
8584 | GEN_VXFORM(vmaxsb, 1, 4), | |
8585 | GEN_VXFORM(vmaxsh, 1, 5), | |
8586 | GEN_VXFORM(vmaxsw, 1, 6), | |
8587 | GEN_VXFORM(vminub, 1, 8), | |
8588 | GEN_VXFORM(vminuh, 1, 9), | |
8589 | GEN_VXFORM(vminuw, 1, 10), | |
8590 | GEN_VXFORM(vminsb, 1, 12), | |
8591 | GEN_VXFORM(vminsh, 1, 13), | |
8592 | GEN_VXFORM(vminsw, 1, 14), | |
8593 | GEN_VXFORM(vavgub, 1, 16), | |
8594 | GEN_VXFORM(vavguh, 1, 17), | |
8595 | GEN_VXFORM(vavguw, 1, 18), | |
8596 | GEN_VXFORM(vavgsb, 1, 20), | |
8597 | GEN_VXFORM(vavgsh, 1, 21), | |
8598 | GEN_VXFORM(vavgsw, 1, 22), | |
8599 | GEN_VXFORM(vmrghb, 6, 0), | |
8600 | GEN_VXFORM(vmrghh, 6, 1), | |
8601 | GEN_VXFORM(vmrghw, 6, 2), | |
8602 | GEN_VXFORM(vmrglb, 6, 4), | |
8603 | GEN_VXFORM(vmrglh, 6, 5), | |
8604 | GEN_VXFORM(vmrglw, 6, 6), | |
8605 | GEN_VXFORM(vmuloub, 4, 0), | |
8606 | GEN_VXFORM(vmulouh, 4, 1), | |
8607 | GEN_VXFORM(vmulosb, 4, 4), | |
8608 | GEN_VXFORM(vmulosh, 4, 5), | |
8609 | GEN_VXFORM(vmuleub, 4, 8), | |
8610 | GEN_VXFORM(vmuleuh, 4, 9), | |
8611 | GEN_VXFORM(vmulesb, 4, 12), | |
8612 | GEN_VXFORM(vmulesh, 4, 13), | |
8613 | GEN_VXFORM(vslb, 2, 4), | |
8614 | GEN_VXFORM(vslh, 2, 5), | |
8615 | GEN_VXFORM(vslw, 2, 6), | |
8616 | GEN_VXFORM(vsrb, 2, 8), | |
8617 | GEN_VXFORM(vsrh, 2, 9), | |
8618 | GEN_VXFORM(vsrw, 2, 10), | |
8619 | GEN_VXFORM(vsrab, 2, 12), | |
8620 | GEN_VXFORM(vsrah, 2, 13), | |
8621 | GEN_VXFORM(vsraw, 2, 14), | |
8622 | GEN_VXFORM(vslo, 6, 16), | |
8623 | GEN_VXFORM(vsro, 6, 17), | |
8624 | GEN_VXFORM(vaddcuw, 0, 6), | |
8625 | GEN_VXFORM(vsubcuw, 0, 22), | |
8626 | GEN_VXFORM(vaddubs, 0, 8), | |
8627 | GEN_VXFORM(vadduhs, 0, 9), | |
8628 | GEN_VXFORM(vadduws, 0, 10), | |
8629 | GEN_VXFORM(vaddsbs, 0, 12), | |
8630 | GEN_VXFORM(vaddshs, 0, 13), | |
8631 | GEN_VXFORM(vaddsws, 0, 14), | |
8632 | GEN_VXFORM(vsububs, 0, 24), | |
8633 | GEN_VXFORM(vsubuhs, 0, 25), | |
8634 | GEN_VXFORM(vsubuws, 0, 26), | |
8635 | GEN_VXFORM(vsubsbs, 0, 28), | |
8636 | GEN_VXFORM(vsubshs, 0, 29), | |
8637 | GEN_VXFORM(vsubsws, 0, 30), | |
8638 | GEN_VXFORM(vrlb, 2, 0), | |
8639 | GEN_VXFORM(vrlh, 2, 1), | |
8640 | GEN_VXFORM(vrlw, 2, 2), | |
8641 | GEN_VXFORM(vsl, 2, 7), | |
8642 | GEN_VXFORM(vsr, 2, 11), | |
8643 | GEN_VXFORM(vpkuhum, 7, 0), | |
8644 | GEN_VXFORM(vpkuwum, 7, 1), | |
8645 | GEN_VXFORM(vpkuhus, 7, 2), | |
8646 | GEN_VXFORM(vpkuwus, 7, 3), | |
8647 | GEN_VXFORM(vpkshus, 7, 4), | |
8648 | GEN_VXFORM(vpkswus, 7, 5), | |
8649 | GEN_VXFORM(vpkshss, 7, 6), | |
8650 | GEN_VXFORM(vpkswss, 7, 7), | |
8651 | GEN_VXFORM(vpkpx, 7, 12), | |
8652 | GEN_VXFORM(vsum4ubs, 4, 24), | |
8653 | GEN_VXFORM(vsum4sbs, 4, 28), | |
8654 | GEN_VXFORM(vsum4shs, 4, 25), | |
8655 | GEN_VXFORM(vsum2sws, 4, 26), | |
8656 | GEN_VXFORM(vsumsws, 4, 30), | |
8657 | GEN_VXFORM(vaddfp, 5, 0), | |
8658 | GEN_VXFORM(vsubfp, 5, 1), | |
8659 | GEN_VXFORM(vmaxfp, 5, 16), | |
8660 | GEN_VXFORM(vminfp, 5, 17), | |
8661 | ||
8662 | #undef GEN_VXRFORM1 | |
8663 | #undef GEN_VXRFORM | |
8664 | #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \ | |
8665 | GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC), | |
8666 | #define GEN_VXRFORM(name, opc2, opc3) \ | |
8667 | GEN_VXRFORM1(name, name, #name, opc2, opc3) \ | |
8668 | GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4))) | |
8669 | GEN_VXRFORM(vcmpequb, 3, 0) | |
8670 | GEN_VXRFORM(vcmpequh, 3, 1) | |
8671 | GEN_VXRFORM(vcmpequw, 3, 2) | |
8672 | GEN_VXRFORM(vcmpgtsb, 3, 12) | |
8673 | GEN_VXRFORM(vcmpgtsh, 3, 13) | |
8674 | GEN_VXRFORM(vcmpgtsw, 3, 14) | |
8675 | GEN_VXRFORM(vcmpgtub, 3, 8) | |
8676 | GEN_VXRFORM(vcmpgtuh, 3, 9) | |
8677 | GEN_VXRFORM(vcmpgtuw, 3, 10) | |
8678 | GEN_VXRFORM(vcmpeqfp, 3, 3) | |
8679 | GEN_VXRFORM(vcmpgefp, 3, 7) | |
8680 | GEN_VXRFORM(vcmpgtfp, 3, 11) | |
8681 | GEN_VXRFORM(vcmpbfp, 3, 15) | |
8682 | ||
8683 | #undef GEN_VXFORM_SIMM | |
8684 | #define GEN_VXFORM_SIMM(name, opc2, opc3) \ | |
8685 | GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) | |
8686 | GEN_VXFORM_SIMM(vspltisb, 6, 12), | |
8687 | GEN_VXFORM_SIMM(vspltish, 6, 13), | |
8688 | GEN_VXFORM_SIMM(vspltisw, 6, 14), | |
8689 | ||
8690 | #undef GEN_VXFORM_NOA | |
8691 | #define GEN_VXFORM_NOA(name, opc2, opc3) \ | |
8692 | GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC) | |
8693 | GEN_VXFORM_NOA(vupkhsb, 7, 8), | |
8694 | GEN_VXFORM_NOA(vupkhsh, 7, 9), | |
8695 | GEN_VXFORM_NOA(vupklsb, 7, 10), | |
8696 | GEN_VXFORM_NOA(vupklsh, 7, 11), | |
8697 | GEN_VXFORM_NOA(vupkhpx, 7, 13), | |
8698 | GEN_VXFORM_NOA(vupklpx, 7, 15), | |
8699 | GEN_VXFORM_NOA(vrefp, 5, 4), | |
8700 | GEN_VXFORM_NOA(vrsqrtefp, 5, 5), | |
8701 | GEN_VXFORM_NOA(vlogefp, 5, 7), | |
8702 | GEN_VXFORM_NOA(vrfim, 5, 8), | |
8703 | GEN_VXFORM_NOA(vrfin, 5, 9), | |
8704 | GEN_VXFORM_NOA(vrfip, 5, 10), | |
8705 | GEN_VXFORM_NOA(vrfiz, 5, 11), | |
8706 | ||
8707 | #undef GEN_VXFORM_UIMM | |
8708 | #define GEN_VXFORM_UIMM(name, opc2, opc3) \ | |
8709 | GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) | |
8710 | GEN_VXFORM_UIMM(vspltb, 6, 8), | |
8711 | GEN_VXFORM_UIMM(vsplth, 6, 9), | |
8712 | GEN_VXFORM_UIMM(vspltw, 6, 10), | |
8713 | GEN_VXFORM_UIMM(vcfux, 5, 12), | |
8714 | GEN_VXFORM_UIMM(vcfsx, 5, 13), | |
8715 | GEN_VXFORM_UIMM(vctuxs, 5, 14), | |
8716 | GEN_VXFORM_UIMM(vctsxs, 5, 15), | |
8717 | ||
8718 | #undef GEN_VAFORM_PAIRED | |
8719 | #define GEN_VAFORM_PAIRED(name0, name1, opc2) \ | |
8720 | GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC) | |
8721 | GEN_VAFORM_PAIRED(vmhaddshs, vmhraddshs, 16), | |
8722 | GEN_VAFORM_PAIRED(vmsumubm, vmsummbm, 18), | |
8723 | GEN_VAFORM_PAIRED(vmsumuhm, vmsumuhs, 19), | |
8724 | GEN_VAFORM_PAIRED(vmsumshm, vmsumshs, 20), | |
8725 | GEN_VAFORM_PAIRED(vsel, vperm, 21), | |
8726 | GEN_VAFORM_PAIRED(vmaddfp, vnmsubfp, 23), | |
8727 | ||
8728 | #undef GEN_SPE | |
8729 | #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \ | |
8730 | GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type) | |
8731 | GEN_SPE(evaddw, speundef, 0x00, 0x08, 0x00000000, PPC_SPE), | |
8732 | GEN_SPE(evaddiw, speundef, 0x01, 0x08, 0x00000000, PPC_SPE), | |
8733 | GEN_SPE(evsubfw, speundef, 0x02, 0x08, 0x00000000, PPC_SPE), | |
8734 | GEN_SPE(evsubifw, speundef, 0x03, 0x08, 0x00000000, PPC_SPE), | |
8735 | GEN_SPE(evabs, evneg, 0x04, 0x08, 0x0000F800, PPC_SPE), | |
8736 | GEN_SPE(evextsb, evextsh, 0x05, 0x08, 0x0000F800, PPC_SPE), | |
8737 | GEN_SPE(evrndw, evcntlzw, 0x06, 0x08, 0x0000F800, PPC_SPE), | |
8738 | GEN_SPE(evcntlsw, brinc, 0x07, 0x08, 0x00000000, PPC_SPE), | |
8739 | GEN_SPE(speundef, evand, 0x08, 0x08, 0x00000000, PPC_SPE), | |
8740 | GEN_SPE(evandc, speundef, 0x09, 0x08, 0x00000000, PPC_SPE), | |
8741 | GEN_SPE(evxor, evor, 0x0B, 0x08, 0x00000000, PPC_SPE), | |
8742 | GEN_SPE(evnor, eveqv, 0x0C, 0x08, 0x00000000, PPC_SPE), | |
8743 | GEN_SPE(speundef, evorc, 0x0D, 0x08, 0x00000000, PPC_SPE), | |
8744 | GEN_SPE(evnand, speundef, 0x0F, 0x08, 0x00000000, PPC_SPE), | |
8745 | GEN_SPE(evsrwu, evsrws, 0x10, 0x08, 0x00000000, PPC_SPE), | |
8746 | GEN_SPE(evsrwiu, evsrwis, 0x11, 0x08, 0x00000000, PPC_SPE), | |
8747 | GEN_SPE(evslw, speundef, 0x12, 0x08, 0x00000000, PPC_SPE), | |
8748 | GEN_SPE(evslwi, speundef, 0x13, 0x08, 0x00000000, PPC_SPE), | |
8749 | GEN_SPE(evrlw, evsplati, 0x14, 0x08, 0x00000000, PPC_SPE), | |
8750 | GEN_SPE(evrlwi, evsplatfi, 0x15, 0x08, 0x00000000, PPC_SPE), | |
8751 | GEN_SPE(evmergehi, evmergelo, 0x16, 0x08, 0x00000000, PPC_SPE), | |
8752 | GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, PPC_SPE), | |
8753 | GEN_SPE(evcmpgtu, evcmpgts, 0x18, 0x08, 0x00600000, PPC_SPE), | |
8754 | GEN_SPE(evcmpltu, evcmplts, 0x19, 0x08, 0x00600000, PPC_SPE), | |
8755 | GEN_SPE(evcmpeq, speundef, 0x1A, 0x08, 0x00600000, PPC_SPE), | |
8756 | ||
8757 | GEN_SPE(evfsadd, evfssub, 0x00, 0x0A, 0x00000000, PPC_SPE_SINGLE), | |
8758 | GEN_SPE(evfsabs, evfsnabs, 0x02, 0x0A, 0x0000F800, PPC_SPE_SINGLE), | |
8759 | GEN_SPE(evfsneg, speundef, 0x03, 0x0A, 0x0000F800, PPC_SPE_SINGLE), | |
8760 | GEN_SPE(evfsmul, evfsdiv, 0x04, 0x0A, 0x00000000, PPC_SPE_SINGLE), | |
8761 | GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, PPC_SPE_SINGLE), | |
8762 | GEN_SPE(evfscmpeq, speundef, 0x07, 0x0A, 0x00600000, PPC_SPE_SINGLE), | |
8763 | GEN_SPE(evfscfui, evfscfsi, 0x08, 0x0A, 0x00180000, PPC_SPE_SINGLE), | |
8764 | GEN_SPE(evfscfuf, evfscfsf, 0x09, 0x0A, 0x00180000, PPC_SPE_SINGLE), | |
8765 | GEN_SPE(evfsctui, evfsctsi, 0x0A, 0x0A, 0x00180000, PPC_SPE_SINGLE), | |
8766 | GEN_SPE(evfsctuf, evfsctsf, 0x0B, 0x0A, 0x00180000, PPC_SPE_SINGLE), | |
8767 | GEN_SPE(evfsctuiz, speundef, 0x0C, 0x0A, 0x00180000, PPC_SPE_SINGLE), | |
8768 | GEN_SPE(evfsctsiz, speundef, 0x0D, 0x0A, 0x00180000, PPC_SPE_SINGLE), | |
8769 | GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, PPC_SPE_SINGLE), | |
8770 | GEN_SPE(evfststeq, speundef, 0x0F, 0x0A, 0x00600000, PPC_SPE_SINGLE), | |
8771 | ||
8772 | GEN_SPE(efsadd, efssub, 0x00, 0x0B, 0x00000000, PPC_SPE_SINGLE), | |
8773 | GEN_SPE(efsabs, efsnabs, 0x02, 0x0B, 0x0000F800, PPC_SPE_SINGLE), | |
8774 | GEN_SPE(efsneg, speundef, 0x03, 0x0B, 0x0000F800, PPC_SPE_SINGLE), | |
8775 | GEN_SPE(efsmul, efsdiv, 0x04, 0x0B, 0x00000000, PPC_SPE_SINGLE), | |
8776 | GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, PPC_SPE_SINGLE), | |
8777 | GEN_SPE(efscmpeq, efscfd, 0x07, 0x0B, 0x00600000, PPC_SPE_SINGLE), | |
8778 | GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, PPC_SPE_SINGLE), | |
8779 | GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, PPC_SPE_SINGLE), | |
8780 | GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, PPC_SPE_SINGLE), | |
8781 | GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, PPC_SPE_SINGLE), | |
8782 | GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, PPC_SPE_SINGLE), | |
8783 | GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, PPC_SPE_SINGLE), | |
8784 | GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, PPC_SPE_SINGLE), | |
8785 | GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, PPC_SPE_SINGLE), | |
8786 | ||
8787 | GEN_SPE(efdadd, efdsub, 0x10, 0x0B, 0x00000000, PPC_SPE_DOUBLE), | |
8788 | GEN_SPE(efdcfuid, efdcfsid, 0x11, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8789 | GEN_SPE(efdabs, efdnabs, 0x12, 0x0B, 0x0000F800, PPC_SPE_DOUBLE), | |
8790 | GEN_SPE(efdneg, speundef, 0x13, 0x0B, 0x0000F800, PPC_SPE_DOUBLE), | |
8791 | GEN_SPE(efdmul, efddiv, 0x14, 0x0B, 0x00000000, PPC_SPE_DOUBLE), | |
8792 | GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8793 | GEN_SPE(efdcmpgt, efdcmplt, 0x16, 0x0B, 0x00600000, PPC_SPE_DOUBLE), | |
8794 | GEN_SPE(efdcmpeq, efdcfs, 0x17, 0x0B, 0x00600000, PPC_SPE_DOUBLE), | |
8795 | GEN_SPE(efdcfui, efdcfsi, 0x18, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8796 | GEN_SPE(efdcfuf, efdcfsf, 0x19, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8797 | GEN_SPE(efdctui, efdctsi, 0x1A, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8798 | GEN_SPE(efdctuf, efdctsf, 0x1B, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8799 | GEN_SPE(efdctuiz, speundef, 0x1C, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8800 | GEN_SPE(efdctsiz, speundef, 0x1D, 0x0B, 0x00180000, PPC_SPE_DOUBLE), | |
8801 | GEN_SPE(efdtstgt, efdtstlt, 0x1E, 0x0B, 0x00600000, PPC_SPE_DOUBLE), | |
8802 | GEN_SPE(efdtsteq, speundef, 0x1F, 0x0B, 0x00600000, PPC_SPE_DOUBLE), | |
8803 | ||
8804 | #undef GEN_SPEOP_LDST | |
8805 | #define GEN_SPEOP_LDST(name, opc2, sh) \ | |
8806 | GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE) | |
8807 | GEN_SPEOP_LDST(evldd, 0x00, 3), | |
8808 | GEN_SPEOP_LDST(evldw, 0x01, 3), | |
8809 | GEN_SPEOP_LDST(evldh, 0x02, 3), | |
8810 | GEN_SPEOP_LDST(evlhhesplat, 0x04, 1), | |
8811 | GEN_SPEOP_LDST(evlhhousplat, 0x06, 1), | |
8812 | GEN_SPEOP_LDST(evlhhossplat, 0x07, 1), | |
8813 | GEN_SPEOP_LDST(evlwhe, 0x08, 2), | |
8814 | GEN_SPEOP_LDST(evlwhou, 0x0A, 2), | |
8815 | GEN_SPEOP_LDST(evlwhos, 0x0B, 2), | |
8816 | GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2), | |
8817 | GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2), | |
8818 | ||
8819 | GEN_SPEOP_LDST(evstdd, 0x10, 3), | |
8820 | GEN_SPEOP_LDST(evstdw, 0x11, 3), | |
8821 | GEN_SPEOP_LDST(evstdh, 0x12, 3), | |
8822 | GEN_SPEOP_LDST(evstwhe, 0x18, 2), | |
8823 | GEN_SPEOP_LDST(evstwho, 0x1A, 2), | |
8824 | GEN_SPEOP_LDST(evstwwe, 0x1C, 2), | |
8825 | GEN_SPEOP_LDST(evstwwo, 0x1E, 2), | |
8826 | }; | |
8827 | ||
3fc6c082 | 8828 | #include "translate_init.c" |
0411a972 | 8829 | #include "helper_regs.h" |
79aceca5 | 8830 | |
9a64fbe4 | 8831 | /*****************************************************************************/ |
3fc6c082 | 8832 | /* Misc PowerPC helpers */ |
36081602 JM |
8833 | void cpu_dump_state (CPUState *env, FILE *f, |
8834 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...), | |
8835 | int flags) | |
79aceca5 | 8836 | { |
3fc6c082 FB |
8837 | #define RGPL 4 |
8838 | #define RFPL 4 | |
3fc6c082 | 8839 | |
79aceca5 FB |
8840 | int i; |
8841 | ||
90e189ec BS |
8842 | cpu_fprintf(f, "NIP " TARGET_FMT_lx " LR " TARGET_FMT_lx " CTR " |
8843 | TARGET_FMT_lx " XER %08x\n", env->nip, env->lr, env->ctr, | |
8844 | env->xer); | |
8845 | cpu_fprintf(f, "MSR " TARGET_FMT_lx " HID0 " TARGET_FMT_lx " HF " | |
8846 | TARGET_FMT_lx " idx %d\n", env->msr, env->spr[SPR_HID0], | |
8847 | env->hflags, env->mmu_idx); | |
d9bce9d9 | 8848 | #if !defined(NO_TIMER_DUMP) |
077fc206 | 8849 | cpu_fprintf(f, "TB %08x %08x " |
76a66253 JM |
8850 | #if !defined(CONFIG_USER_ONLY) |
8851 | "DECR %08x" | |
8852 | #endif | |
8853 | "\n", | |
077fc206 | 8854 | cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env) |
76a66253 JM |
8855 | #if !defined(CONFIG_USER_ONLY) |
8856 | , cpu_ppc_load_decr(env) | |
8857 | #endif | |
8858 | ); | |
077fc206 | 8859 | #endif |
76a66253 | 8860 | for (i = 0; i < 32; i++) { |
3fc6c082 FB |
8861 | if ((i & (RGPL - 1)) == 0) |
8862 | cpu_fprintf(f, "GPR%02d", i); | |
b11ebf64 | 8863 | cpu_fprintf(f, " %016" PRIx64, ppc_dump_gpr(env, i)); |
3fc6c082 | 8864 | if ((i & (RGPL - 1)) == (RGPL - 1)) |
7fe48483 | 8865 | cpu_fprintf(f, "\n"); |
76a66253 | 8866 | } |
3fc6c082 | 8867 | cpu_fprintf(f, "CR "); |
76a66253 | 8868 | for (i = 0; i < 8; i++) |
7fe48483 FB |
8869 | cpu_fprintf(f, "%01x", env->crf[i]); |
8870 | cpu_fprintf(f, " ["); | |
76a66253 JM |
8871 | for (i = 0; i < 8; i++) { |
8872 | char a = '-'; | |
8873 | if (env->crf[i] & 0x08) | |
8874 | a = 'L'; | |
8875 | else if (env->crf[i] & 0x04) | |
8876 | a = 'G'; | |
8877 | else if (env->crf[i] & 0x02) | |
8878 | a = 'E'; | |
7fe48483 | 8879 | cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' '); |
76a66253 | 8880 | } |
90e189ec BS |
8881 | cpu_fprintf(f, " ] RES " TARGET_FMT_lx "\n", |
8882 | env->reserve_addr); | |
3fc6c082 FB |
8883 | for (i = 0; i < 32; i++) { |
8884 | if ((i & (RFPL - 1)) == 0) | |
8885 | cpu_fprintf(f, "FPR%02d", i); | |
26a76461 | 8886 | cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i])); |
3fc6c082 | 8887 | if ((i & (RFPL - 1)) == (RFPL - 1)) |
7fe48483 | 8888 | cpu_fprintf(f, "\n"); |
79aceca5 | 8889 | } |
7889270a | 8890 | cpu_fprintf(f, "FPSCR %08x\n", env->fpscr); |
f2e63a42 | 8891 | #if !defined(CONFIG_USER_ONLY) |
90e189ec BS |
8892 | cpu_fprintf(f, "SRR0 " TARGET_FMT_lx " SRR1 " TARGET_FMT_lx " SDR1 " |
8893 | TARGET_FMT_lx "\n", env->spr[SPR_SRR0], env->spr[SPR_SRR1], | |
8894 | env->sdr1); | |
f2e63a42 | 8895 | #endif |
79aceca5 | 8896 | |
3fc6c082 FB |
8897 | #undef RGPL |
8898 | #undef RFPL | |
79aceca5 FB |
8899 | } |
8900 | ||
76a66253 JM |
8901 | void cpu_dump_statistics (CPUState *env, FILE*f, |
8902 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...), | |
8903 | int flags) | |
8904 | { | |
8905 | #if defined(DO_PPC_STATISTICS) | |
8906 | opc_handler_t **t1, **t2, **t3, *handler; | |
8907 | int op1, op2, op3; | |
8908 | ||
8909 | t1 = env->opcodes; | |
8910 | for (op1 = 0; op1 < 64; op1++) { | |
8911 | handler = t1[op1]; | |
8912 | if (is_indirect_opcode(handler)) { | |
8913 | t2 = ind_table(handler); | |
8914 | for (op2 = 0; op2 < 32; op2++) { | |
8915 | handler = t2[op2]; | |
8916 | if (is_indirect_opcode(handler)) { | |
8917 | t3 = ind_table(handler); | |
8918 | for (op3 = 0; op3 < 32; op3++) { | |
8919 | handler = t3[op3]; | |
8920 | if (handler->count == 0) | |
8921 | continue; | |
8922 | cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: " | |
8923 | "%016llx %lld\n", | |
8924 | op1, op2, op3, op1, (op3 << 5) | op2, | |
8925 | handler->oname, | |
8926 | handler->count, handler->count); | |
8927 | } | |
8928 | } else { | |
8929 | if (handler->count == 0) | |
8930 | continue; | |
8931 | cpu_fprintf(f, "%02x %02x (%02x %04d) %16s: " | |
8932 | "%016llx %lld\n", | |
8933 | op1, op2, op1, op2, handler->oname, | |
8934 | handler->count, handler->count); | |
8935 | } | |
8936 | } | |
8937 | } else { | |
8938 | if (handler->count == 0) | |
8939 | continue; | |
8940 | cpu_fprintf(f, "%02x (%02x ) %16s: %016llx %lld\n", | |
8941 | op1, op1, handler->oname, | |
8942 | handler->count, handler->count); | |
8943 | } | |
8944 | } | |
8945 | #endif | |
8946 | } | |
8947 | ||
9a64fbe4 | 8948 | /*****************************************************************************/ |
636aa200 BS |
8949 | static inline void gen_intermediate_code_internal(CPUState *env, |
8950 | TranslationBlock *tb, | |
8951 | int search_pc) | |
79aceca5 | 8952 | { |
9fddaa0c | 8953 | DisasContext ctx, *ctxp = &ctx; |
79aceca5 | 8954 | opc_handler_t **table, *handler; |
0fa85d43 | 8955 | target_ulong pc_start; |
79aceca5 | 8956 | uint16_t *gen_opc_end; |
a1d1bb31 | 8957 | CPUBreakpoint *bp; |
79aceca5 | 8958 | int j, lj = -1; |
2e70f6ef PB |
8959 | int num_insns; |
8960 | int max_insns; | |
79aceca5 FB |
8961 | |
8962 | pc_start = tb->pc; | |
79aceca5 | 8963 | gen_opc_end = gen_opc_buf + OPC_MAX_SIZE; |
046d6672 | 8964 | ctx.nip = pc_start; |
79aceca5 | 8965 | ctx.tb = tb; |
e1833e1f | 8966 | ctx.exception = POWERPC_EXCP_NONE; |
3fc6c082 | 8967 | ctx.spr_cb = env->spr_cb; |
76db3ba4 AJ |
8968 | ctx.mem_idx = env->mmu_idx; |
8969 | ctx.access_type = -1; | |
8970 | ctx.le_mode = env->hflags & (1 << MSR_LE) ? 1 : 0; | |
d9bce9d9 JM |
8971 | #if defined(TARGET_PPC64) |
8972 | ctx.sf_mode = msr_sf; | |
9a64fbe4 | 8973 | #endif |
3cc62370 | 8974 | ctx.fpu_enabled = msr_fp; |
a9d9eb8f | 8975 | if ((env->flags & POWERPC_FLAG_SPE) && msr_spe) |
d26bfc9a JM |
8976 | ctx.spe_enabled = msr_spe; |
8977 | else | |
8978 | ctx.spe_enabled = 0; | |
a9d9eb8f JM |
8979 | if ((env->flags & POWERPC_FLAG_VRE) && msr_vr) |
8980 | ctx.altivec_enabled = msr_vr; | |
8981 | else | |
8982 | ctx.altivec_enabled = 0; | |
d26bfc9a | 8983 | if ((env->flags & POWERPC_FLAG_SE) && msr_se) |
8cbcb4fa | 8984 | ctx.singlestep_enabled = CPU_SINGLE_STEP; |
d26bfc9a | 8985 | else |
8cbcb4fa | 8986 | ctx.singlestep_enabled = 0; |
d26bfc9a | 8987 | if ((env->flags & POWERPC_FLAG_BE) && msr_be) |
8cbcb4fa AJ |
8988 | ctx.singlestep_enabled |= CPU_BRANCH_STEP; |
8989 | if (unlikely(env->singlestep_enabled)) | |
8990 | ctx.singlestep_enabled |= GDBSTUB_SINGLE_STEP; | |
3fc6c082 | 8991 | #if defined (DO_SINGLE_STEP) && 0 |
9a64fbe4 FB |
8992 | /* Single step trace mode */ |
8993 | msr_se = 1; | |
8994 | #endif | |
2e70f6ef PB |
8995 | num_insns = 0; |
8996 | max_insns = tb->cflags & CF_COUNT_MASK; | |
8997 | if (max_insns == 0) | |
8998 | max_insns = CF_COUNT_MASK; | |
8999 | ||
9000 | gen_icount_start(); | |
9a64fbe4 | 9001 | /* Set env in case of segfault during code fetch */ |
e1833e1f | 9002 | while (ctx.exception == POWERPC_EXCP_NONE && gen_opc_ptr < gen_opc_end) { |
c0ce998e AL |
9003 | if (unlikely(!TAILQ_EMPTY(&env->breakpoints))) { |
9004 | TAILQ_FOREACH(bp, &env->breakpoints, entry) { | |
a1d1bb31 | 9005 | if (bp->pc == ctx.nip) { |
e06fcd75 | 9006 | gen_debug_exception(ctxp); |
ea4e754f FB |
9007 | break; |
9008 | } | |
9009 | } | |
9010 | } | |
76a66253 | 9011 | if (unlikely(search_pc)) { |
79aceca5 FB |
9012 | j = gen_opc_ptr - gen_opc_buf; |
9013 | if (lj < j) { | |
9014 | lj++; | |
9015 | while (lj < j) | |
9016 | gen_opc_instr_start[lj++] = 0; | |
79aceca5 | 9017 | } |
af4b6c54 AJ |
9018 | gen_opc_pc[lj] = ctx.nip; |
9019 | gen_opc_instr_start[lj] = 1; | |
9020 | gen_opc_icount[lj] = num_insns; | |
79aceca5 | 9021 | } |
d12d51d5 | 9022 | LOG_DISAS("----------------\n"); |
90e189ec | 9023 | LOG_DISAS("nip=" TARGET_FMT_lx " super=%d ir=%d\n", |
d12d51d5 | 9024 | ctx.nip, ctx.mem_idx, (int)msr_ir); |
2e70f6ef PB |
9025 | if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO)) |
9026 | gen_io_start(); | |
76db3ba4 | 9027 | if (unlikely(ctx.le_mode)) { |
056401ea JM |
9028 | ctx.opcode = bswap32(ldl_code(ctx.nip)); |
9029 | } else { | |
9030 | ctx.opcode = ldl_code(ctx.nip); | |
111bfab3 | 9031 | } |
d12d51d5 | 9032 | LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n", |
9a64fbe4 | 9033 | ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode), |
056401ea | 9034 | opc3(ctx.opcode), little_endian ? "little" : "big"); |
046d6672 | 9035 | ctx.nip += 4; |
3fc6c082 | 9036 | table = env->opcodes; |
2e70f6ef | 9037 | num_insns++; |
79aceca5 FB |
9038 | handler = table[opc1(ctx.opcode)]; |
9039 | if (is_indirect_opcode(handler)) { | |
9040 | table = ind_table(handler); | |
9041 | handler = table[opc2(ctx.opcode)]; | |
9042 | if (is_indirect_opcode(handler)) { | |
9043 | table = ind_table(handler); | |
9044 | handler = table[opc3(ctx.opcode)]; | |
9045 | } | |
9046 | } | |
9047 | /* Is opcode *REALLY* valid ? */ | |
76a66253 | 9048 | if (unlikely(handler->handler == &gen_invalid)) { |
93fcfe39 AL |
9049 | if (qemu_log_enabled()) { |
9050 | qemu_log("invalid/unsupported opcode: " | |
90e189ec BS |
9051 | "%02x - %02x - %02x (%08x) " TARGET_FMT_lx " %d\n", |
9052 | opc1(ctx.opcode), opc2(ctx.opcode), | |
9053 | opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir); | |
4b3686fa FB |
9054 | } else { |
9055 | printf("invalid/unsupported opcode: " | |
90e189ec | 9056 | "%02x - %02x - %02x (%08x) " TARGET_FMT_lx " %d\n", |
4b3686fa | 9057 | opc1(ctx.opcode), opc2(ctx.opcode), |
0411a972 | 9058 | opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir); |
4b3686fa | 9059 | } |
76a66253 JM |
9060 | } else { |
9061 | if (unlikely((ctx.opcode & handler->inval) != 0)) { | |
93fcfe39 AL |
9062 | if (qemu_log_enabled()) { |
9063 | qemu_log("invalid bits: %08x for opcode: " | |
90e189ec BS |
9064 | "%02x - %02x - %02x (%08x) " TARGET_FMT_lx "\n", |
9065 | ctx.opcode & handler->inval, opc1(ctx.opcode), | |
9066 | opc2(ctx.opcode), opc3(ctx.opcode), | |
9067 | ctx.opcode, ctx.nip - 4); | |
9a64fbe4 FB |
9068 | } else { |
9069 | printf("invalid bits: %08x for opcode: " | |
90e189ec | 9070 | "%02x - %02x - %02x (%08x) " TARGET_FMT_lx "\n", |
76a66253 JM |
9071 | ctx.opcode & handler->inval, opc1(ctx.opcode), |
9072 | opc2(ctx.opcode), opc3(ctx.opcode), | |
046d6672 | 9073 | ctx.opcode, ctx.nip - 4); |
76a66253 | 9074 | } |
e06fcd75 | 9075 | gen_inval_exception(ctxp, POWERPC_EXCP_INVAL_INVAL); |
4b3686fa | 9076 | break; |
79aceca5 | 9077 | } |
79aceca5 | 9078 | } |
4b3686fa | 9079 | (*(handler->handler))(&ctx); |
76a66253 JM |
9080 | #if defined(DO_PPC_STATISTICS) |
9081 | handler->count++; | |
9082 | #endif | |
9a64fbe4 | 9083 | /* Check trace mode exceptions */ |
8cbcb4fa AJ |
9084 | if (unlikely(ctx.singlestep_enabled & CPU_SINGLE_STEP && |
9085 | (ctx.nip <= 0x100 || ctx.nip > 0xF00) && | |
9086 | ctx.exception != POWERPC_SYSCALL && | |
9087 | ctx.exception != POWERPC_EXCP_TRAP && | |
9088 | ctx.exception != POWERPC_EXCP_BRANCH)) { | |
e06fcd75 | 9089 | gen_exception(ctxp, POWERPC_EXCP_TRACE); |
d26bfc9a | 9090 | } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) || |
2e70f6ef | 9091 | (env->singlestep_enabled) || |
1b530a6d | 9092 | singlestep || |
2e70f6ef | 9093 | num_insns >= max_insns)) { |
d26bfc9a JM |
9094 | /* if we reach a page boundary or are single stepping, stop |
9095 | * generation | |
9096 | */ | |
8dd4983c | 9097 | break; |
76a66253 | 9098 | } |
3fc6c082 | 9099 | } |
2e70f6ef PB |
9100 | if (tb->cflags & CF_LAST_IO) |
9101 | gen_io_end(); | |
e1833e1f | 9102 | if (ctx.exception == POWERPC_EXCP_NONE) { |
c1942362 | 9103 | gen_goto_tb(&ctx, 0, ctx.nip); |
e1833e1f | 9104 | } else if (ctx.exception != POWERPC_EXCP_BRANCH) { |
8cbcb4fa | 9105 | if (unlikely(env->singlestep_enabled)) { |
e06fcd75 | 9106 | gen_debug_exception(ctxp); |
8cbcb4fa | 9107 | } |
76a66253 | 9108 | /* Generate the return instruction */ |
57fec1fe | 9109 | tcg_gen_exit_tb(0); |
9a64fbe4 | 9110 | } |
2e70f6ef | 9111 | gen_icount_end(tb, num_insns); |
79aceca5 | 9112 | *gen_opc_ptr = INDEX_op_end; |
76a66253 | 9113 | if (unlikely(search_pc)) { |
9a64fbe4 FB |
9114 | j = gen_opc_ptr - gen_opc_buf; |
9115 | lj++; | |
9116 | while (lj <= j) | |
9117 | gen_opc_instr_start[lj++] = 0; | |
9a64fbe4 | 9118 | } else { |
046d6672 | 9119 | tb->size = ctx.nip - pc_start; |
2e70f6ef | 9120 | tb->icount = num_insns; |
9a64fbe4 | 9121 | } |
d9bce9d9 | 9122 | #if defined(DEBUG_DISAS) |
93fcfe39 AL |
9123 | qemu_log_mask(CPU_LOG_TB_CPU, "---------------- excp: %04x\n", ctx.exception); |
9124 | log_cpu_state_mask(CPU_LOG_TB_CPU, env, 0); | |
8fec2b8c | 9125 | if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { |
76a66253 | 9126 | int flags; |
237c0af0 | 9127 | flags = env->bfd_mach; |
76db3ba4 | 9128 | flags |= ctx.le_mode << 16; |
93fcfe39 AL |
9129 | qemu_log("IN: %s\n", lookup_symbol(pc_start)); |
9130 | log_target_disas(pc_start, ctx.nip - pc_start, flags); | |
9131 | qemu_log("\n"); | |
9fddaa0c | 9132 | } |
79aceca5 | 9133 | #endif |
79aceca5 FB |
9134 | } |
9135 | ||
2cfc5f17 | 9136 | void gen_intermediate_code (CPUState *env, struct TranslationBlock *tb) |
79aceca5 | 9137 | { |
2cfc5f17 | 9138 | gen_intermediate_code_internal(env, tb, 0); |
79aceca5 FB |
9139 | } |
9140 | ||
2cfc5f17 | 9141 | void gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb) |
79aceca5 | 9142 | { |
2cfc5f17 | 9143 | gen_intermediate_code_internal(env, tb, 1); |
79aceca5 | 9144 | } |
d2856f1a AJ |
9145 | |
9146 | void gen_pc_load(CPUState *env, TranslationBlock *tb, | |
9147 | unsigned long searched_pc, int pc_pos, void *puc) | |
9148 | { | |
d2856f1a | 9149 | env->nip = gen_opc_pc[pc_pos]; |
d2856f1a | 9150 | } |