2 * PPC emulation helpers for qemu.
4 * Copyright (c) 2003 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define MEMSUFFIX _raw
24 #include "op_helper_mem.h"
25 #if !defined(CONFIG_USER_ONLY)
26 #define MEMSUFFIX _user
27 #include "op_helper_mem.h"
28 #define MEMSUFFIX _kernel
29 #include "op_helper_mem.h"
32 /*****************************************************************************/
33 /* Exceptions processing helpers */
34 void cpu_loop_exit(void)
36 longjmp(env->jmp_env, 1);
39 void do_raise_exception_err (uint32_t exception, int error_code)
42 printf("Raise exception %3x code : %d\n", exception, error_code);
47 printf("DECREMENTER & EXTERNAL exceptions should be hard interrupts !\n");
52 if (error_code == EXCP_FP && msr_fe0 == 0 && msr_fe1 == 0)
58 env->exception_index = exception;
59 env->error_code = error_code;
63 void do_raise_exception (uint32_t exception)
65 do_raise_exception_err(exception, 0);
68 /*****************************************************************************/
69 /* Helpers for "fat" micro operations */
70 /* Special registers load and store */
71 void do_load_cr (void)
73 T0 = (env->crf[0] << 28) |
83 void do_store_cr (uint32_t mask)
87 for (i = 0, sh = 7; i < 8; i++, sh --) {
89 env->crf[i] = (T0 >> (sh * 4)) & 0xF;
93 void do_load_xer (void)
95 T0 = (xer_so << XER_SO) |
101 void do_store_xer (void)
103 xer_so = (T0 >> XER_SO) & 0x01;
104 xer_ov = (T0 >> XER_OV) & 0x01;
105 xer_ca = (T0 >> XER_CA) & 0x01;
106 xer_bc = (T0 >> XER_BC) & 0x3f;
109 void do_load_msr (void)
111 T0 = (msr_pow << MSR_POW) |
112 (msr_ile << MSR_ILE) |
117 (msr_fe0 << MSR_FE0) |
120 (msr_fe1 << MSR_FE1) |
128 void do_store_msr (void)
131 if (((T0 >> MSR_IR) & 0x01) != msr_ir ||
132 ((T0 >> MSR_DR) & 0x01) != msr_dr ||
133 ((T0 >> MSR_PR) & 0x01) != msr_pr)
138 msr_pow = (T0 >> MSR_POW) & 0x03;
139 msr_ile = (T0 >> MSR_ILE) & 0x01;
140 msr_ee = (T0 >> MSR_EE) & 0x01;
141 msr_pr = (T0 >> MSR_PR) & 0x01;
142 msr_fp = (T0 >> MSR_FP) & 0x01;
143 msr_me = (T0 >> MSR_ME) & 0x01;
144 msr_fe0 = (T0 >> MSR_FE0) & 0x01;
145 msr_se = (T0 >> MSR_SE) & 0x01;
146 msr_be = (T0 >> MSR_BE) & 0x01;
147 msr_fe1 = (T0 >> MSR_FE1) & 0x01;
148 msr_ip = (T0 >> MSR_IP) & 0x01;
149 msr_ir = (T0 >> MSR_IR) & 0x01;
150 msr_dr = (T0 >> MSR_DR) & 0x01;
151 msr_ri = (T0 >> MSR_RI) & 0x01;
152 msr_le = (T0 >> MSR_LE) & 0x01;
155 /* shift right arithmetic helper */
162 ret = (-1) * (T0 >> 31);
163 if (ret < 0 && (T0 & ~0x80000000) != 0)
166 } else if (T1 == 0) {
170 ret = (int32_t)T0 >> (T1 & 0x1f);
171 if (ret < 0 && ((int32_t)T0 & ((1 << T1) - 1)) != 0)
177 /* Floating point operations helpers */
178 void do_load_fpscr (void)
180 /* The 32 MSB of the target fpr are undefined.
191 #ifdef WORDS_BIGENDIAN
200 for (i = 0; i < 8; i++)
201 u.s.u[WORD1] |= env->fpscr[i] << (4 * i);
205 void do_store_fpscr (uint32_t mask)
208 * We use only the 32 LSB of the incoming fpr
220 env->fpscr[0] = (env->fpscr[0] & 0x9) | ((u.s.u[WORD1] >> 28) & ~0x9);
221 for (i = 1; i < 7; i++) {
222 if (mask & (1 << (7 - i)))
223 env->fpscr[i] = (u.s.u[WORD1] >> (4 * (7 - i))) & 0xF;
225 /* TODO: update FEX & VX */
226 /* Set rounding mode */
227 switch (env->fpscr[0] & 0x3) {
229 /* Best approximation (round to nearest) */
230 rnd_type = float_round_nearest_even;
233 /* Smaller magnitude (round toward zero) */
234 rnd_type = float_round_to_zero;
237 /* Round toward +infinite */
238 rnd_type = float_round_up;
242 /* Round toward -infinite */
243 rnd_type = float_round_down;
246 set_float_rounding_mode(rnd_type, &env->fp_status);
256 /* XXX: higher bits are not supposed to be significant.
257 * to make tests easier, return the same as a real PPC 750 (aka G3)
259 p.i = float64_to_int32(FT0, &env->fp_status);
260 p.i |= 0xFFF80000ULL << 32;
264 void do_fctiwz (void)
271 /* XXX: higher bits are not supposed to be significant.
272 * to make tests easier, return the same as a real PPC 750 (aka G3)
274 p.i = float64_to_int32_round_to_zero(FT0, &env->fp_status);
275 p.i |= 0xFFF80000ULL << 32;
279 void do_fnmadd (void)
281 FT0 = (FT0 * FT1) + FT2;
286 void do_fnmsub (void)
288 FT0 = (FT0 * FT1) - FT2;
295 if (FT0 == -0.0 && FT1 == -0.0)
314 FT0 = (float)(1.0 / FT0);
317 if (p.i == 0x8000000000000000ULL) {
318 p.i = 0xFFF0000000000000ULL;
319 } else if (p.i == 0x0000000000000000ULL) {
320 p.i = 0x7FF0000000000000ULL;
321 } else if (isnan(FT0)) {
322 p.i = 0x7FF8000000000000ULL;
323 } else if (FT0 < 0.0) {
324 p.i = 0x8000000000000000ULL;
326 p.i = 0x0000000000000000ULL;
332 void do_frsqrte (void)
339 if (isnormal(FT0) && FT0 > 0.0) {
340 FT0 = (float)(1.0 / sqrt(FT0));
343 if (p.i == 0x8000000000000000ULL) {
344 p.i = 0xFFF0000000000000ULL;
345 } else if (p.i == 0x0000000000000000ULL) {
346 p.i = 0x7FF0000000000000ULL;
347 } else if (isnan(FT0)) {
348 if (!(p.i & 0x0008000000000000ULL))
349 p.i |= 0x000FFFFFFFFFFFFFULL;
350 } else if (FT0 < 0) {
351 p.i = 0x7FF8000000000000ULL;
353 p.i = 0x0000000000000000ULL;
369 if (isnan(FT0) || isnan(FT1)) {
371 env->fpscr[4] |= 0x1;
372 env->fpscr[6] |= 0x1;
373 } else if (FT0 < FT1) {
375 } else if (FT0 > FT1) {
385 env->fpscr[4] &= ~0x1;
386 if (isnan(FT0) || isnan(FT1)) {
388 env->fpscr[4] |= 0x1;
389 /* I don't know how to test "quiet" nan... */
390 if (0 /* || ! quiet_nan(...) */) {
391 env->fpscr[6] |= 0x1;
392 if (!(env->fpscr[1] & 0x8))
393 env->fpscr[4] |= 0x8;
395 env->fpscr[4] |= 0x8;
397 } else if (FT0 < FT1) {
399 } else if (FT0 > FT1) {
415 p.i &= ~0x8000000000000000ULL;
427 p.i |= 0x8000000000000000ULL;
431 /* Instruction cache invalidation helper */
432 #define ICACHE_LINE_SIZE 32
434 void do_check_reservation (void)
436 if ((env->reserve & ~0x03) == T0)
442 /* Invalidate one cache line */
443 T0 &= ~(ICACHE_LINE_SIZE - 1);
444 tb_invalidate_page_range(T0, T0 + ICACHE_LINE_SIZE);
447 /* TLB invalidation helpers */
455 tlb_flush_page(env, T0);
458 void do_store_sr (uint32_t srnum)
460 #if defined (DEBUG_OP)
461 dump_store_sr(srnum);
468 for (page = base; page != base + 0x100000000; page += 0x1000)
469 tlb_flush_page(env, page);
477 /* For BATs, we may not invalidate any TLBs if the change is only on
478 * protection bits for user mode.
480 void do_store_ibat (int ul, int nr)
482 #if defined (DEBUG_OP)
483 dump_store_ibat(ul, nr);
487 uint32_t base, length, page;
489 base = env->IBAT[0][nr];
490 length = (((base >> 2) & 0x000007FF) + 1) << 17;
492 for (page = base; page != base + length; page += 0x1000)
493 tlb_flush_page(env, page);
498 env->IBAT[ul][nr] = T0;
501 void do_store_dbat (int ul, int nr)
503 #if defined (DEBUG_OP)
504 dump_store_dbat(ul, nr);
508 uint32_t base, length, page;
509 base = env->DBAT[0][nr];
510 length = (((base >> 2) & 0x000007FF) + 1) << 17;
512 for (page = base; page != base + length; page += 0x1000)
513 tlb_flush_page(env, page);
518 env->DBAT[ul][nr] = T0;
521 /*****************************************************************************/
522 /* Special helpers for debug */
523 void dump_state (void)
525 // cpu_dump_state(env, stdout, fprintf, 0);
531 printf("Return from interrupt => 0x%08x\n", env->nip);
532 // cpu_dump_state(env, stdout, fprintf, 0);
536 void dump_store_sr (int srnum)
539 printf("%s: reg=%d 0x%08x\n", __func__, srnum, T0);
543 static void _dump_store_bat (char ID, int ul, int nr)
545 printf("Set %cBAT%d%c to 0x%08x (0x%08x)\n",
546 ID, nr, ul == 0 ? 'u' : 'l', T0, env->nip);
549 void dump_store_ibat (int ul, int nr)
551 _dump_store_bat('I', ul, nr);
554 void dump_store_dbat (int ul, int nr)
556 _dump_store_bat('D', ul, nr);
559 void dump_store_tb (int ul)
561 printf("Set TB%c to 0x%08x\n", ul == 0 ? 'L' : 'U', T0);
564 void dump_update_tb(uint32_t param)
567 printf("Update TB: 0x%08x + %d => 0x%08x\n", T1, param, T0);