]>
Commit | Line | Data |
---|---|---|
9a64fbe4 | 1 | /* |
3fc6c082 | 2 | * PowerPC emulation helpers for qemu. |
5fafdf24 | 3 | * |
76a66253 | 4 | * Copyright (c) 2003-2007 Jocelyn Mayer |
9a64fbe4 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 | |
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 | |
19 | */ | |
9a64fbe4 | 20 | #include "exec.h" |
603fccce | 21 | #include "host-utils.h" |
a7812ae4 | 22 | #include "helper.h" |
9a64fbe4 | 23 | |
0411a972 | 24 | #include "helper_regs.h" |
0487d6a8 | 25 | |
fdabc366 FB |
26 | //#define DEBUG_OP |
27 | //#define DEBUG_EXCEPTIONS | |
76a66253 | 28 | //#define DEBUG_SOFTWARE_TLB |
fdabc366 | 29 | |
9a64fbe4 FB |
30 | /*****************************************************************************/ |
31 | /* Exceptions processing helpers */ | |
9a64fbe4 | 32 | |
64adab3f | 33 | void helper_raise_exception_err (uint32_t exception, uint32_t error_code) |
9a64fbe4 | 34 | { |
e06fcd75 AJ |
35 | #if 0 |
36 | printf("Raise exception %3x code : %d\n", exception, error_code); | |
37 | #endif | |
38 | env->exception_index = exception; | |
39 | env->error_code = error_code; | |
40 | cpu_loop_exit(); | |
76a66253 | 41 | } |
9fddaa0c | 42 | |
e06fcd75 | 43 | void helper_raise_exception (uint32_t exception) |
9fddaa0c | 44 | { |
e06fcd75 | 45 | helper_raise_exception_err(exception, 0); |
9a64fbe4 FB |
46 | } |
47 | ||
76a66253 JM |
48 | /*****************************************************************************/ |
49 | /* Registers load and stores */ | |
a7812ae4 | 50 | target_ulong helper_load_cr (void) |
76a66253 | 51 | { |
e1571908 AJ |
52 | return (env->crf[0] << 28) | |
53 | (env->crf[1] << 24) | | |
54 | (env->crf[2] << 20) | | |
55 | (env->crf[3] << 16) | | |
56 | (env->crf[4] << 12) | | |
57 | (env->crf[5] << 8) | | |
58 | (env->crf[6] << 4) | | |
59 | (env->crf[7] << 0); | |
76a66253 JM |
60 | } |
61 | ||
e1571908 | 62 | void helper_store_cr (target_ulong val, uint32_t mask) |
76a66253 JM |
63 | { |
64 | int i, sh; | |
65 | ||
36081602 | 66 | for (i = 0, sh = 7; i < 8; i++, sh--) { |
76a66253 | 67 | if (mask & (1 << sh)) |
e1571908 | 68 | env->crf[i] = (val >> (sh * 4)) & 0xFUL; |
76a66253 JM |
69 | } |
70 | } | |
71 | ||
45d827d2 AJ |
72 | /*****************************************************************************/ |
73 | /* SPR accesses */ | |
74 | void helper_load_dump_spr (uint32_t sprn) | |
a496775f | 75 | { |
6b80055d | 76 | if (loglevel != 0) { |
a496775f JM |
77 | fprintf(logfile, "Read SPR %d %03x => " ADDRX "\n", |
78 | sprn, sprn, env->spr[sprn]); | |
79 | } | |
a496775f JM |
80 | } |
81 | ||
45d827d2 | 82 | void helper_store_dump_spr (uint32_t sprn) |
a496775f | 83 | { |
6b80055d | 84 | if (loglevel != 0) { |
45d827d2 AJ |
85 | fprintf(logfile, "Write SPR %d %03x <= " ADDRX "\n", |
86 | sprn, sprn, env->spr[sprn]); | |
87 | } | |
88 | } | |
89 | ||
90 | target_ulong helper_load_tbl (void) | |
91 | { | |
92 | return cpu_ppc_load_tbl(env); | |
93 | } | |
94 | ||
95 | target_ulong helper_load_tbu (void) | |
96 | { | |
97 | return cpu_ppc_load_tbu(env); | |
98 | } | |
99 | ||
100 | target_ulong helper_load_atbl (void) | |
101 | { | |
102 | return cpu_ppc_load_atbl(env); | |
103 | } | |
104 | ||
105 | target_ulong helper_load_atbu (void) | |
106 | { | |
107 | return cpu_ppc_load_atbu(env); | |
108 | } | |
109 | ||
110 | target_ulong helper_load_601_rtcl (void) | |
111 | { | |
112 | return cpu_ppc601_load_rtcl(env); | |
113 | } | |
114 | ||
115 | target_ulong helper_load_601_rtcu (void) | |
116 | { | |
117 | return cpu_ppc601_load_rtcu(env); | |
118 | } | |
119 | ||
120 | #if !defined(CONFIG_USER_ONLY) | |
121 | #if defined (TARGET_PPC64) | |
122 | void helper_store_asr (target_ulong val) | |
123 | { | |
124 | ppc_store_asr(env, val); | |
125 | } | |
126 | #endif | |
127 | ||
128 | void helper_store_sdr1 (target_ulong val) | |
129 | { | |
130 | ppc_store_sdr1(env, val); | |
131 | } | |
132 | ||
133 | void helper_store_tbl (target_ulong val) | |
134 | { | |
135 | cpu_ppc_store_tbl(env, val); | |
136 | } | |
137 | ||
138 | void helper_store_tbu (target_ulong val) | |
139 | { | |
140 | cpu_ppc_store_tbu(env, val); | |
141 | } | |
142 | ||
143 | void helper_store_atbl (target_ulong val) | |
144 | { | |
145 | cpu_ppc_store_atbl(env, val); | |
146 | } | |
147 | ||
148 | void helper_store_atbu (target_ulong val) | |
149 | { | |
150 | cpu_ppc_store_atbu(env, val); | |
151 | } | |
152 | ||
153 | void helper_store_601_rtcl (target_ulong val) | |
154 | { | |
155 | cpu_ppc601_store_rtcl(env, val); | |
156 | } | |
157 | ||
158 | void helper_store_601_rtcu (target_ulong val) | |
159 | { | |
160 | cpu_ppc601_store_rtcu(env, val); | |
161 | } | |
162 | ||
163 | target_ulong helper_load_decr (void) | |
164 | { | |
165 | return cpu_ppc_load_decr(env); | |
166 | } | |
167 | ||
168 | void helper_store_decr (target_ulong val) | |
169 | { | |
170 | cpu_ppc_store_decr(env, val); | |
171 | } | |
172 | ||
173 | void helper_store_hid0_601 (target_ulong val) | |
174 | { | |
175 | target_ulong hid0; | |
176 | ||
177 | hid0 = env->spr[SPR_HID0]; | |
178 | if ((val ^ hid0) & 0x00000008) { | |
179 | /* Change current endianness */ | |
180 | env->hflags &= ~(1 << MSR_LE); | |
181 | env->hflags_nmsr &= ~(1 << MSR_LE); | |
182 | env->hflags_nmsr |= (1 << MSR_LE) & (((val >> 3) & 1) << MSR_LE); | |
183 | env->hflags |= env->hflags_nmsr; | |
184 | if (loglevel != 0) { | |
185 | fprintf(logfile, "%s: set endianness to %c => " ADDRX "\n", | |
186 | __func__, val & 0x8 ? 'l' : 'b', env->hflags); | |
187 | } | |
a496775f | 188 | } |
45d827d2 | 189 | env->spr[SPR_HID0] = (uint32_t)val; |
a496775f JM |
190 | } |
191 | ||
45d827d2 AJ |
192 | void helper_store_403_pbr (uint32_t num, target_ulong value) |
193 | { | |
194 | if (likely(env->pb[num] != value)) { | |
195 | env->pb[num] = value; | |
196 | /* Should be optimized */ | |
197 | tlb_flush(env, 1); | |
198 | } | |
199 | } | |
200 | ||
201 | target_ulong helper_load_40x_pit (void) | |
202 | { | |
203 | return load_40x_pit(env); | |
204 | } | |
205 | ||
206 | void helper_store_40x_pit (target_ulong val) | |
207 | { | |
208 | store_40x_pit(env, val); | |
209 | } | |
210 | ||
211 | void helper_store_40x_dbcr0 (target_ulong val) | |
212 | { | |
213 | store_40x_dbcr0(env, val); | |
214 | } | |
215 | ||
216 | void helper_store_40x_sler (target_ulong val) | |
217 | { | |
218 | store_40x_sler(env, val); | |
219 | } | |
220 | ||
221 | void helper_store_booke_tcr (target_ulong val) | |
222 | { | |
223 | store_booke_tcr(env, val); | |
224 | } | |
225 | ||
226 | void helper_store_booke_tsr (target_ulong val) | |
227 | { | |
228 | store_booke_tsr(env, val); | |
229 | } | |
230 | ||
231 | void helper_store_ibatu (uint32_t nr, target_ulong val) | |
232 | { | |
233 | ppc_store_ibatu(env, nr, val); | |
234 | } | |
235 | ||
236 | void helper_store_ibatl (uint32_t nr, target_ulong val) | |
237 | { | |
238 | ppc_store_ibatl(env, nr, val); | |
239 | } | |
240 | ||
241 | void helper_store_dbatu (uint32_t nr, target_ulong val) | |
242 | { | |
243 | ppc_store_dbatu(env, nr, val); | |
244 | } | |
245 | ||
246 | void helper_store_dbatl (uint32_t nr, target_ulong val) | |
247 | { | |
248 | ppc_store_dbatl(env, nr, val); | |
249 | } | |
250 | ||
251 | void helper_store_601_batl (uint32_t nr, target_ulong val) | |
252 | { | |
253 | ppc_store_ibatl_601(env, nr, val); | |
254 | } | |
255 | ||
256 | void helper_store_601_batu (uint32_t nr, target_ulong val) | |
257 | { | |
258 | ppc_store_ibatu_601(env, nr, val); | |
259 | } | |
260 | #endif | |
261 | ||
ff4a62cd AJ |
262 | /*****************************************************************************/ |
263 | /* Memory load and stores */ | |
264 | ||
76db3ba4 | 265 | static always_inline target_ulong addr_add(target_ulong addr, target_long arg) |
ff4a62cd AJ |
266 | { |
267 | #if defined(TARGET_PPC64) | |
76db3ba4 AJ |
268 | if (!msr_sf) |
269 | return (uint32_t)(addr + arg); | |
ff4a62cd AJ |
270 | else |
271 | #endif | |
76db3ba4 | 272 | return addr + arg; |
ff4a62cd AJ |
273 | } |
274 | ||
275 | void helper_lmw (target_ulong addr, uint32_t reg) | |
276 | { | |
76db3ba4 | 277 | for (; reg < 32; reg++) { |
ff4a62cd | 278 | if (msr_le) |
76db3ba4 | 279 | env->gpr[reg] = bswap32(ldl(addr)); |
ff4a62cd | 280 | else |
76db3ba4 AJ |
281 | env->gpr[reg] = ldl(addr); |
282 | addr = addr_add(addr, 4); | |
ff4a62cd AJ |
283 | } |
284 | } | |
285 | ||
286 | void helper_stmw (target_ulong addr, uint32_t reg) | |
287 | { | |
76db3ba4 | 288 | for (; reg < 32; reg++) { |
ff4a62cd | 289 | if (msr_le) |
76db3ba4 | 290 | stl(addr, bswap32((uint32_t)env->gpr[reg])); |
ff4a62cd | 291 | else |
76db3ba4 AJ |
292 | stl(addr, (uint32_t)env->gpr[reg]); |
293 | addr = addr_add(addr, 4); | |
ff4a62cd AJ |
294 | } |
295 | } | |
296 | ||
dfbc799d AJ |
297 | void helper_lsw(target_ulong addr, uint32_t nb, uint32_t reg) |
298 | { | |
299 | int sh; | |
76db3ba4 AJ |
300 | for (; nb > 3; nb -= 4) { |
301 | env->gpr[reg] = ldl(addr); | |
dfbc799d | 302 | reg = (reg + 1) % 32; |
76db3ba4 | 303 | addr = addr_add(addr, 4); |
dfbc799d AJ |
304 | } |
305 | if (unlikely(nb > 0)) { | |
306 | env->gpr[reg] = 0; | |
76db3ba4 AJ |
307 | for (sh = 24; nb > 0; nb--, sh -= 8) { |
308 | env->gpr[reg] |= ldub(addr) << sh; | |
309 | addr = addr_add(addr, 1); | |
dfbc799d AJ |
310 | } |
311 | } | |
312 | } | |
313 | /* PPC32 specification says we must generate an exception if | |
314 | * rA is in the range of registers to be loaded. | |
315 | * In an other hand, IBM says this is valid, but rA won't be loaded. | |
316 | * For now, I'll follow the spec... | |
317 | */ | |
318 | void helper_lswx(target_ulong addr, uint32_t reg, uint32_t ra, uint32_t rb) | |
319 | { | |
320 | if (likely(xer_bc != 0)) { | |
321 | if (unlikely((ra != 0 && reg < ra && (reg + xer_bc) > ra) || | |
322 | (reg < rb && (reg + xer_bc) > rb))) { | |
e06fcd75 AJ |
323 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, |
324 | POWERPC_EXCP_INVAL | | |
325 | POWERPC_EXCP_INVAL_LSWX); | |
dfbc799d AJ |
326 | } else { |
327 | helper_lsw(addr, xer_bc, reg); | |
328 | } | |
329 | } | |
330 | } | |
331 | ||
332 | void helper_stsw(target_ulong addr, uint32_t nb, uint32_t reg) | |
333 | { | |
334 | int sh; | |
76db3ba4 AJ |
335 | for (; nb > 3; nb -= 4) { |
336 | stl(addr, env->gpr[reg]); | |
dfbc799d | 337 | reg = (reg + 1) % 32; |
76db3ba4 | 338 | addr = addr_add(addr, 4); |
dfbc799d AJ |
339 | } |
340 | if (unlikely(nb > 0)) { | |
76db3ba4 AJ |
341 | for (sh = 24; nb > 0; nb--, sh -= 8) |
342 | stb(addr, (env->gpr[reg] >> sh) & 0xFF); | |
343 | addr = addr_add(addr, 1); | |
dfbc799d AJ |
344 | } |
345 | } | |
346 | ||
799a8c8d AJ |
347 | static void do_dcbz(target_ulong addr, int dcache_line_size) |
348 | { | |
76db3ba4 | 349 | addr &= ~(dcache_line_size - 1); |
799a8c8d | 350 | int i; |
799a8c8d | 351 | for (i = 0 ; i < dcache_line_size ; i += 4) { |
dcc532c8 | 352 | stl(addr + i , 0); |
799a8c8d | 353 | } |
76db3ba4 | 354 | if (env->reserve == addr) |
799a8c8d AJ |
355 | env->reserve = (target_ulong)-1ULL; |
356 | } | |
357 | ||
358 | void helper_dcbz(target_ulong addr) | |
359 | { | |
360 | do_dcbz(addr, env->dcache_line_size); | |
361 | } | |
362 | ||
363 | void helper_dcbz_970(target_ulong addr) | |
364 | { | |
365 | if (((env->spr[SPR_970_HID5] >> 7) & 0x3) == 1) | |
366 | do_dcbz(addr, 32); | |
367 | else | |
368 | do_dcbz(addr, env->dcache_line_size); | |
369 | } | |
370 | ||
37d269df AJ |
371 | void helper_icbi(target_ulong addr) |
372 | { | |
373 | uint32_t tmp; | |
374 | ||
76db3ba4 | 375 | addr &= ~(env->dcache_line_size - 1); |
37d269df AJ |
376 | /* Invalidate one cache line : |
377 | * PowerPC specification says this is to be treated like a load | |
378 | * (not a fetch) by the MMU. To be sure it will be so, | |
379 | * do the load "by hand". | |
380 | */ | |
dcc532c8 | 381 | tmp = ldl(addr); |
37d269df AJ |
382 | tb_invalidate_page_range(addr, addr + env->icache_line_size); |
383 | } | |
384 | ||
bdb4b689 AJ |
385 | // XXX: to be tested |
386 | target_ulong helper_lscbx (target_ulong addr, uint32_t reg, uint32_t ra, uint32_t rb) | |
387 | { | |
388 | int i, c, d; | |
bdb4b689 AJ |
389 | d = 24; |
390 | for (i = 0; i < xer_bc; i++) { | |
76db3ba4 AJ |
391 | c = ldub(addr); |
392 | addr = addr_add(addr, 1); | |
bdb4b689 AJ |
393 | /* ra (if not 0) and rb are never modified */ |
394 | if (likely(reg != rb && (ra == 0 || reg != ra))) { | |
395 | env->gpr[reg] = (env->gpr[reg] & ~(0xFF << d)) | (c << d); | |
396 | } | |
397 | if (unlikely(c == xer_cmp)) | |
398 | break; | |
399 | if (likely(d != 0)) { | |
400 | d -= 8; | |
401 | } else { | |
402 | d = 24; | |
403 | reg++; | |
404 | reg = reg & 0x1F; | |
405 | } | |
406 | } | |
407 | return i; | |
408 | } | |
409 | ||
9a64fbe4 | 410 | /*****************************************************************************/ |
fdabc366 | 411 | /* Fixed point operations helpers */ |
d9bce9d9 | 412 | #if defined(TARGET_PPC64) |
d9bce9d9 | 413 | |
74637406 AJ |
414 | /* multiply high word */ |
415 | uint64_t helper_mulhd (uint64_t arg1, uint64_t arg2) | |
fdabc366 | 416 | { |
74637406 | 417 | uint64_t tl, th; |
fdabc366 | 418 | |
74637406 AJ |
419 | muls64(&tl, &th, arg1, arg2); |
420 | return th; | |
d9bce9d9 | 421 | } |
d9bce9d9 | 422 | |
74637406 AJ |
423 | /* multiply high word unsigned */ |
424 | uint64_t helper_mulhdu (uint64_t arg1, uint64_t arg2) | |
fdabc366 | 425 | { |
74637406 | 426 | uint64_t tl, th; |
fdabc366 | 427 | |
74637406 AJ |
428 | mulu64(&tl, &th, arg1, arg2); |
429 | return th; | |
fdabc366 FB |
430 | } |
431 | ||
74637406 | 432 | uint64_t helper_mulldo (uint64_t arg1, uint64_t arg2) |
fdabc366 | 433 | { |
d9bce9d9 JM |
434 | int64_t th; |
435 | uint64_t tl; | |
436 | ||
74637406 | 437 | muls64(&tl, (uint64_t *)&th, arg1, arg2); |
88ad920b | 438 | /* If th != 0 && th != -1, then we had an overflow */ |
6f2d8978 | 439 | if (likely((uint64_t)(th + 1) <= 1)) { |
3d7b417e | 440 | env->xer &= ~(1 << XER_OV); |
fdabc366 | 441 | } else { |
3d7b417e | 442 | env->xer |= (1 << XER_OV) | (1 << XER_SO); |
fdabc366 | 443 | } |
74637406 | 444 | return (int64_t)tl; |
d9bce9d9 JM |
445 | } |
446 | #endif | |
447 | ||
26d67362 | 448 | target_ulong helper_cntlzw (target_ulong t) |
603fccce | 449 | { |
26d67362 | 450 | return clz32(t); |
603fccce JM |
451 | } |
452 | ||
453 | #if defined(TARGET_PPC64) | |
26d67362 | 454 | target_ulong helper_cntlzd (target_ulong t) |
603fccce | 455 | { |
26d67362 | 456 | return clz64(t); |
603fccce JM |
457 | } |
458 | #endif | |
459 | ||
9a64fbe4 | 460 | /* shift right arithmetic helper */ |
26d67362 | 461 | target_ulong helper_sraw (target_ulong value, target_ulong shift) |
9a64fbe4 FB |
462 | { |
463 | int32_t ret; | |
464 | ||
26d67362 AJ |
465 | if (likely(!(shift & 0x20))) { |
466 | if (likely((uint32_t)shift != 0)) { | |
467 | shift &= 0x1f; | |
468 | ret = (int32_t)value >> shift; | |
469 | if (likely(ret >= 0 || (value & ((1 << shift) - 1)) == 0)) { | |
3d7b417e | 470 | env->xer &= ~(1 << XER_CA); |
fdabc366 | 471 | } else { |
3d7b417e | 472 | env->xer |= (1 << XER_CA); |
fdabc366 FB |
473 | } |
474 | } else { | |
26d67362 | 475 | ret = (int32_t)value; |
3d7b417e | 476 | env->xer &= ~(1 << XER_CA); |
fdabc366 FB |
477 | } |
478 | } else { | |
26d67362 AJ |
479 | ret = (int32_t)value >> 31; |
480 | if (ret) { | |
3d7b417e | 481 | env->xer |= (1 << XER_CA); |
26d67362 AJ |
482 | } else { |
483 | env->xer &= ~(1 << XER_CA); | |
76a66253 | 484 | } |
fdabc366 | 485 | } |
26d67362 | 486 | return (target_long)ret; |
9a64fbe4 FB |
487 | } |
488 | ||
d9bce9d9 | 489 | #if defined(TARGET_PPC64) |
26d67362 | 490 | target_ulong helper_srad (target_ulong value, target_ulong shift) |
d9bce9d9 JM |
491 | { |
492 | int64_t ret; | |
493 | ||
26d67362 AJ |
494 | if (likely(!(shift & 0x40))) { |
495 | if (likely((uint64_t)shift != 0)) { | |
496 | shift &= 0x3f; | |
497 | ret = (int64_t)value >> shift; | |
498 | if (likely(ret >= 0 || (value & ((1 << shift) - 1)) == 0)) { | |
3d7b417e | 499 | env->xer &= ~(1 << XER_CA); |
d9bce9d9 | 500 | } else { |
3d7b417e | 501 | env->xer |= (1 << XER_CA); |
d9bce9d9 JM |
502 | } |
503 | } else { | |
26d67362 | 504 | ret = (int64_t)value; |
3d7b417e | 505 | env->xer &= ~(1 << XER_CA); |
d9bce9d9 JM |
506 | } |
507 | } else { | |
26d67362 AJ |
508 | ret = (int64_t)value >> 63; |
509 | if (ret) { | |
3d7b417e | 510 | env->xer |= (1 << XER_CA); |
26d67362 AJ |
511 | } else { |
512 | env->xer &= ~(1 << XER_CA); | |
d9bce9d9 JM |
513 | } |
514 | } | |
26d67362 | 515 | return ret; |
d9bce9d9 JM |
516 | } |
517 | #endif | |
518 | ||
26d67362 | 519 | target_ulong helper_popcntb (target_ulong val) |
d9bce9d9 | 520 | { |
6176a26d AJ |
521 | val = (val & 0x55555555) + ((val >> 1) & 0x55555555); |
522 | val = (val & 0x33333333) + ((val >> 2) & 0x33333333); | |
523 | val = (val & 0x0f0f0f0f) + ((val >> 4) & 0x0f0f0f0f); | |
524 | return val; | |
d9bce9d9 JM |
525 | } |
526 | ||
527 | #if defined(TARGET_PPC64) | |
26d67362 | 528 | target_ulong helper_popcntb_64 (target_ulong val) |
d9bce9d9 | 529 | { |
6176a26d AJ |
530 | val = (val & 0x5555555555555555ULL) + ((val >> 1) & 0x5555555555555555ULL); |
531 | val = (val & 0x3333333333333333ULL) + ((val >> 2) & 0x3333333333333333ULL); | |
532 | val = (val & 0x0f0f0f0f0f0f0f0fULL) + ((val >> 4) & 0x0f0f0f0f0f0f0f0fULL); | |
533 | return val; | |
d9bce9d9 JM |
534 | } |
535 | #endif | |
536 | ||
fdabc366 | 537 | /*****************************************************************************/ |
9a64fbe4 | 538 | /* Floating point operations helpers */ |
a0d7d5a7 AJ |
539 | uint64_t helper_float32_to_float64(uint32_t arg) |
540 | { | |
541 | CPU_FloatU f; | |
542 | CPU_DoubleU d; | |
543 | f.l = arg; | |
544 | d.d = float32_to_float64(f.f, &env->fp_status); | |
545 | return d.ll; | |
546 | } | |
547 | ||
548 | uint32_t helper_float64_to_float32(uint64_t arg) | |
549 | { | |
550 | CPU_FloatU f; | |
551 | CPU_DoubleU d; | |
552 | d.ll = arg; | |
553 | f.f = float64_to_float32(d.d, &env->fp_status); | |
554 | return f.l; | |
555 | } | |
556 | ||
0ca9d380 | 557 | static always_inline int fpisneg (float64 d) |
7c58044c | 558 | { |
0ca9d380 | 559 | CPU_DoubleU u; |
7c58044c | 560 | |
0ca9d380 | 561 | u.d = d; |
7c58044c | 562 | |
0ca9d380 | 563 | return u.ll >> 63 != 0; |
7c58044c JM |
564 | } |
565 | ||
0ca9d380 | 566 | static always_inline int isden (float64 d) |
7c58044c | 567 | { |
0ca9d380 | 568 | CPU_DoubleU u; |
7c58044c | 569 | |
0ca9d380 | 570 | u.d = d; |
7c58044c | 571 | |
0ca9d380 | 572 | return ((u.ll >> 52) & 0x7FF) == 0; |
7c58044c JM |
573 | } |
574 | ||
0ca9d380 | 575 | static always_inline int iszero (float64 d) |
7c58044c | 576 | { |
0ca9d380 | 577 | CPU_DoubleU u; |
7c58044c | 578 | |
0ca9d380 | 579 | u.d = d; |
7c58044c | 580 | |
0ca9d380 | 581 | return (u.ll & ~0x8000000000000000ULL) == 0; |
7c58044c JM |
582 | } |
583 | ||
0ca9d380 | 584 | static always_inline int isinfinity (float64 d) |
7c58044c | 585 | { |
0ca9d380 | 586 | CPU_DoubleU u; |
7c58044c | 587 | |
0ca9d380 | 588 | u.d = d; |
7c58044c | 589 | |
0ca9d380 AJ |
590 | return ((u.ll >> 52) & 0x7FF) == 0x7FF && |
591 | (u.ll & 0x000FFFFFFFFFFFFFULL) == 0; | |
7c58044c JM |
592 | } |
593 | ||
80621676 AJ |
594 | #ifdef CONFIG_SOFTFLOAT |
595 | static always_inline int isfinite (float64 d) | |
596 | { | |
597 | CPU_DoubleU u; | |
598 | ||
599 | u.d = d; | |
600 | ||
601 | return (((u.ll >> 52) & 0x7FF) != 0x7FF); | |
602 | } | |
603 | ||
604 | static always_inline int isnormal (float64 d) | |
605 | { | |
606 | CPU_DoubleU u; | |
607 | ||
608 | u.d = d; | |
609 | ||
610 | uint32_t exp = (u.ll >> 52) & 0x7FF; | |
611 | return ((0 < exp) && (exp < 0x7FF)); | |
612 | } | |
613 | #endif | |
614 | ||
af12906f | 615 | uint32_t helper_compute_fprf (uint64_t arg, uint32_t set_fprf) |
7c58044c | 616 | { |
af12906f | 617 | CPU_DoubleU farg; |
7c58044c | 618 | int isneg; |
af12906f AJ |
619 | int ret; |
620 | farg.ll = arg; | |
621 | isneg = fpisneg(farg.d); | |
622 | if (unlikely(float64_is_nan(farg.d))) { | |
623 | if (float64_is_signaling_nan(farg.d)) { | |
7c58044c | 624 | /* Signaling NaN: flags are undefined */ |
af12906f | 625 | ret = 0x00; |
7c58044c JM |
626 | } else { |
627 | /* Quiet NaN */ | |
af12906f | 628 | ret = 0x11; |
7c58044c | 629 | } |
af12906f | 630 | } else if (unlikely(isinfinity(farg.d))) { |
7c58044c JM |
631 | /* +/- infinity */ |
632 | if (isneg) | |
af12906f | 633 | ret = 0x09; |
7c58044c | 634 | else |
af12906f | 635 | ret = 0x05; |
7c58044c | 636 | } else { |
af12906f | 637 | if (iszero(farg.d)) { |
7c58044c JM |
638 | /* +/- zero */ |
639 | if (isneg) | |
af12906f | 640 | ret = 0x12; |
7c58044c | 641 | else |
af12906f | 642 | ret = 0x02; |
7c58044c | 643 | } else { |
af12906f | 644 | if (isden(farg.d)) { |
7c58044c | 645 | /* Denormalized numbers */ |
af12906f | 646 | ret = 0x10; |
7c58044c JM |
647 | } else { |
648 | /* Normalized numbers */ | |
af12906f | 649 | ret = 0x00; |
7c58044c JM |
650 | } |
651 | if (isneg) { | |
af12906f | 652 | ret |= 0x08; |
7c58044c | 653 | } else { |
af12906f | 654 | ret |= 0x04; |
7c58044c JM |
655 | } |
656 | } | |
657 | } | |
658 | if (set_fprf) { | |
659 | /* We update FPSCR_FPRF */ | |
660 | env->fpscr &= ~(0x1F << FPSCR_FPRF); | |
af12906f | 661 | env->fpscr |= ret << FPSCR_FPRF; |
7c58044c JM |
662 | } |
663 | /* We just need fpcc to update Rc1 */ | |
af12906f | 664 | return ret & 0xF; |
7c58044c JM |
665 | } |
666 | ||
667 | /* Floating-point invalid operations exception */ | |
af12906f | 668 | static always_inline uint64_t fload_invalid_op_excp (int op) |
7c58044c | 669 | { |
af12906f | 670 | uint64_t ret = 0; |
7c58044c JM |
671 | int ve; |
672 | ||
673 | ve = fpscr_ve; | |
674 | if (op & POWERPC_EXCP_FP_VXSNAN) { | |
675 | /* Operation on signaling NaN */ | |
676 | env->fpscr |= 1 << FPSCR_VXSNAN; | |
677 | } | |
678 | if (op & POWERPC_EXCP_FP_VXSOFT) { | |
679 | /* Software-defined condition */ | |
680 | env->fpscr |= 1 << FPSCR_VXSOFT; | |
681 | } | |
682 | switch (op & ~(POWERPC_EXCP_FP_VXSOFT | POWERPC_EXCP_FP_VXSNAN)) { | |
683 | case POWERPC_EXCP_FP_VXISI: | |
684 | /* Magnitude subtraction of infinities */ | |
685 | env->fpscr |= 1 << FPSCR_VXISI; | |
686 | goto update_arith; | |
687 | case POWERPC_EXCP_FP_VXIDI: | |
688 | /* Division of infinity by infinity */ | |
689 | env->fpscr |= 1 << FPSCR_VXIDI; | |
690 | goto update_arith; | |
691 | case POWERPC_EXCP_FP_VXZDZ: | |
692 | /* Division of zero by zero */ | |
693 | env->fpscr |= 1 << FPSCR_VXZDZ; | |
694 | goto update_arith; | |
695 | case POWERPC_EXCP_FP_VXIMZ: | |
696 | /* Multiplication of zero by infinity */ | |
697 | env->fpscr |= 1 << FPSCR_VXIMZ; | |
698 | goto update_arith; | |
699 | case POWERPC_EXCP_FP_VXVC: | |
700 | /* Ordered comparison of NaN */ | |
701 | env->fpscr |= 1 << FPSCR_VXVC; | |
702 | env->fpscr &= ~(0xF << FPSCR_FPCC); | |
703 | env->fpscr |= 0x11 << FPSCR_FPCC; | |
704 | /* We must update the target FPR before raising the exception */ | |
705 | if (ve != 0) { | |
706 | env->exception_index = POWERPC_EXCP_PROGRAM; | |
707 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_VXVC; | |
708 | /* Update the floating-point enabled exception summary */ | |
709 | env->fpscr |= 1 << FPSCR_FEX; | |
710 | /* Exception is differed */ | |
711 | ve = 0; | |
712 | } | |
713 | break; | |
714 | case POWERPC_EXCP_FP_VXSQRT: | |
715 | /* Square root of a negative number */ | |
716 | env->fpscr |= 1 << FPSCR_VXSQRT; | |
717 | update_arith: | |
718 | env->fpscr &= ~((1 << FPSCR_FR) | (1 << FPSCR_FI)); | |
719 | if (ve == 0) { | |
720 | /* Set the result to quiet NaN */ | |
af12906f | 721 | ret = UINT64_MAX; |
7c58044c JM |
722 | env->fpscr &= ~(0xF << FPSCR_FPCC); |
723 | env->fpscr |= 0x11 << FPSCR_FPCC; | |
724 | } | |
725 | break; | |
726 | case POWERPC_EXCP_FP_VXCVI: | |
727 | /* Invalid conversion */ | |
728 | env->fpscr |= 1 << FPSCR_VXCVI; | |
729 | env->fpscr &= ~((1 << FPSCR_FR) | (1 << FPSCR_FI)); | |
730 | if (ve == 0) { | |
731 | /* Set the result to quiet NaN */ | |
af12906f | 732 | ret = UINT64_MAX; |
7c58044c JM |
733 | env->fpscr &= ~(0xF << FPSCR_FPCC); |
734 | env->fpscr |= 0x11 << FPSCR_FPCC; | |
735 | } | |
736 | break; | |
737 | } | |
738 | /* Update the floating-point invalid operation summary */ | |
739 | env->fpscr |= 1 << FPSCR_VX; | |
740 | /* Update the floating-point exception summary */ | |
741 | env->fpscr |= 1 << FPSCR_FX; | |
742 | if (ve != 0) { | |
743 | /* Update the floating-point enabled exception summary */ | |
744 | env->fpscr |= 1 << FPSCR_FEX; | |
745 | if (msr_fe0 != 0 || msr_fe1 != 0) | |
e06fcd75 | 746 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, POWERPC_EXCP_FP | op); |
7c58044c | 747 | } |
af12906f | 748 | return ret; |
7c58044c JM |
749 | } |
750 | ||
af12906f | 751 | static always_inline uint64_t float_zero_divide_excp (uint64_t arg1, uint64_t arg2) |
7c58044c | 752 | { |
7c58044c JM |
753 | env->fpscr |= 1 << FPSCR_ZX; |
754 | env->fpscr &= ~((1 << FPSCR_FR) | (1 << FPSCR_FI)); | |
755 | /* Update the floating-point exception summary */ | |
756 | env->fpscr |= 1 << FPSCR_FX; | |
757 | if (fpscr_ze != 0) { | |
758 | /* Update the floating-point enabled exception summary */ | |
759 | env->fpscr |= 1 << FPSCR_FEX; | |
760 | if (msr_fe0 != 0 || msr_fe1 != 0) { | |
e06fcd75 AJ |
761 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, |
762 | POWERPC_EXCP_FP | POWERPC_EXCP_FP_ZX); | |
7c58044c JM |
763 | } |
764 | } else { | |
765 | /* Set the result to infinity */ | |
af12906f AJ |
766 | arg1 = ((arg1 ^ arg2) & 0x8000000000000000ULL); |
767 | arg1 |= 0x7FFULL << 52; | |
7c58044c | 768 | } |
af12906f | 769 | return arg1; |
7c58044c JM |
770 | } |
771 | ||
772 | static always_inline void float_overflow_excp (void) | |
773 | { | |
774 | env->fpscr |= 1 << FPSCR_OX; | |
775 | /* Update the floating-point exception summary */ | |
776 | env->fpscr |= 1 << FPSCR_FX; | |
777 | if (fpscr_oe != 0) { | |
778 | /* XXX: should adjust the result */ | |
779 | /* Update the floating-point enabled exception summary */ | |
780 | env->fpscr |= 1 << FPSCR_FEX; | |
781 | /* We must update the target FPR before raising the exception */ | |
782 | env->exception_index = POWERPC_EXCP_PROGRAM; | |
783 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_OX; | |
784 | } else { | |
785 | env->fpscr |= 1 << FPSCR_XX; | |
786 | env->fpscr |= 1 << FPSCR_FI; | |
787 | } | |
788 | } | |
789 | ||
790 | static always_inline void float_underflow_excp (void) | |
791 | { | |
792 | env->fpscr |= 1 << FPSCR_UX; | |
793 | /* Update the floating-point exception summary */ | |
794 | env->fpscr |= 1 << FPSCR_FX; | |
795 | if (fpscr_ue != 0) { | |
796 | /* XXX: should adjust the result */ | |
797 | /* Update the floating-point enabled exception summary */ | |
798 | env->fpscr |= 1 << FPSCR_FEX; | |
799 | /* We must update the target FPR before raising the exception */ | |
800 | env->exception_index = POWERPC_EXCP_PROGRAM; | |
801 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_UX; | |
802 | } | |
803 | } | |
804 | ||
805 | static always_inline void float_inexact_excp (void) | |
806 | { | |
807 | env->fpscr |= 1 << FPSCR_XX; | |
808 | /* Update the floating-point exception summary */ | |
809 | env->fpscr |= 1 << FPSCR_FX; | |
810 | if (fpscr_xe != 0) { | |
811 | /* Update the floating-point enabled exception summary */ | |
812 | env->fpscr |= 1 << FPSCR_FEX; | |
813 | /* We must update the target FPR before raising the exception */ | |
814 | env->exception_index = POWERPC_EXCP_PROGRAM; | |
815 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_XX; | |
816 | } | |
817 | } | |
818 | ||
819 | static always_inline void fpscr_set_rounding_mode (void) | |
820 | { | |
821 | int rnd_type; | |
822 | ||
823 | /* Set rounding mode */ | |
824 | switch (fpscr_rn) { | |
825 | case 0: | |
826 | /* Best approximation (round to nearest) */ | |
827 | rnd_type = float_round_nearest_even; | |
828 | break; | |
829 | case 1: | |
830 | /* Smaller magnitude (round toward zero) */ | |
831 | rnd_type = float_round_to_zero; | |
832 | break; | |
833 | case 2: | |
834 | /* Round toward +infinite */ | |
835 | rnd_type = float_round_up; | |
836 | break; | |
837 | default: | |
838 | case 3: | |
839 | /* Round toward -infinite */ | |
840 | rnd_type = float_round_down; | |
841 | break; | |
842 | } | |
843 | set_float_rounding_mode(rnd_type, &env->fp_status); | |
844 | } | |
845 | ||
6e35d524 AJ |
846 | void helper_fpscr_clrbit (uint32_t bit) |
847 | { | |
848 | int prev; | |
849 | ||
850 | prev = (env->fpscr >> bit) & 1; | |
851 | env->fpscr &= ~(1 << bit); | |
852 | if (prev == 1) { | |
853 | switch (bit) { | |
854 | case FPSCR_RN1: | |
855 | case FPSCR_RN: | |
856 | fpscr_set_rounding_mode(); | |
857 | break; | |
858 | default: | |
859 | break; | |
860 | } | |
861 | } | |
862 | } | |
863 | ||
af12906f | 864 | void helper_fpscr_setbit (uint32_t bit) |
7c58044c JM |
865 | { |
866 | int prev; | |
867 | ||
868 | prev = (env->fpscr >> bit) & 1; | |
869 | env->fpscr |= 1 << bit; | |
870 | if (prev == 0) { | |
871 | switch (bit) { | |
872 | case FPSCR_VX: | |
873 | env->fpscr |= 1 << FPSCR_FX; | |
874 | if (fpscr_ve) | |
875 | goto raise_ve; | |
876 | case FPSCR_OX: | |
877 | env->fpscr |= 1 << FPSCR_FX; | |
878 | if (fpscr_oe) | |
879 | goto raise_oe; | |
880 | break; | |
881 | case FPSCR_UX: | |
882 | env->fpscr |= 1 << FPSCR_FX; | |
883 | if (fpscr_ue) | |
884 | goto raise_ue; | |
885 | break; | |
886 | case FPSCR_ZX: | |
887 | env->fpscr |= 1 << FPSCR_FX; | |
888 | if (fpscr_ze) | |
889 | goto raise_ze; | |
890 | break; | |
891 | case FPSCR_XX: | |
892 | env->fpscr |= 1 << FPSCR_FX; | |
893 | if (fpscr_xe) | |
894 | goto raise_xe; | |
895 | break; | |
896 | case FPSCR_VXSNAN: | |
897 | case FPSCR_VXISI: | |
898 | case FPSCR_VXIDI: | |
899 | case FPSCR_VXZDZ: | |
900 | case FPSCR_VXIMZ: | |
901 | case FPSCR_VXVC: | |
902 | case FPSCR_VXSOFT: | |
903 | case FPSCR_VXSQRT: | |
904 | case FPSCR_VXCVI: | |
905 | env->fpscr |= 1 << FPSCR_VX; | |
906 | env->fpscr |= 1 << FPSCR_FX; | |
907 | if (fpscr_ve != 0) | |
908 | goto raise_ve; | |
909 | break; | |
910 | case FPSCR_VE: | |
911 | if (fpscr_vx != 0) { | |
912 | raise_ve: | |
913 | env->error_code = POWERPC_EXCP_FP; | |
914 | if (fpscr_vxsnan) | |
915 | env->error_code |= POWERPC_EXCP_FP_VXSNAN; | |
916 | if (fpscr_vxisi) | |
917 | env->error_code |= POWERPC_EXCP_FP_VXISI; | |
918 | if (fpscr_vxidi) | |
919 | env->error_code |= POWERPC_EXCP_FP_VXIDI; | |
920 | if (fpscr_vxzdz) | |
921 | env->error_code |= POWERPC_EXCP_FP_VXZDZ; | |
922 | if (fpscr_vximz) | |
923 | env->error_code |= POWERPC_EXCP_FP_VXIMZ; | |
924 | if (fpscr_vxvc) | |
925 | env->error_code |= POWERPC_EXCP_FP_VXVC; | |
926 | if (fpscr_vxsoft) | |
927 | env->error_code |= POWERPC_EXCP_FP_VXSOFT; | |
928 | if (fpscr_vxsqrt) | |
929 | env->error_code |= POWERPC_EXCP_FP_VXSQRT; | |
930 | if (fpscr_vxcvi) | |
931 | env->error_code |= POWERPC_EXCP_FP_VXCVI; | |
932 | goto raise_excp; | |
933 | } | |
934 | break; | |
935 | case FPSCR_OE: | |
936 | if (fpscr_ox != 0) { | |
937 | raise_oe: | |
938 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_OX; | |
939 | goto raise_excp; | |
940 | } | |
941 | break; | |
942 | case FPSCR_UE: | |
943 | if (fpscr_ux != 0) { | |
944 | raise_ue: | |
945 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_UX; | |
946 | goto raise_excp; | |
947 | } | |
948 | break; | |
949 | case FPSCR_ZE: | |
950 | if (fpscr_zx != 0) { | |
951 | raise_ze: | |
952 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_ZX; | |
953 | goto raise_excp; | |
954 | } | |
955 | break; | |
956 | case FPSCR_XE: | |
957 | if (fpscr_xx != 0) { | |
958 | raise_xe: | |
959 | env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_XX; | |
960 | goto raise_excp; | |
961 | } | |
962 | break; | |
963 | case FPSCR_RN1: | |
964 | case FPSCR_RN: | |
965 | fpscr_set_rounding_mode(); | |
966 | break; | |
967 | default: | |
968 | break; | |
969 | raise_excp: | |
970 | /* Update the floating-point enabled exception summary */ | |
971 | env->fpscr |= 1 << FPSCR_FEX; | |
972 | /* We have to update Rc1 before raising the exception */ | |
973 | env->exception_index = POWERPC_EXCP_PROGRAM; | |
974 | break; | |
975 | } | |
976 | } | |
977 | } | |
978 | ||
af12906f | 979 | void helper_store_fpscr (uint64_t arg, uint32_t mask) |
7c58044c JM |
980 | { |
981 | /* | |
982 | * We use only the 32 LSB of the incoming fpr | |
983 | */ | |
7c58044c JM |
984 | uint32_t prev, new; |
985 | int i; | |
986 | ||
7c58044c | 987 | prev = env->fpscr; |
af12906f | 988 | new = (uint32_t)arg; |
27ee5df0 AJ |
989 | new &= ~0x60000000; |
990 | new |= prev & 0x60000000; | |
991 | for (i = 0; i < 8; i++) { | |
7c58044c JM |
992 | if (mask & (1 << i)) { |
993 | env->fpscr &= ~(0xF << (4 * i)); | |
994 | env->fpscr |= new & (0xF << (4 * i)); | |
995 | } | |
996 | } | |
997 | /* Update VX and FEX */ | |
998 | if (fpscr_ix != 0) | |
999 | env->fpscr |= 1 << FPSCR_VX; | |
5567025f AJ |
1000 | else |
1001 | env->fpscr &= ~(1 << FPSCR_VX); | |
7c58044c JM |
1002 | if ((fpscr_ex & fpscr_eex) != 0) { |
1003 | env->fpscr |= 1 << FPSCR_FEX; | |
1004 | env->exception_index = POWERPC_EXCP_PROGRAM; | |
1005 | /* XXX: we should compute it properly */ | |
1006 | env->error_code = POWERPC_EXCP_FP; | |
1007 | } | |
5567025f AJ |
1008 | else |
1009 | env->fpscr &= ~(1 << FPSCR_FEX); | |
7c58044c JM |
1010 | fpscr_set_rounding_mode(); |
1011 | } | |
7c58044c | 1012 | |
af12906f | 1013 | void helper_float_check_status (void) |
7c58044c | 1014 | { |
af12906f | 1015 | #ifdef CONFIG_SOFTFLOAT |
7c58044c JM |
1016 | if (env->exception_index == POWERPC_EXCP_PROGRAM && |
1017 | (env->error_code & POWERPC_EXCP_FP)) { | |
1018 | /* Differred floating-point exception after target FPR update */ | |
1019 | if (msr_fe0 != 0 || msr_fe1 != 0) | |
e06fcd75 | 1020 | helper_raise_exception_err(env->exception_index, env->error_code); |
be94c952 AJ |
1021 | } else { |
1022 | int status = get_float_exception_flags(&env->fp_status); | |
1023 | if (status & float_flag_overflow) { | |
1024 | float_overflow_excp(); | |
1025 | } else if (status & float_flag_underflow) { | |
1026 | float_underflow_excp(); | |
1027 | } else if (status & float_flag_inexact) { | |
1028 | float_inexact_excp(); | |
1029 | } | |
7c58044c | 1030 | } |
af12906f AJ |
1031 | #else |
1032 | if (env->exception_index == POWERPC_EXCP_PROGRAM && | |
1033 | (env->error_code & POWERPC_EXCP_FP)) { | |
1034 | /* Differred floating-point exception after target FPR update */ | |
1035 | if (msr_fe0 != 0 || msr_fe1 != 0) | |
e06fcd75 | 1036 | helper_raise_exception_err(env->exception_index, env->error_code); |
af12906f | 1037 | } |
af12906f AJ |
1038 | #endif |
1039 | } | |
1040 | ||
1041 | #ifdef CONFIG_SOFTFLOAT | |
1042 | void helper_reset_fpstatus (void) | |
1043 | { | |
be94c952 | 1044 | set_float_exception_flags(0, &env->fp_status); |
7c58044c JM |
1045 | } |
1046 | #endif | |
1047 | ||
af12906f AJ |
1048 | /* fadd - fadd. */ |
1049 | uint64_t helper_fadd (uint64_t arg1, uint64_t arg2) | |
7c58044c | 1050 | { |
af12906f AJ |
1051 | CPU_DoubleU farg1, farg2; |
1052 | ||
1053 | farg1.ll = arg1; | |
1054 | farg2.ll = arg2; | |
1055 | #if USE_PRECISE_EMULATION | |
1056 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1057 | float64_is_signaling_nan(farg2.d))) { | |
7c58044c | 1058 | /* sNaN addition */ |
af12906f AJ |
1059 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1060 | } else if (likely(isfinite(farg1.d) || isfinite(farg2.d) || | |
1061 | fpisneg(farg1.d) == fpisneg(farg2.d))) { | |
1062 | farg1.d = float64_add(farg1.d, farg2.d, &env->fp_status); | |
7c58044c JM |
1063 | } else { |
1064 | /* Magnitude subtraction of infinities */ | |
cf1cf21e | 1065 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXISI); |
7c58044c | 1066 | } |
af12906f AJ |
1067 | #else |
1068 | farg1.d = float64_add(farg1.d, farg2.d, &env->fp_status); | |
1069 | #endif | |
1070 | return farg1.ll; | |
7c58044c JM |
1071 | } |
1072 | ||
af12906f AJ |
1073 | /* fsub - fsub. */ |
1074 | uint64_t helper_fsub (uint64_t arg1, uint64_t arg2) | |
1075 | { | |
1076 | CPU_DoubleU farg1, farg2; | |
1077 | ||
1078 | farg1.ll = arg1; | |
1079 | farg2.ll = arg2; | |
1080 | #if USE_PRECISE_EMULATION | |
7c58044c | 1081 | { |
af12906f AJ |
1082 | if (unlikely(float64_is_signaling_nan(farg1.d) || |
1083 | float64_is_signaling_nan(farg2.d))) { | |
7c58044c | 1084 | /* sNaN subtraction */ |
af12906f AJ |
1085 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1086 | } else if (likely(isfinite(farg1.d) || isfinite(farg2.d) || | |
1087 | fpisneg(farg1.d) != fpisneg(farg2.d))) { | |
1088 | farg1.d = float64_sub(farg1.d, farg2.d, &env->fp_status); | |
7c58044c JM |
1089 | } else { |
1090 | /* Magnitude subtraction of infinities */ | |
af12906f | 1091 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXISI); |
7c58044c JM |
1092 | } |
1093 | } | |
af12906f AJ |
1094 | #else |
1095 | farg1.d = float64_sub(farg1.d, farg2.d, &env->fp_status); | |
1096 | #endif | |
1097 | return farg1.ll; | |
1098 | } | |
7c58044c | 1099 | |
af12906f AJ |
1100 | /* fmul - fmul. */ |
1101 | uint64_t helper_fmul (uint64_t arg1, uint64_t arg2) | |
7c58044c | 1102 | { |
af12906f AJ |
1103 | CPU_DoubleU farg1, farg2; |
1104 | ||
1105 | farg1.ll = arg1; | |
1106 | farg2.ll = arg2; | |
1107 | #if USE_PRECISE_EMULATION | |
1108 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1109 | float64_is_signaling_nan(farg2.d))) { | |
7c58044c | 1110 | /* sNaN multiplication */ |
af12906f AJ |
1111 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1112 | } else if (unlikely((isinfinity(farg1.d) && iszero(farg2.d)) || | |
1113 | (iszero(farg1.d) && isinfinity(farg2.d)))) { | |
7c58044c | 1114 | /* Multiplication of zero by infinity */ |
af12906f | 1115 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXIMZ); |
7c58044c | 1116 | } else { |
af12906f | 1117 | farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status); |
7c58044c | 1118 | } |
af12906f AJ |
1119 | #else |
1120 | farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status); | |
1121 | #endif | |
1122 | return farg1.ll; | |
1123 | } | |
7c58044c | 1124 | |
af12906f AJ |
1125 | /* fdiv - fdiv. */ |
1126 | uint64_t helper_fdiv (uint64_t arg1, uint64_t arg2) | |
7c58044c | 1127 | { |
af12906f AJ |
1128 | CPU_DoubleU farg1, farg2; |
1129 | ||
1130 | farg1.ll = arg1; | |
1131 | farg2.ll = arg2; | |
1132 | #if USE_PRECISE_EMULATION | |
1133 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1134 | float64_is_signaling_nan(farg2.d))) { | |
7c58044c | 1135 | /* sNaN division */ |
af12906f AJ |
1136 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1137 | } else if (unlikely(isinfinity(farg1.d) && isinfinity(farg2.d))) { | |
7c58044c | 1138 | /* Division of infinity by infinity */ |
af12906f AJ |
1139 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXIDI); |
1140 | } else if (unlikely(iszero(farg2.d))) { | |
1141 | if (iszero(farg1.d)) { | |
7c58044c | 1142 | /* Division of zero by zero */ |
cf1cf21e | 1143 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXZDZ); |
7c58044c JM |
1144 | } else { |
1145 | /* Division by zero */ | |
af12906f | 1146 | farg1.ll = float_zero_divide_excp(farg1.d, farg2.d); |
7c58044c JM |
1147 | } |
1148 | } else { | |
af12906f | 1149 | farg1.d = float64_div(farg1.d, farg2.d, &env->fp_status); |
7c58044c | 1150 | } |
af12906f AJ |
1151 | #else |
1152 | farg1.d = float64_div(farg1.d, farg2.d, &env->fp_status); | |
1153 | #endif | |
1154 | return farg1.ll; | |
7c58044c | 1155 | } |
7c58044c | 1156 | |
af12906f AJ |
1157 | /* fabs */ |
1158 | uint64_t helper_fabs (uint64_t arg) | |
9a64fbe4 | 1159 | { |
af12906f | 1160 | CPU_DoubleU farg; |
9a64fbe4 | 1161 | |
af12906f AJ |
1162 | farg.ll = arg; |
1163 | farg.d = float64_abs(farg.d); | |
1164 | return farg.ll; | |
1165 | } | |
1166 | ||
1167 | /* fnabs */ | |
1168 | uint64_t helper_fnabs (uint64_t arg) | |
1169 | { | |
1170 | CPU_DoubleU farg; | |
1171 | ||
1172 | farg.ll = arg; | |
1173 | farg.d = float64_abs(farg.d); | |
1174 | farg.d = float64_chs(farg.d); | |
1175 | return farg.ll; | |
1176 | } | |
1177 | ||
1178 | /* fneg */ | |
1179 | uint64_t helper_fneg (uint64_t arg) | |
1180 | { | |
1181 | CPU_DoubleU farg; | |
1182 | ||
1183 | farg.ll = arg; | |
1184 | farg.d = float64_chs(farg.d); | |
1185 | return farg.ll; | |
1186 | } | |
1187 | ||
1188 | /* fctiw - fctiw. */ | |
1189 | uint64_t helper_fctiw (uint64_t arg) | |
1190 | { | |
1191 | CPU_DoubleU farg; | |
1192 | farg.ll = arg; | |
1193 | ||
1194 | if (unlikely(float64_is_signaling_nan(farg.d))) { | |
7c58044c | 1195 | /* sNaN conversion */ |
af12906f AJ |
1196 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN | POWERPC_EXCP_FP_VXCVI); |
1197 | } else if (unlikely(float64_is_nan(farg.d) || isinfinity(farg.d))) { | |
7c58044c | 1198 | /* qNan / infinity conversion */ |
af12906f | 1199 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI); |
7c58044c | 1200 | } else { |
af12906f | 1201 | farg.ll = float64_to_int32(farg.d, &env->fp_status); |
1cdb9c3d | 1202 | #if USE_PRECISE_EMULATION |
7c58044c JM |
1203 | /* XXX: higher bits are not supposed to be significant. |
1204 | * to make tests easier, return the same as a real PowerPC 750 | |
1205 | */ | |
af12906f | 1206 | farg.ll |= 0xFFF80000ULL << 32; |
e864cabd | 1207 | #endif |
7c58044c | 1208 | } |
af12906f | 1209 | return farg.ll; |
9a64fbe4 FB |
1210 | } |
1211 | ||
af12906f AJ |
1212 | /* fctiwz - fctiwz. */ |
1213 | uint64_t helper_fctiwz (uint64_t arg) | |
9a64fbe4 | 1214 | { |
af12906f AJ |
1215 | CPU_DoubleU farg; |
1216 | farg.ll = arg; | |
4ecc3190 | 1217 | |
af12906f | 1218 | if (unlikely(float64_is_signaling_nan(farg.d))) { |
7c58044c | 1219 | /* sNaN conversion */ |
af12906f AJ |
1220 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN | POWERPC_EXCP_FP_VXCVI); |
1221 | } else if (unlikely(float64_is_nan(farg.d) || isinfinity(farg.d))) { | |
7c58044c | 1222 | /* qNan / infinity conversion */ |
af12906f | 1223 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI); |
7c58044c | 1224 | } else { |
af12906f | 1225 | farg.ll = float64_to_int32_round_to_zero(farg.d, &env->fp_status); |
1cdb9c3d | 1226 | #if USE_PRECISE_EMULATION |
7c58044c JM |
1227 | /* XXX: higher bits are not supposed to be significant. |
1228 | * to make tests easier, return the same as a real PowerPC 750 | |
1229 | */ | |
af12906f | 1230 | farg.ll |= 0xFFF80000ULL << 32; |
e864cabd | 1231 | #endif |
7c58044c | 1232 | } |
af12906f | 1233 | return farg.ll; |
9a64fbe4 FB |
1234 | } |
1235 | ||
426613db | 1236 | #if defined(TARGET_PPC64) |
af12906f AJ |
1237 | /* fcfid - fcfid. */ |
1238 | uint64_t helper_fcfid (uint64_t arg) | |
426613db | 1239 | { |
af12906f AJ |
1240 | CPU_DoubleU farg; |
1241 | farg.d = int64_to_float64(arg, &env->fp_status); | |
1242 | return farg.ll; | |
426613db JM |
1243 | } |
1244 | ||
af12906f AJ |
1245 | /* fctid - fctid. */ |
1246 | uint64_t helper_fctid (uint64_t arg) | |
426613db | 1247 | { |
af12906f AJ |
1248 | CPU_DoubleU farg; |
1249 | farg.ll = arg; | |
426613db | 1250 | |
af12906f | 1251 | if (unlikely(float64_is_signaling_nan(farg.d))) { |
7c58044c | 1252 | /* sNaN conversion */ |
af12906f AJ |
1253 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN | POWERPC_EXCP_FP_VXCVI); |
1254 | } else if (unlikely(float64_is_nan(farg.d) || isinfinity(farg.d))) { | |
7c58044c | 1255 | /* qNan / infinity conversion */ |
af12906f | 1256 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI); |
7c58044c | 1257 | } else { |
af12906f | 1258 | farg.ll = float64_to_int64(farg.d, &env->fp_status); |
7c58044c | 1259 | } |
af12906f | 1260 | return farg.ll; |
426613db JM |
1261 | } |
1262 | ||
af12906f AJ |
1263 | /* fctidz - fctidz. */ |
1264 | uint64_t helper_fctidz (uint64_t arg) | |
426613db | 1265 | { |
af12906f AJ |
1266 | CPU_DoubleU farg; |
1267 | farg.ll = arg; | |
426613db | 1268 | |
af12906f | 1269 | if (unlikely(float64_is_signaling_nan(farg.d))) { |
7c58044c | 1270 | /* sNaN conversion */ |
af12906f AJ |
1271 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN | POWERPC_EXCP_FP_VXCVI); |
1272 | } else if (unlikely(float64_is_nan(farg.d) || isinfinity(farg.d))) { | |
7c58044c | 1273 | /* qNan / infinity conversion */ |
af12906f | 1274 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI); |
7c58044c | 1275 | } else { |
af12906f | 1276 | farg.ll = float64_to_int64_round_to_zero(farg.d, &env->fp_status); |
7c58044c | 1277 | } |
af12906f | 1278 | return farg.ll; |
426613db JM |
1279 | } |
1280 | ||
1281 | #endif | |
1282 | ||
af12906f | 1283 | static always_inline uint64_t do_fri (uint64_t arg, int rounding_mode) |
d7e4b87e | 1284 | { |
af12906f AJ |
1285 | CPU_DoubleU farg; |
1286 | farg.ll = arg; | |
1287 | ||
1288 | if (unlikely(float64_is_signaling_nan(farg.d))) { | |
7c58044c | 1289 | /* sNaN round */ |
af12906f AJ |
1290 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN | POWERPC_EXCP_FP_VXCVI); |
1291 | } else if (unlikely(float64_is_nan(farg.d) || isinfinity(farg.d))) { | |
7c58044c | 1292 | /* qNan / infinity round */ |
af12906f | 1293 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXCVI); |
7c58044c JM |
1294 | } else { |
1295 | set_float_rounding_mode(rounding_mode, &env->fp_status); | |
af12906f | 1296 | farg.ll = float64_round_to_int(farg.d, &env->fp_status); |
7c58044c JM |
1297 | /* Restore rounding mode from FPSCR */ |
1298 | fpscr_set_rounding_mode(); | |
1299 | } | |
af12906f | 1300 | return farg.ll; |
d7e4b87e JM |
1301 | } |
1302 | ||
af12906f | 1303 | uint64_t helper_frin (uint64_t arg) |
d7e4b87e | 1304 | { |
af12906f | 1305 | return do_fri(arg, float_round_nearest_even); |
d7e4b87e JM |
1306 | } |
1307 | ||
af12906f | 1308 | uint64_t helper_friz (uint64_t arg) |
d7e4b87e | 1309 | { |
af12906f | 1310 | return do_fri(arg, float_round_to_zero); |
d7e4b87e JM |
1311 | } |
1312 | ||
af12906f | 1313 | uint64_t helper_frip (uint64_t arg) |
d7e4b87e | 1314 | { |
af12906f | 1315 | return do_fri(arg, float_round_up); |
d7e4b87e JM |
1316 | } |
1317 | ||
af12906f | 1318 | uint64_t helper_frim (uint64_t arg) |
d7e4b87e | 1319 | { |
af12906f | 1320 | return do_fri(arg, float_round_down); |
d7e4b87e JM |
1321 | } |
1322 | ||
af12906f AJ |
1323 | /* fmadd - fmadd. */ |
1324 | uint64_t helper_fmadd (uint64_t arg1, uint64_t arg2, uint64_t arg3) | |
e864cabd | 1325 | { |
af12906f AJ |
1326 | CPU_DoubleU farg1, farg2, farg3; |
1327 | ||
1328 | farg1.ll = arg1; | |
1329 | farg2.ll = arg2; | |
1330 | farg3.ll = arg3; | |
1331 | #if USE_PRECISE_EMULATION | |
1332 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1333 | float64_is_signaling_nan(farg2.d) || | |
1334 | float64_is_signaling_nan(farg3.d))) { | |
7c58044c | 1335 | /* sNaN operation */ |
af12906f | 1336 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
7c58044c | 1337 | } else { |
e864cabd | 1338 | #ifdef FLOAT128 |
7c58044c JM |
1339 | /* This is the way the PowerPC specification defines it */ |
1340 | float128 ft0_128, ft1_128; | |
1341 | ||
af12906f AJ |
1342 | ft0_128 = float64_to_float128(farg1.d, &env->fp_status); |
1343 | ft1_128 = float64_to_float128(farg2.d, &env->fp_status); | |
7c58044c | 1344 | ft0_128 = float128_mul(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1345 | ft1_128 = float64_to_float128(farg3.d, &env->fp_status); |
7c58044c | 1346 | ft0_128 = float128_add(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1347 | farg1.d = float128_to_float64(ft0_128, &env->fp_status); |
e864cabd | 1348 | #else |
7c58044c | 1349 | /* This is OK on x86 hosts */ |
af12906f | 1350 | farg1.d = (farg1.d * farg2.d) + farg3.d; |
e864cabd | 1351 | #endif |
7c58044c | 1352 | } |
af12906f AJ |
1353 | #else |
1354 | farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status); | |
1355 | farg1.d = float64_add(farg1.d, farg3.d, &env->fp_status); | |
1356 | #endif | |
1357 | return farg1.ll; | |
e864cabd JM |
1358 | } |
1359 | ||
af12906f AJ |
1360 | /* fmsub - fmsub. */ |
1361 | uint64_t helper_fmsub (uint64_t arg1, uint64_t arg2, uint64_t arg3) | |
e864cabd | 1362 | { |
af12906f AJ |
1363 | CPU_DoubleU farg1, farg2, farg3; |
1364 | ||
1365 | farg1.ll = arg1; | |
1366 | farg2.ll = arg2; | |
1367 | farg3.ll = arg3; | |
1368 | #if USE_PRECISE_EMULATION | |
1369 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1370 | float64_is_signaling_nan(farg2.d) || | |
1371 | float64_is_signaling_nan(farg3.d))) { | |
7c58044c | 1372 | /* sNaN operation */ |
af12906f | 1373 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
7c58044c | 1374 | } else { |
e864cabd | 1375 | #ifdef FLOAT128 |
7c58044c JM |
1376 | /* This is the way the PowerPC specification defines it */ |
1377 | float128 ft0_128, ft1_128; | |
1378 | ||
af12906f AJ |
1379 | ft0_128 = float64_to_float128(farg1.d, &env->fp_status); |
1380 | ft1_128 = float64_to_float128(farg2.d, &env->fp_status); | |
7c58044c | 1381 | ft0_128 = float128_mul(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1382 | ft1_128 = float64_to_float128(farg3.d, &env->fp_status); |
7c58044c | 1383 | ft0_128 = float128_sub(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1384 | farg1.d = float128_to_float64(ft0_128, &env->fp_status); |
e864cabd | 1385 | #else |
7c58044c | 1386 | /* This is OK on x86 hosts */ |
af12906f | 1387 | farg1.d = (farg1.d * farg2.d) - farg3.d; |
e864cabd | 1388 | #endif |
7c58044c | 1389 | } |
af12906f AJ |
1390 | #else |
1391 | farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status); | |
1392 | farg1.d = float64_sub(farg1.d, farg3.d, &env->fp_status); | |
1393 | #endif | |
1394 | return farg1.ll; | |
e864cabd | 1395 | } |
e864cabd | 1396 | |
af12906f AJ |
1397 | /* fnmadd - fnmadd. */ |
1398 | uint64_t helper_fnmadd (uint64_t arg1, uint64_t arg2, uint64_t arg3) | |
4b3686fa | 1399 | { |
af12906f AJ |
1400 | CPU_DoubleU farg1, farg2, farg3; |
1401 | ||
1402 | farg1.ll = arg1; | |
1403 | farg2.ll = arg2; | |
1404 | farg3.ll = arg3; | |
1405 | ||
1406 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1407 | float64_is_signaling_nan(farg2.d) || | |
1408 | float64_is_signaling_nan(farg3.d))) { | |
7c58044c | 1409 | /* sNaN operation */ |
af12906f | 1410 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
7c58044c | 1411 | } else { |
1cdb9c3d | 1412 | #if USE_PRECISE_EMULATION |
e864cabd | 1413 | #ifdef FLOAT128 |
7c58044c JM |
1414 | /* This is the way the PowerPC specification defines it */ |
1415 | float128 ft0_128, ft1_128; | |
1416 | ||
af12906f AJ |
1417 | ft0_128 = float64_to_float128(farg1.d, &env->fp_status); |
1418 | ft1_128 = float64_to_float128(farg2.d, &env->fp_status); | |
7c58044c | 1419 | ft0_128 = float128_mul(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1420 | ft1_128 = float64_to_float128(farg3.d, &env->fp_status); |
7c58044c | 1421 | ft0_128 = float128_add(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1422 | farg1.d= float128_to_float64(ft0_128, &env->fp_status); |
e864cabd | 1423 | #else |
7c58044c | 1424 | /* This is OK on x86 hosts */ |
af12906f | 1425 | farg1.d = (farg1.d * farg2.d) + farg3.d; |
e864cabd JM |
1426 | #endif |
1427 | #else | |
af12906f AJ |
1428 | farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status); |
1429 | farg1.d = float64_add(farg1.d, farg3.d, &env->fp_status); | |
e864cabd | 1430 | #endif |
a44d2ce1 | 1431 | if (likely(!float64_is_nan(farg1.d))) |
af12906f | 1432 | farg1.d = float64_chs(farg1.d); |
7c58044c | 1433 | } |
af12906f | 1434 | return farg1.ll; |
4b3686fa FB |
1435 | } |
1436 | ||
af12906f AJ |
1437 | /* fnmsub - fnmsub. */ |
1438 | uint64_t helper_fnmsub (uint64_t arg1, uint64_t arg2, uint64_t arg3) | |
4b3686fa | 1439 | { |
af12906f AJ |
1440 | CPU_DoubleU farg1, farg2, farg3; |
1441 | ||
1442 | farg1.ll = arg1; | |
1443 | farg2.ll = arg2; | |
1444 | farg3.ll = arg3; | |
1445 | ||
1446 | if (unlikely(float64_is_signaling_nan(farg1.d) || | |
1447 | float64_is_signaling_nan(farg2.d) || | |
1448 | float64_is_signaling_nan(farg3.d))) { | |
7c58044c | 1449 | /* sNaN operation */ |
af12906f | 1450 | farg1.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
7c58044c | 1451 | } else { |
1cdb9c3d | 1452 | #if USE_PRECISE_EMULATION |
e864cabd | 1453 | #ifdef FLOAT128 |
7c58044c JM |
1454 | /* This is the way the PowerPC specification defines it */ |
1455 | float128 ft0_128, ft1_128; | |
1456 | ||
af12906f AJ |
1457 | ft0_128 = float64_to_float128(farg1.d, &env->fp_status); |
1458 | ft1_128 = float64_to_float128(farg2.d, &env->fp_status); | |
7c58044c | 1459 | ft0_128 = float128_mul(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1460 | ft1_128 = float64_to_float128(farg3.d, &env->fp_status); |
7c58044c | 1461 | ft0_128 = float128_sub(ft0_128, ft1_128, &env->fp_status); |
af12906f | 1462 | farg1.d = float128_to_float64(ft0_128, &env->fp_status); |
e864cabd | 1463 | #else |
7c58044c | 1464 | /* This is OK on x86 hosts */ |
af12906f | 1465 | farg1.d = (farg1.d * farg2.d) - farg3.d; |
e864cabd JM |
1466 | #endif |
1467 | #else | |
af12906f AJ |
1468 | farg1.d = float64_mul(farg1.d, farg2.d, &env->fp_status); |
1469 | farg1.d = float64_sub(farg1.d, farg3.d, &env->fp_status); | |
e864cabd | 1470 | #endif |
a44d2ce1 | 1471 | if (likely(!float64_is_nan(farg1.d))) |
af12906f | 1472 | farg1.d = float64_chs(farg1.d); |
7c58044c | 1473 | } |
af12906f | 1474 | return farg1.ll; |
1ef59d0a FB |
1475 | } |
1476 | ||
af12906f AJ |
1477 | /* frsp - frsp. */ |
1478 | uint64_t helper_frsp (uint64_t arg) | |
7c58044c | 1479 | { |
af12906f AJ |
1480 | CPU_DoubleU farg; |
1481 | farg.ll = arg; | |
1482 | ||
1483 | #if USE_PRECISE_EMULATION | |
1484 | if (unlikely(float64_is_signaling_nan(farg.d))) { | |
7c58044c | 1485 | /* sNaN square root */ |
af12906f | 1486 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
7c58044c | 1487 | } else { |
cf1cf21e | 1488 | farg.d = float64_to_float32(farg.d, &env->fp_status); |
7c58044c | 1489 | } |
af12906f AJ |
1490 | #else |
1491 | farg.d = float64_to_float32(farg.d, &env->fp_status); | |
1492 | #endif | |
1493 | return farg.ll; | |
7c58044c | 1494 | } |
7c58044c | 1495 | |
af12906f AJ |
1496 | /* fsqrt - fsqrt. */ |
1497 | uint64_t helper_fsqrt (uint64_t arg) | |
9a64fbe4 | 1498 | { |
af12906f AJ |
1499 | CPU_DoubleU farg; |
1500 | farg.ll = arg; | |
1501 | ||
1502 | if (unlikely(float64_is_signaling_nan(farg.d))) { | |
7c58044c | 1503 | /* sNaN square root */ |
af12906f AJ |
1504 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1505 | } else if (unlikely(fpisneg(farg.d) && !iszero(farg.d))) { | |
7c58044c | 1506 | /* Square root of a negative nonzero number */ |
af12906f | 1507 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSQRT); |
7c58044c | 1508 | } else { |
af12906f | 1509 | farg.d = float64_sqrt(farg.d, &env->fp_status); |
7c58044c | 1510 | } |
af12906f | 1511 | return farg.ll; |
9a64fbe4 FB |
1512 | } |
1513 | ||
af12906f AJ |
1514 | /* fre - fre. */ |
1515 | uint64_t helper_fre (uint64_t arg) | |
d7e4b87e | 1516 | { |
af12906f AJ |
1517 | CPU_DoubleU farg; |
1518 | farg.ll = arg; | |
d7e4b87e | 1519 | |
af12906f | 1520 | if (unlikely(float64_is_signaling_nan(farg.d))) { |
7c58044c | 1521 | /* sNaN reciprocal */ |
af12906f AJ |
1522 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1523 | } else if (unlikely(iszero(farg.d))) { | |
7c58044c | 1524 | /* Zero reciprocal */ |
af12906f AJ |
1525 | farg.ll = float_zero_divide_excp(1.0, farg.d); |
1526 | } else if (likely(isnormal(farg.d))) { | |
1527 | farg.d = float64_div(1.0, farg.d, &env->fp_status); | |
d7e4b87e | 1528 | } else { |
af12906f AJ |
1529 | if (farg.ll == 0x8000000000000000ULL) { |
1530 | farg.ll = 0xFFF0000000000000ULL; | |
1531 | } else if (farg.ll == 0x0000000000000000ULL) { | |
1532 | farg.ll = 0x7FF0000000000000ULL; | |
a44d2ce1 | 1533 | } else if (float64_is_nan(farg.d)) { |
af12906f AJ |
1534 | farg.ll = 0x7FF8000000000000ULL; |
1535 | } else if (fpisneg(farg.d)) { | |
1536 | farg.ll = 0x8000000000000000ULL; | |
d7e4b87e | 1537 | } else { |
af12906f | 1538 | farg.ll = 0x0000000000000000ULL; |
d7e4b87e | 1539 | } |
d7e4b87e | 1540 | } |
af12906f | 1541 | return farg.d; |
d7e4b87e JM |
1542 | } |
1543 | ||
af12906f AJ |
1544 | /* fres - fres. */ |
1545 | uint64_t helper_fres (uint64_t arg) | |
9a64fbe4 | 1546 | { |
af12906f AJ |
1547 | CPU_DoubleU farg; |
1548 | farg.ll = arg; | |
4ecc3190 | 1549 | |
af12906f | 1550 | if (unlikely(float64_is_signaling_nan(farg.d))) { |
7c58044c | 1551 | /* sNaN reciprocal */ |
af12906f AJ |
1552 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1553 | } else if (unlikely(iszero(farg.d))) { | |
7c58044c | 1554 | /* Zero reciprocal */ |
af12906f AJ |
1555 | farg.ll = float_zero_divide_excp(1.0, farg.d); |
1556 | } else if (likely(isnormal(farg.d))) { | |
1cdb9c3d | 1557 | #if USE_PRECISE_EMULATION |
af12906f AJ |
1558 | farg.d = float64_div(1.0, farg.d, &env->fp_status); |
1559 | farg.d = float64_to_float32(farg.d, &env->fp_status); | |
e864cabd | 1560 | #else |
af12906f | 1561 | farg.d = float32_div(1.0, farg.d, &env->fp_status); |
e864cabd | 1562 | #endif |
4ecc3190 | 1563 | } else { |
af12906f AJ |
1564 | if (farg.ll == 0x8000000000000000ULL) { |
1565 | farg.ll = 0xFFF0000000000000ULL; | |
1566 | } else if (farg.ll == 0x0000000000000000ULL) { | |
1567 | farg.ll = 0x7FF0000000000000ULL; | |
a44d2ce1 | 1568 | } else if (float64_is_nan(farg.d)) { |
af12906f AJ |
1569 | farg.ll = 0x7FF8000000000000ULL; |
1570 | } else if (fpisneg(farg.d)) { | |
1571 | farg.ll = 0x8000000000000000ULL; | |
4ecc3190 | 1572 | } else { |
af12906f | 1573 | farg.ll = 0x0000000000000000ULL; |
4ecc3190 | 1574 | } |
4ecc3190 | 1575 | } |
af12906f | 1576 | return farg.ll; |
9a64fbe4 FB |
1577 | } |
1578 | ||
af12906f AJ |
1579 | /* frsqrte - frsqrte. */ |
1580 | uint64_t helper_frsqrte (uint64_t arg) | |
9a64fbe4 | 1581 | { |
af12906f AJ |
1582 | CPU_DoubleU farg; |
1583 | farg.ll = arg; | |
4ecc3190 | 1584 | |
af12906f | 1585 | if (unlikely(float64_is_signaling_nan(farg.d))) { |
7c58044c | 1586 | /* sNaN reciprocal square root */ |
af12906f AJ |
1587 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); |
1588 | } else if (unlikely(fpisneg(farg.d) && !iszero(farg.d))) { | |
7c58044c | 1589 | /* Reciprocal square root of a negative nonzero number */ |
af12906f AJ |
1590 | farg.ll = fload_invalid_op_excp(POWERPC_EXCP_FP_VXSQRT); |
1591 | } else if (likely(isnormal(farg.d))) { | |
1592 | farg.d = float64_sqrt(farg.d, &env->fp_status); | |
1593 | farg.d = float32_div(1.0, farg.d, &env->fp_status); | |
4ecc3190 | 1594 | } else { |
af12906f AJ |
1595 | if (farg.ll == 0x8000000000000000ULL) { |
1596 | farg.ll = 0xFFF0000000000000ULL; | |
1597 | } else if (farg.ll == 0x0000000000000000ULL) { | |
1598 | farg.ll = 0x7FF0000000000000ULL; | |
a44d2ce1 | 1599 | } else if (float64_is_nan(farg.d)) { |
af12906f AJ |
1600 | farg.ll |= 0x000FFFFFFFFFFFFFULL; |
1601 | } else if (fpisneg(farg.d)) { | |
1602 | farg.ll = 0x7FF8000000000000ULL; | |
4ecc3190 | 1603 | } else { |
af12906f | 1604 | farg.ll = 0x0000000000000000ULL; |
4ecc3190 | 1605 | } |
4ecc3190 | 1606 | } |
af12906f | 1607 | return farg.ll; |
9a64fbe4 FB |
1608 | } |
1609 | ||
af12906f AJ |
1610 | /* fsel - fsel. */ |
1611 | uint64_t helper_fsel (uint64_t arg1, uint64_t arg2, uint64_t arg3) | |
9a64fbe4 | 1612 | { |
6ad7365a | 1613 | CPU_DoubleU farg1; |
af12906f AJ |
1614 | |
1615 | farg1.ll = arg1; | |
af12906f AJ |
1616 | |
1617 | if (!fpisneg(farg1.d) || iszero(farg1.d)) | |
6ad7365a | 1618 | return arg2; |
4ecc3190 | 1619 | else |
6ad7365a | 1620 | return arg3; |
9a64fbe4 FB |
1621 | } |
1622 | ||
9a819377 | 1623 | void helper_fcmpu (uint64_t arg1, uint64_t arg2, uint32_t crfD) |
9a64fbe4 | 1624 | { |
af12906f | 1625 | CPU_DoubleU farg1, farg2; |
e1571908 | 1626 | uint32_t ret = 0; |
af12906f AJ |
1627 | farg1.ll = arg1; |
1628 | farg2.ll = arg2; | |
e1571908 | 1629 | |
9a819377 AJ |
1630 | if (unlikely(float64_is_nan(farg1.d) || |
1631 | float64_is_nan(farg2.d))) { | |
1632 | ret = 0x01UL; | |
1633 | } else if (float64_lt(farg1.d, farg2.d, &env->fp_status)) { | |
1634 | ret = 0x08UL; | |
1635 | } else if (!float64_le(farg1.d, farg2.d, &env->fp_status)) { | |
1636 | ret = 0x04UL; | |
7c58044c | 1637 | } else { |
9a819377 | 1638 | ret = 0x02UL; |
9a64fbe4 | 1639 | } |
9a819377 | 1640 | |
7c58044c | 1641 | env->fpscr &= ~(0x0F << FPSCR_FPRF); |
e1571908 | 1642 | env->fpscr |= ret << FPSCR_FPRF; |
9a819377 AJ |
1643 | env->crf[crfD] = ret; |
1644 | if (unlikely(ret == 0x01UL | |
1645 | && (float64_is_signaling_nan(farg1.d) || | |
1646 | float64_is_signaling_nan(farg2.d)))) { | |
1647 | /* sNaN comparison */ | |
1648 | fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN); | |
1649 | } | |
9a64fbe4 FB |
1650 | } |
1651 | ||
9a819377 | 1652 | void helper_fcmpo (uint64_t arg1, uint64_t arg2, uint32_t crfD) |
9a64fbe4 | 1653 | { |
af12906f | 1654 | CPU_DoubleU farg1, farg2; |
e1571908 | 1655 | uint32_t ret = 0; |
af12906f AJ |
1656 | farg1.ll = arg1; |
1657 | farg2.ll = arg2; | |
e1571908 | 1658 | |
af12906f AJ |
1659 | if (unlikely(float64_is_nan(farg1.d) || |
1660 | float64_is_nan(farg2.d))) { | |
9a819377 AJ |
1661 | ret = 0x01UL; |
1662 | } else if (float64_lt(farg1.d, farg2.d, &env->fp_status)) { | |
1663 | ret = 0x08UL; | |
1664 | } else if (!float64_le(farg1.d, farg2.d, &env->fp_status)) { | |
1665 | ret = 0x04UL; | |
1666 | } else { | |
1667 | ret = 0x02UL; | |
1668 | } | |
1669 | ||
1670 | env->fpscr &= ~(0x0F << FPSCR_FPRF); | |
1671 | env->fpscr |= ret << FPSCR_FPRF; | |
1672 | env->crf[crfD] = ret; | |
1673 | if (unlikely (ret == 0x01UL)) { | |
af12906f AJ |
1674 | if (float64_is_signaling_nan(farg1.d) || |
1675 | float64_is_signaling_nan(farg2.d)) { | |
7c58044c JM |
1676 | /* sNaN comparison */ |
1677 | fload_invalid_op_excp(POWERPC_EXCP_FP_VXSNAN | | |
1678 | POWERPC_EXCP_FP_VXVC); | |
1679 | } else { | |
1680 | /* qNaN comparison */ | |
1681 | fload_invalid_op_excp(POWERPC_EXCP_FP_VXVC); | |
1682 | } | |
9a64fbe4 | 1683 | } |
9a64fbe4 FB |
1684 | } |
1685 | ||
76a66253 | 1686 | #if !defined (CONFIG_USER_ONLY) |
6527f6ea | 1687 | void helper_store_msr (target_ulong val) |
0411a972 | 1688 | { |
6527f6ea AJ |
1689 | val = hreg_store_msr(env, val, 0); |
1690 | if (val != 0) { | |
0411a972 | 1691 | env->interrupt_request |= CPU_INTERRUPT_EXITTB; |
e06fcd75 | 1692 | helper_raise_exception(val); |
0411a972 JM |
1693 | } |
1694 | } | |
1695 | ||
d72a19f7 | 1696 | static always_inline void do_rfi (target_ulong nip, target_ulong msr, |
0411a972 | 1697 | target_ulong msrm, int keep_msrh) |
9a64fbe4 | 1698 | { |
426613db | 1699 | #if defined(TARGET_PPC64) |
0411a972 JM |
1700 | if (msr & (1ULL << MSR_SF)) { |
1701 | nip = (uint64_t)nip; | |
1702 | msr &= (uint64_t)msrm; | |
a42bd6cc | 1703 | } else { |
0411a972 JM |
1704 | nip = (uint32_t)nip; |
1705 | msr = (uint32_t)(msr & msrm); | |
1706 | if (keep_msrh) | |
1707 | msr |= env->msr & ~((uint64_t)0xFFFFFFFF); | |
a42bd6cc | 1708 | } |
426613db | 1709 | #else |
0411a972 JM |
1710 | nip = (uint32_t)nip; |
1711 | msr &= (uint32_t)msrm; | |
426613db | 1712 | #endif |
0411a972 JM |
1713 | /* XXX: beware: this is false if VLE is supported */ |
1714 | env->nip = nip & ~((target_ulong)0x00000003); | |
a4f30719 | 1715 | hreg_store_msr(env, msr, 1); |
fdabc366 | 1716 | #if defined (DEBUG_OP) |
0411a972 | 1717 | cpu_dump_rfi(env->nip, env->msr); |
fdabc366 | 1718 | #endif |
0411a972 JM |
1719 | /* No need to raise an exception here, |
1720 | * as rfi is always the last insn of a TB | |
1721 | */ | |
fdabc366 | 1722 | env->interrupt_request |= CPU_INTERRUPT_EXITTB; |
9a64fbe4 | 1723 | } |
d9bce9d9 | 1724 | |
d72a19f7 | 1725 | void helper_rfi (void) |
0411a972 | 1726 | { |
d72a19f7 AJ |
1727 | do_rfi(env->spr[SPR_SRR0], env->spr[SPR_SRR1], |
1728 | ~((target_ulong)0xFFFF0000), 1); | |
0411a972 JM |
1729 | } |
1730 | ||
d9bce9d9 | 1731 | #if defined(TARGET_PPC64) |
d72a19f7 | 1732 | void helper_rfid (void) |
426613db | 1733 | { |
d72a19f7 AJ |
1734 | do_rfi(env->spr[SPR_SRR0], env->spr[SPR_SRR1], |
1735 | ~((target_ulong)0xFFFF0000), 0); | |
d9bce9d9 | 1736 | } |
7863667f | 1737 | |
d72a19f7 | 1738 | void helper_hrfid (void) |
be147d08 | 1739 | { |
d72a19f7 AJ |
1740 | do_rfi(env->spr[SPR_HSRR0], env->spr[SPR_HSRR1], |
1741 | ~((target_ulong)0xFFFF0000), 0); | |
be147d08 JM |
1742 | } |
1743 | #endif | |
76a66253 | 1744 | #endif |
9a64fbe4 | 1745 | |
cab3bee2 | 1746 | void helper_tw (target_ulong arg1, target_ulong arg2, uint32_t flags) |
9a64fbe4 | 1747 | { |
cab3bee2 AJ |
1748 | if (!likely(!(((int32_t)arg1 < (int32_t)arg2 && (flags & 0x10)) || |
1749 | ((int32_t)arg1 > (int32_t)arg2 && (flags & 0x08)) || | |
1750 | ((int32_t)arg1 == (int32_t)arg2 && (flags & 0x04)) || | |
1751 | ((uint32_t)arg1 < (uint32_t)arg2 && (flags & 0x02)) || | |
1752 | ((uint32_t)arg1 > (uint32_t)arg2 && (flags & 0x01))))) { | |
e06fcd75 | 1753 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, POWERPC_EXCP_TRAP); |
a42bd6cc | 1754 | } |
9a64fbe4 FB |
1755 | } |
1756 | ||
d9bce9d9 | 1757 | #if defined(TARGET_PPC64) |
cab3bee2 | 1758 | void helper_td (target_ulong arg1, target_ulong arg2, uint32_t flags) |
d9bce9d9 | 1759 | { |
cab3bee2 AJ |
1760 | if (!likely(!(((int64_t)arg1 < (int64_t)arg2 && (flags & 0x10)) || |
1761 | ((int64_t)arg1 > (int64_t)arg2 && (flags & 0x08)) || | |
1762 | ((int64_t)arg1 == (int64_t)arg2 && (flags & 0x04)) || | |
1763 | ((uint64_t)arg1 < (uint64_t)arg2 && (flags & 0x02)) || | |
1764 | ((uint64_t)arg1 > (uint64_t)arg2 && (flags & 0x01))))) | |
e06fcd75 | 1765 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, POWERPC_EXCP_TRAP); |
d9bce9d9 JM |
1766 | } |
1767 | #endif | |
1768 | ||
fdabc366 | 1769 | /*****************************************************************************/ |
76a66253 | 1770 | /* PowerPC 601 specific instructions (POWER bridge) */ |
9a64fbe4 | 1771 | |
22e0e173 | 1772 | target_ulong helper_clcs (uint32_t arg) |
9a64fbe4 | 1773 | { |
22e0e173 | 1774 | switch (arg) { |
76a66253 JM |
1775 | case 0x0CUL: |
1776 | /* Instruction cache line size */ | |
22e0e173 | 1777 | return env->icache_line_size; |
76a66253 JM |
1778 | break; |
1779 | case 0x0DUL: | |
1780 | /* Data cache line size */ | |
22e0e173 | 1781 | return env->dcache_line_size; |
76a66253 JM |
1782 | break; |
1783 | case 0x0EUL: | |
1784 | /* Minimum cache line size */ | |
22e0e173 AJ |
1785 | return (env->icache_line_size < env->dcache_line_size) ? |
1786 | env->icache_line_size : env->dcache_line_size; | |
76a66253 JM |
1787 | break; |
1788 | case 0x0FUL: | |
1789 | /* Maximum cache line size */ | |
22e0e173 AJ |
1790 | return (env->icache_line_size > env->dcache_line_size) ? |
1791 | env->icache_line_size : env->dcache_line_size; | |
76a66253 JM |
1792 | break; |
1793 | default: | |
1794 | /* Undefined */ | |
22e0e173 | 1795 | return 0; |
76a66253 JM |
1796 | break; |
1797 | } | |
1798 | } | |
1799 | ||
22e0e173 | 1800 | target_ulong helper_div (target_ulong arg1, target_ulong arg2) |
76a66253 | 1801 | { |
22e0e173 | 1802 | uint64_t tmp = (uint64_t)arg1 << 32 | env->spr[SPR_MQ]; |
76a66253 | 1803 | |
22e0e173 AJ |
1804 | if (((int32_t)tmp == INT32_MIN && (int32_t)arg2 == (int32_t)-1) || |
1805 | (int32_t)arg2 == 0) { | |
76a66253 | 1806 | env->spr[SPR_MQ] = 0; |
22e0e173 | 1807 | return INT32_MIN; |
76a66253 | 1808 | } else { |
22e0e173 AJ |
1809 | env->spr[SPR_MQ] = tmp % arg2; |
1810 | return tmp / (int32_t)arg2; | |
76a66253 JM |
1811 | } |
1812 | } | |
1813 | ||
22e0e173 | 1814 | target_ulong helper_divo (target_ulong arg1, target_ulong arg2) |
76a66253 | 1815 | { |
22e0e173 | 1816 | uint64_t tmp = (uint64_t)arg1 << 32 | env->spr[SPR_MQ]; |
76a66253 | 1817 | |
22e0e173 AJ |
1818 | if (((int32_t)tmp == INT32_MIN && (int32_t)arg2 == (int32_t)-1) || |
1819 | (int32_t)arg2 == 0) { | |
3d7b417e | 1820 | env->xer |= (1 << XER_OV) | (1 << XER_SO); |
76a66253 | 1821 | env->spr[SPR_MQ] = 0; |
22e0e173 | 1822 | return INT32_MIN; |
76a66253 | 1823 | } else { |
22e0e173 AJ |
1824 | env->spr[SPR_MQ] = tmp % arg2; |
1825 | tmp /= (int32_t)arg2; | |
1826 | if ((int32_t)tmp != tmp) { | |
3d7b417e | 1827 | env->xer |= (1 << XER_OV) | (1 << XER_SO); |
76a66253 | 1828 | } else { |
3d7b417e | 1829 | env->xer &= ~(1 << XER_OV); |
76a66253 | 1830 | } |
22e0e173 | 1831 | return tmp; |
76a66253 JM |
1832 | } |
1833 | } | |
1834 | ||
22e0e173 | 1835 | target_ulong helper_divs (target_ulong arg1, target_ulong arg2) |
76a66253 | 1836 | { |
22e0e173 AJ |
1837 | if (((int32_t)arg1 == INT32_MIN && (int32_t)arg2 == (int32_t)-1) || |
1838 | (int32_t)arg2 == 0) { | |
1839 | env->spr[SPR_MQ] = 0; | |
1840 | return INT32_MIN; | |
76a66253 | 1841 | } else { |
22e0e173 AJ |
1842 | env->spr[SPR_MQ] = (int32_t)arg1 % (int32_t)arg2; |
1843 | return (int32_t)arg1 / (int32_t)arg2; | |
76a66253 | 1844 | } |
76a66253 JM |
1845 | } |
1846 | ||
22e0e173 | 1847 | target_ulong helper_divso (target_ulong arg1, target_ulong arg2) |
76a66253 | 1848 | { |
22e0e173 AJ |
1849 | if (((int32_t)arg1 == INT32_MIN && (int32_t)arg2 == (int32_t)-1) || |
1850 | (int32_t)arg2 == 0) { | |
3d7b417e | 1851 | env->xer |= (1 << XER_OV) | (1 << XER_SO); |
22e0e173 AJ |
1852 | env->spr[SPR_MQ] = 0; |
1853 | return INT32_MIN; | |
76a66253 | 1854 | } else { |
3d7b417e | 1855 | env->xer &= ~(1 << XER_OV); |
22e0e173 AJ |
1856 | env->spr[SPR_MQ] = (int32_t)arg1 % (int32_t)arg2; |
1857 | return (int32_t)arg1 / (int32_t)arg2; | |
76a66253 JM |
1858 | } |
1859 | } | |
1860 | ||
1861 | #if !defined (CONFIG_USER_ONLY) | |
22e0e173 | 1862 | target_ulong helper_rac (target_ulong addr) |
76a66253 | 1863 | { |
76a66253 | 1864 | mmu_ctx_t ctx; |
faadf50e | 1865 | int nb_BATs; |
22e0e173 | 1866 | target_ulong ret = 0; |
76a66253 JM |
1867 | |
1868 | /* We don't have to generate many instances of this instruction, | |
1869 | * as rac is supervisor only. | |
1870 | */ | |
faadf50e JM |
1871 | /* XXX: FIX THIS: Pretend we have no BAT */ |
1872 | nb_BATs = env->nb_BATs; | |
1873 | env->nb_BATs = 0; | |
22e0e173 AJ |
1874 | if (get_physical_address(env, &ctx, addr, 0, ACCESS_INT) == 0) |
1875 | ret = ctx.raddr; | |
faadf50e | 1876 | env->nb_BATs = nb_BATs; |
22e0e173 | 1877 | return ret; |
76a66253 JM |
1878 | } |
1879 | ||
d72a19f7 | 1880 | void helper_rfsvc (void) |
76a66253 | 1881 | { |
d72a19f7 | 1882 | do_rfi(env->lr, env->ctr, 0x0000FFFF, 0); |
76a66253 | 1883 | } |
76a66253 JM |
1884 | #endif |
1885 | ||
1886 | /*****************************************************************************/ | |
1887 | /* 602 specific instructions */ | |
1888 | /* mfrom is the most crazy instruction ever seen, imho ! */ | |
1889 | /* Real implementation uses a ROM table. Do the same */ | |
5e9ae189 AJ |
1890 | /* Extremly decomposed: |
1891 | * -arg / 256 | |
1892 | * return 256 * log10(10 + 1.0) + 0.5 | |
1893 | */ | |
db9a16a7 | 1894 | #if !defined (CONFIG_USER_ONLY) |
cf02a65c | 1895 | target_ulong helper_602_mfrom (target_ulong arg) |
76a66253 | 1896 | { |
cf02a65c | 1897 | if (likely(arg < 602)) { |
76a66253 | 1898 | #include "mfrom_table.c" |
45d827d2 | 1899 | return mfrom_ROM_table[arg]; |
76a66253 | 1900 | } else { |
cf02a65c | 1901 | return 0; |
76a66253 JM |
1902 | } |
1903 | } | |
db9a16a7 | 1904 | #endif |
76a66253 JM |
1905 | |
1906 | /*****************************************************************************/ | |
1907 | /* Embedded PowerPC specific helpers */ | |
76a66253 | 1908 | |
a750fc0b | 1909 | /* XXX: to be improved to check access rights when in user-mode */ |
06dca6a7 | 1910 | target_ulong helper_load_dcr (target_ulong dcrn) |
a750fc0b | 1911 | { |
06dca6a7 | 1912 | target_ulong val = 0; |
a750fc0b JM |
1913 | |
1914 | if (unlikely(env->dcr_env == NULL)) { | |
1915 | if (loglevel != 0) { | |
1916 | fprintf(logfile, "No DCR environment\n"); | |
1917 | } | |
e06fcd75 AJ |
1918 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, |
1919 | POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL); | |
06dca6a7 | 1920 | } else if (unlikely(ppc_dcr_read(env->dcr_env, dcrn, &val) != 0)) { |
a750fc0b | 1921 | if (loglevel != 0) { |
45d827d2 | 1922 | fprintf(logfile, "DCR read error %d %03x\n", (int)dcrn, (int)dcrn); |
a750fc0b | 1923 | } |
e06fcd75 AJ |
1924 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, |
1925 | POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_REG); | |
a750fc0b | 1926 | } |
06dca6a7 | 1927 | return val; |
a750fc0b JM |
1928 | } |
1929 | ||
06dca6a7 | 1930 | void helper_store_dcr (target_ulong dcrn, target_ulong val) |
a750fc0b JM |
1931 | { |
1932 | if (unlikely(env->dcr_env == NULL)) { | |
1933 | if (loglevel != 0) { | |
1934 | fprintf(logfile, "No DCR environment\n"); | |
1935 | } | |
e06fcd75 AJ |
1936 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, |
1937 | POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL); | |
06dca6a7 | 1938 | } else if (unlikely(ppc_dcr_write(env->dcr_env, dcrn, val) != 0)) { |
a750fc0b | 1939 | if (loglevel != 0) { |
45d827d2 | 1940 | fprintf(logfile, "DCR write error %d %03x\n", (int)dcrn, (int)dcrn); |
a750fc0b | 1941 | } |
e06fcd75 AJ |
1942 | helper_raise_exception_err(POWERPC_EXCP_PROGRAM, |
1943 | POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_REG); | |
a750fc0b JM |
1944 | } |
1945 | } | |
1946 | ||
76a66253 | 1947 | #if !defined(CONFIG_USER_ONLY) |
d72a19f7 | 1948 | void helper_40x_rfci (void) |
76a66253 | 1949 | { |
d72a19f7 AJ |
1950 | do_rfi(env->spr[SPR_40x_SRR2], env->spr[SPR_40x_SRR3], |
1951 | ~((target_ulong)0xFFFF0000), 0); | |
a42bd6cc JM |
1952 | } |
1953 | ||
d72a19f7 | 1954 | void helper_rfci (void) |
a42bd6cc | 1955 | { |
d72a19f7 AJ |
1956 | do_rfi(env->spr[SPR_BOOKE_CSRR0], SPR_BOOKE_CSRR1, |
1957 | ~((target_ulong)0x3FFF0000), 0); | |
a42bd6cc JM |
1958 | } |
1959 | ||
d72a19f7 | 1960 | void helper_rfdi (void) |
a42bd6cc | 1961 | { |
d72a19f7 AJ |
1962 | do_rfi(env->spr[SPR_BOOKE_DSRR0], SPR_BOOKE_DSRR1, |
1963 | ~((target_ulong)0x3FFF0000), 0); | |
a42bd6cc JM |
1964 | } |
1965 | ||
d72a19f7 | 1966 | void helper_rfmci (void) |
a42bd6cc | 1967 | { |
d72a19f7 AJ |
1968 | do_rfi(env->spr[SPR_BOOKE_MCSRR0], SPR_BOOKE_MCSRR1, |
1969 | ~((target_ulong)0x3FFF0000), 0); | |
76a66253 | 1970 | } |
76a66253 JM |
1971 | #endif |
1972 | ||
1973 | /* 440 specific */ | |
ef0d51af | 1974 | target_ulong helper_dlmzb (target_ulong high, target_ulong low, uint32_t update_Rc) |
76a66253 JM |
1975 | { |
1976 | target_ulong mask; | |
1977 | int i; | |
1978 | ||
1979 | i = 1; | |
1980 | for (mask = 0xFF000000; mask != 0; mask = mask >> 8) { | |
ef0d51af AJ |
1981 | if ((high & mask) == 0) { |
1982 | if (update_Rc) { | |
1983 | env->crf[0] = 0x4; | |
1984 | } | |
76a66253 | 1985 | goto done; |
ef0d51af | 1986 | } |
76a66253 JM |
1987 | i++; |
1988 | } | |
1989 | for (mask = 0xFF000000; mask != 0; mask = mask >> 8) { | |
ef0d51af AJ |
1990 | if ((low & mask) == 0) { |
1991 | if (update_Rc) { | |
1992 | env->crf[0] = 0x8; | |
1993 | } | |
1994 | goto done; | |
1995 | } | |
76a66253 JM |
1996 | i++; |
1997 | } | |
ef0d51af AJ |
1998 | if (update_Rc) { |
1999 | env->crf[0] = 0x2; | |
2000 | } | |
76a66253 | 2001 | done: |
ef0d51af AJ |
2002 | env->xer = (env->xer & ~0x7F) | i; |
2003 | if (update_Rc) { | |
2004 | env->crf[0] |= xer_so; | |
2005 | } | |
2006 | return i; | |
fdabc366 FB |
2007 | } |
2008 | ||
1c97856d | 2009 | /*****************************************************************************/ |
0487d6a8 JM |
2010 | /* SPE extension helpers */ |
2011 | /* Use a table to make this quicker */ | |
2012 | static uint8_t hbrev[16] = { | |
2013 | 0x0, 0x8, 0x4, 0xC, 0x2, 0xA, 0x6, 0xE, | |
2014 | 0x1, 0x9, 0x5, 0xD, 0x3, 0xB, 0x7, 0xF, | |
2015 | }; | |
2016 | ||
b068d6a7 | 2017 | static always_inline uint8_t byte_reverse (uint8_t val) |
0487d6a8 JM |
2018 | { |
2019 | return hbrev[val >> 4] | (hbrev[val & 0xF] << 4); | |
2020 | } | |
2021 | ||
b068d6a7 | 2022 | static always_inline uint32_t word_reverse (uint32_t val) |
0487d6a8 JM |
2023 | { |
2024 | return byte_reverse(val >> 24) | (byte_reverse(val >> 16) << 8) | | |
2025 | (byte_reverse(val >> 8) << 16) | (byte_reverse(val) << 24); | |
2026 | } | |
2027 | ||
3cd7d1dd | 2028 | #define MASKBITS 16 // Random value - to be fixed (implementation dependant) |
57951c27 | 2029 | target_ulong helper_brinc (target_ulong arg1, target_ulong arg2) |
0487d6a8 JM |
2030 | { |
2031 | uint32_t a, b, d, mask; | |
2032 | ||
3cd7d1dd | 2033 | mask = UINT32_MAX >> (32 - MASKBITS); |
57951c27 AJ |
2034 | a = arg1 & mask; |
2035 | b = arg2 & mask; | |
3cd7d1dd | 2036 | d = word_reverse(1 + word_reverse(a | ~b)); |
57951c27 | 2037 | return (arg1 & ~mask) | (d & b); |
0487d6a8 JM |
2038 | } |
2039 | ||
57951c27 | 2040 | uint32_t helper_cntlsw32 (uint32_t val) |
0487d6a8 JM |
2041 | { |
2042 | if (val & 0x80000000) | |
603fccce | 2043 | return clz32(~val); |
0487d6a8 | 2044 | else |
603fccce | 2045 | return clz32(val); |
0487d6a8 JM |
2046 | } |
2047 | ||
57951c27 | 2048 | uint32_t helper_cntlzw32 (uint32_t val) |
0487d6a8 | 2049 | { |
603fccce | 2050 | return clz32(val); |
0487d6a8 JM |
2051 | } |
2052 | ||
1c97856d AJ |
2053 | /* Single-precision floating-point conversions */ |
2054 | static always_inline uint32_t efscfsi (uint32_t val) | |
0487d6a8 | 2055 | { |
0ca9d380 | 2056 | CPU_FloatU u; |
0487d6a8 JM |
2057 | |
2058 | u.f = int32_to_float32(val, &env->spe_status); | |
2059 | ||
0ca9d380 | 2060 | return u.l; |
0487d6a8 JM |
2061 | } |
2062 | ||
1c97856d | 2063 | static always_inline uint32_t efscfui (uint32_t val) |
0487d6a8 | 2064 | { |
0ca9d380 | 2065 | CPU_FloatU u; |
0487d6a8 JM |
2066 | |
2067 | u.f = uint32_to_float32(val, &env->spe_status); | |
2068 | ||
0ca9d380 | 2069 | return u.l; |
0487d6a8 JM |
2070 | } |
2071 | ||
1c97856d | 2072 | static always_inline int32_t efsctsi (uint32_t val) |
0487d6a8 | 2073 | { |
0ca9d380 | 2074 | CPU_FloatU u; |
0487d6a8 | 2075 | |
0ca9d380 | 2076 | u.l = val; |
0487d6a8 | 2077 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2078 | if (unlikely(float32_is_nan(u.f))) |
0487d6a8 JM |
2079 | return 0; |
2080 | ||
2081 | return float32_to_int32(u.f, &env->spe_status); | |
2082 | } | |
2083 | ||
1c97856d | 2084 | static always_inline uint32_t efsctui (uint32_t val) |
0487d6a8 | 2085 | { |
0ca9d380 | 2086 | CPU_FloatU u; |
0487d6a8 | 2087 | |
0ca9d380 | 2088 | u.l = val; |
0487d6a8 | 2089 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2090 | if (unlikely(float32_is_nan(u.f))) |
0487d6a8 JM |
2091 | return 0; |
2092 | ||
2093 | return float32_to_uint32(u.f, &env->spe_status); | |
2094 | } | |
2095 | ||
1c97856d | 2096 | static always_inline uint32_t efsctsiz (uint32_t val) |
0487d6a8 | 2097 | { |
0ca9d380 | 2098 | CPU_FloatU u; |
0487d6a8 | 2099 | |
0ca9d380 | 2100 | u.l = val; |
0487d6a8 | 2101 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2102 | if (unlikely(float32_is_nan(u.f))) |
0487d6a8 JM |
2103 | return 0; |
2104 | ||
2105 | return float32_to_int32_round_to_zero(u.f, &env->spe_status); | |
2106 | } | |
2107 | ||
1c97856d | 2108 | static always_inline uint32_t efsctuiz (uint32_t val) |
0487d6a8 | 2109 | { |
0ca9d380 | 2110 | CPU_FloatU u; |
0487d6a8 | 2111 | |
0ca9d380 | 2112 | u.l = val; |
0487d6a8 | 2113 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2114 | if (unlikely(float32_is_nan(u.f))) |
0487d6a8 JM |
2115 | return 0; |
2116 | ||
2117 | return float32_to_uint32_round_to_zero(u.f, &env->spe_status); | |
2118 | } | |
2119 | ||
1c97856d | 2120 | static always_inline uint32_t efscfsf (uint32_t val) |
0487d6a8 | 2121 | { |
0ca9d380 | 2122 | CPU_FloatU u; |
0487d6a8 JM |
2123 | float32 tmp; |
2124 | ||
2125 | u.f = int32_to_float32(val, &env->spe_status); | |
2126 | tmp = int64_to_float32(1ULL << 32, &env->spe_status); | |
2127 | u.f = float32_div(u.f, tmp, &env->spe_status); | |
2128 | ||
0ca9d380 | 2129 | return u.l; |
0487d6a8 JM |
2130 | } |
2131 | ||
1c97856d | 2132 | static always_inline uint32_t efscfuf (uint32_t val) |
0487d6a8 | 2133 | { |
0ca9d380 | 2134 | CPU_FloatU u; |
0487d6a8 JM |
2135 | float32 tmp; |
2136 | ||
2137 | u.f = uint32_to_float32(val, &env->spe_status); | |
2138 | tmp = uint64_to_float32(1ULL << 32, &env->spe_status); | |
2139 | u.f = float32_div(u.f, tmp, &env->spe_status); | |
2140 | ||
0ca9d380 | 2141 | return u.l; |
0487d6a8 JM |
2142 | } |
2143 | ||
1c97856d | 2144 | static always_inline uint32_t efsctsf (uint32_t val) |
0487d6a8 | 2145 | { |
0ca9d380 | 2146 | CPU_FloatU u; |
0487d6a8 JM |
2147 | float32 tmp; |
2148 | ||
0ca9d380 | 2149 | u.l = val; |
0487d6a8 | 2150 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2151 | if (unlikely(float32_is_nan(u.f))) |
0487d6a8 JM |
2152 | return 0; |
2153 | tmp = uint64_to_float32(1ULL << 32, &env->spe_status); | |
2154 | u.f = float32_mul(u.f, tmp, &env->spe_status); | |
2155 | ||
2156 | return float32_to_int32(u.f, &env->spe_status); | |
2157 | } | |
2158 | ||
1c97856d | 2159 | static always_inline uint32_t efsctuf (uint32_t val) |
0487d6a8 | 2160 | { |
0ca9d380 | 2161 | CPU_FloatU u; |
0487d6a8 JM |
2162 | float32 tmp; |
2163 | ||
0ca9d380 | 2164 | u.l = val; |
0487d6a8 | 2165 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2166 | if (unlikely(float32_is_nan(u.f))) |
0487d6a8 JM |
2167 | return 0; |
2168 | tmp = uint64_to_float32(1ULL << 32, &env->spe_status); | |
2169 | u.f = float32_mul(u.f, tmp, &env->spe_status); | |
2170 | ||
2171 | return float32_to_uint32(u.f, &env->spe_status); | |
2172 | } | |
2173 | ||
1c97856d AJ |
2174 | #define HELPER_SPE_SINGLE_CONV(name) \ |
2175 | uint32_t helper_e##name (uint32_t val) \ | |
2176 | { \ | |
2177 | return e##name(val); \ | |
2178 | } | |
2179 | /* efscfsi */ | |
2180 | HELPER_SPE_SINGLE_CONV(fscfsi); | |
2181 | /* efscfui */ | |
2182 | HELPER_SPE_SINGLE_CONV(fscfui); | |
2183 | /* efscfuf */ | |
2184 | HELPER_SPE_SINGLE_CONV(fscfuf); | |
2185 | /* efscfsf */ | |
2186 | HELPER_SPE_SINGLE_CONV(fscfsf); | |
2187 | /* efsctsi */ | |
2188 | HELPER_SPE_SINGLE_CONV(fsctsi); | |
2189 | /* efsctui */ | |
2190 | HELPER_SPE_SINGLE_CONV(fsctui); | |
2191 | /* efsctsiz */ | |
2192 | HELPER_SPE_SINGLE_CONV(fsctsiz); | |
2193 | /* efsctuiz */ | |
2194 | HELPER_SPE_SINGLE_CONV(fsctuiz); | |
2195 | /* efsctsf */ | |
2196 | HELPER_SPE_SINGLE_CONV(fsctsf); | |
2197 | /* efsctuf */ | |
2198 | HELPER_SPE_SINGLE_CONV(fsctuf); | |
2199 | ||
2200 | #define HELPER_SPE_VECTOR_CONV(name) \ | |
2201 | uint64_t helper_ev##name (uint64_t val) \ | |
2202 | { \ | |
2203 | return ((uint64_t)e##name(val >> 32) << 32) | \ | |
2204 | (uint64_t)e##name(val); \ | |
0487d6a8 | 2205 | } |
1c97856d AJ |
2206 | /* evfscfsi */ |
2207 | HELPER_SPE_VECTOR_CONV(fscfsi); | |
2208 | /* evfscfui */ | |
2209 | HELPER_SPE_VECTOR_CONV(fscfui); | |
2210 | /* evfscfuf */ | |
2211 | HELPER_SPE_VECTOR_CONV(fscfuf); | |
2212 | /* evfscfsf */ | |
2213 | HELPER_SPE_VECTOR_CONV(fscfsf); | |
2214 | /* evfsctsi */ | |
2215 | HELPER_SPE_VECTOR_CONV(fsctsi); | |
2216 | /* evfsctui */ | |
2217 | HELPER_SPE_VECTOR_CONV(fsctui); | |
2218 | /* evfsctsiz */ | |
2219 | HELPER_SPE_VECTOR_CONV(fsctsiz); | |
2220 | /* evfsctuiz */ | |
2221 | HELPER_SPE_VECTOR_CONV(fsctuiz); | |
2222 | /* evfsctsf */ | |
2223 | HELPER_SPE_VECTOR_CONV(fsctsf); | |
2224 | /* evfsctuf */ | |
2225 | HELPER_SPE_VECTOR_CONV(fsctuf); | |
0487d6a8 | 2226 | |
1c97856d AJ |
2227 | /* Single-precision floating-point arithmetic */ |
2228 | static always_inline uint32_t efsadd (uint32_t op1, uint32_t op2) | |
0487d6a8 | 2229 | { |
1c97856d AJ |
2230 | CPU_FloatU u1, u2; |
2231 | u1.l = op1; | |
2232 | u2.l = op2; | |
2233 | u1.f = float32_add(u1.f, u2.f, &env->spe_status); | |
2234 | return u1.l; | |
0487d6a8 JM |
2235 | } |
2236 | ||
1c97856d | 2237 | static always_inline uint32_t efssub (uint32_t op1, uint32_t op2) |
0487d6a8 | 2238 | { |
1c97856d AJ |
2239 | CPU_FloatU u1, u2; |
2240 | u1.l = op1; | |
2241 | u2.l = op2; | |
2242 | u1.f = float32_sub(u1.f, u2.f, &env->spe_status); | |
2243 | return u1.l; | |
0487d6a8 JM |
2244 | } |
2245 | ||
1c97856d | 2246 | static always_inline uint32_t efsmul (uint32_t op1, uint32_t op2) |
0487d6a8 | 2247 | { |
1c97856d AJ |
2248 | CPU_FloatU u1, u2; |
2249 | u1.l = op1; | |
2250 | u2.l = op2; | |
2251 | u1.f = float32_mul(u1.f, u2.f, &env->spe_status); | |
2252 | return u1.l; | |
0487d6a8 JM |
2253 | } |
2254 | ||
1c97856d | 2255 | static always_inline uint32_t efsdiv (uint32_t op1, uint32_t op2) |
0487d6a8 | 2256 | { |
1c97856d AJ |
2257 | CPU_FloatU u1, u2; |
2258 | u1.l = op1; | |
2259 | u2.l = op2; | |
2260 | u1.f = float32_div(u1.f, u2.f, &env->spe_status); | |
2261 | return u1.l; | |
0487d6a8 JM |
2262 | } |
2263 | ||
1c97856d AJ |
2264 | #define HELPER_SPE_SINGLE_ARITH(name) \ |
2265 | uint32_t helper_e##name (uint32_t op1, uint32_t op2) \ | |
2266 | { \ | |
2267 | return e##name(op1, op2); \ | |
2268 | } | |
2269 | /* efsadd */ | |
2270 | HELPER_SPE_SINGLE_ARITH(fsadd); | |
2271 | /* efssub */ | |
2272 | HELPER_SPE_SINGLE_ARITH(fssub); | |
2273 | /* efsmul */ | |
2274 | HELPER_SPE_SINGLE_ARITH(fsmul); | |
2275 | /* efsdiv */ | |
2276 | HELPER_SPE_SINGLE_ARITH(fsdiv); | |
2277 | ||
2278 | #define HELPER_SPE_VECTOR_ARITH(name) \ | |
2279 | uint64_t helper_ev##name (uint64_t op1, uint64_t op2) \ | |
2280 | { \ | |
2281 | return ((uint64_t)e##name(op1 >> 32, op2 >> 32) << 32) | \ | |
2282 | (uint64_t)e##name(op1, op2); \ | |
2283 | } | |
2284 | /* evfsadd */ | |
2285 | HELPER_SPE_VECTOR_ARITH(fsadd); | |
2286 | /* evfssub */ | |
2287 | HELPER_SPE_VECTOR_ARITH(fssub); | |
2288 | /* evfsmul */ | |
2289 | HELPER_SPE_VECTOR_ARITH(fsmul); | |
2290 | /* evfsdiv */ | |
2291 | HELPER_SPE_VECTOR_ARITH(fsdiv); | |
2292 | ||
2293 | /* Single-precision floating-point comparisons */ | |
2294 | static always_inline uint32_t efststlt (uint32_t op1, uint32_t op2) | |
0487d6a8 | 2295 | { |
1c97856d AJ |
2296 | CPU_FloatU u1, u2; |
2297 | u1.l = op1; | |
2298 | u2.l = op2; | |
2299 | return float32_lt(u1.f, u2.f, &env->spe_status) ? 4 : 0; | |
0487d6a8 JM |
2300 | } |
2301 | ||
1c97856d | 2302 | static always_inline uint32_t efststgt (uint32_t op1, uint32_t op2) |
0487d6a8 | 2303 | { |
1c97856d AJ |
2304 | CPU_FloatU u1, u2; |
2305 | u1.l = op1; | |
2306 | u2.l = op2; | |
2307 | return float32_le(u1.f, u2.f, &env->spe_status) ? 0 : 4; | |
0487d6a8 JM |
2308 | } |
2309 | ||
1c97856d | 2310 | static always_inline uint32_t efststeq (uint32_t op1, uint32_t op2) |
0487d6a8 | 2311 | { |
1c97856d AJ |
2312 | CPU_FloatU u1, u2; |
2313 | u1.l = op1; | |
2314 | u2.l = op2; | |
2315 | return float32_eq(u1.f, u2.f, &env->spe_status) ? 4 : 0; | |
0487d6a8 JM |
2316 | } |
2317 | ||
1c97856d | 2318 | static always_inline uint32_t efscmplt (uint32_t op1, uint32_t op2) |
0487d6a8 JM |
2319 | { |
2320 | /* XXX: TODO: test special values (NaN, infinites, ...) */ | |
1c97856d | 2321 | return efststlt(op1, op2); |
0487d6a8 JM |
2322 | } |
2323 | ||
1c97856d | 2324 | static always_inline uint32_t efscmpgt (uint32_t op1, uint32_t op2) |
0487d6a8 JM |
2325 | { |
2326 | /* XXX: TODO: test special values (NaN, infinites, ...) */ | |
1c97856d | 2327 | return efststgt(op1, op2); |
0487d6a8 JM |
2328 | } |
2329 | ||
1c97856d | 2330 | static always_inline uint32_t efscmpeq (uint32_t op1, uint32_t op2) |
0487d6a8 JM |
2331 | { |
2332 | /* XXX: TODO: test special values (NaN, infinites, ...) */ | |
1c97856d | 2333 | return efststeq(op1, op2); |
0487d6a8 JM |
2334 | } |
2335 | ||
1c97856d AJ |
2336 | #define HELPER_SINGLE_SPE_CMP(name) \ |
2337 | uint32_t helper_e##name (uint32_t op1, uint32_t op2) \ | |
2338 | { \ | |
2339 | return e##name(op1, op2) << 2; \ | |
2340 | } | |
2341 | /* efststlt */ | |
2342 | HELPER_SINGLE_SPE_CMP(fststlt); | |
2343 | /* efststgt */ | |
2344 | HELPER_SINGLE_SPE_CMP(fststgt); | |
2345 | /* efststeq */ | |
2346 | HELPER_SINGLE_SPE_CMP(fststeq); | |
2347 | /* efscmplt */ | |
2348 | HELPER_SINGLE_SPE_CMP(fscmplt); | |
2349 | /* efscmpgt */ | |
2350 | HELPER_SINGLE_SPE_CMP(fscmpgt); | |
2351 | /* efscmpeq */ | |
2352 | HELPER_SINGLE_SPE_CMP(fscmpeq); | |
2353 | ||
2354 | static always_inline uint32_t evcmp_merge (int t0, int t1) | |
0487d6a8 | 2355 | { |
1c97856d | 2356 | return (t0 << 3) | (t1 << 2) | ((t0 | t1) << 1) | (t0 & t1); |
0487d6a8 JM |
2357 | } |
2358 | ||
1c97856d AJ |
2359 | #define HELPER_VECTOR_SPE_CMP(name) \ |
2360 | uint32_t helper_ev##name (uint64_t op1, uint64_t op2) \ | |
2361 | { \ | |
2362 | return evcmp_merge(e##name(op1 >> 32, op2 >> 32), e##name(op1, op2)); \ | |
0487d6a8 | 2363 | } |
1c97856d AJ |
2364 | /* evfststlt */ |
2365 | HELPER_VECTOR_SPE_CMP(fststlt); | |
2366 | /* evfststgt */ | |
2367 | HELPER_VECTOR_SPE_CMP(fststgt); | |
2368 | /* evfststeq */ | |
2369 | HELPER_VECTOR_SPE_CMP(fststeq); | |
2370 | /* evfscmplt */ | |
2371 | HELPER_VECTOR_SPE_CMP(fscmplt); | |
2372 | /* evfscmpgt */ | |
2373 | HELPER_VECTOR_SPE_CMP(fscmpgt); | |
2374 | /* evfscmpeq */ | |
2375 | HELPER_VECTOR_SPE_CMP(fscmpeq); | |
0487d6a8 | 2376 | |
1c97856d AJ |
2377 | /* Double-precision floating-point conversion */ |
2378 | uint64_t helper_efdcfsi (uint32_t val) | |
0487d6a8 | 2379 | { |
1c97856d AJ |
2380 | CPU_DoubleU u; |
2381 | ||
2382 | u.d = int32_to_float64(val, &env->spe_status); | |
2383 | ||
2384 | return u.ll; | |
0487d6a8 JM |
2385 | } |
2386 | ||
1c97856d | 2387 | uint64_t helper_efdcfsid (uint64_t val) |
0487d6a8 | 2388 | { |
0ca9d380 | 2389 | CPU_DoubleU u; |
0487d6a8 | 2390 | |
0ca9d380 | 2391 | u.d = int64_to_float64(val, &env->spe_status); |
0487d6a8 | 2392 | |
0ca9d380 | 2393 | return u.ll; |
0487d6a8 JM |
2394 | } |
2395 | ||
1c97856d AJ |
2396 | uint64_t helper_efdcfui (uint32_t val) |
2397 | { | |
2398 | CPU_DoubleU u; | |
2399 | ||
2400 | u.d = uint32_to_float64(val, &env->spe_status); | |
2401 | ||
2402 | return u.ll; | |
2403 | } | |
2404 | ||
2405 | uint64_t helper_efdcfuid (uint64_t val) | |
0487d6a8 | 2406 | { |
0ca9d380 | 2407 | CPU_DoubleU u; |
0487d6a8 | 2408 | |
0ca9d380 | 2409 | u.d = uint64_to_float64(val, &env->spe_status); |
0487d6a8 | 2410 | |
0ca9d380 | 2411 | return u.ll; |
0487d6a8 JM |
2412 | } |
2413 | ||
1c97856d | 2414 | uint32_t helper_efdctsi (uint64_t val) |
0487d6a8 | 2415 | { |
0ca9d380 | 2416 | CPU_DoubleU u; |
0487d6a8 | 2417 | |
0ca9d380 | 2418 | u.ll = val; |
0487d6a8 | 2419 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2420 | if (unlikely(float64_is_nan(u.d))) |
0487d6a8 JM |
2421 | return 0; |
2422 | ||
1c97856d | 2423 | return float64_to_int32(u.d, &env->spe_status); |
0487d6a8 JM |
2424 | } |
2425 | ||
1c97856d | 2426 | uint32_t helper_efdctui (uint64_t val) |
0487d6a8 | 2427 | { |
0ca9d380 | 2428 | CPU_DoubleU u; |
0487d6a8 | 2429 | |
0ca9d380 | 2430 | u.ll = val; |
0487d6a8 | 2431 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2432 | if (unlikely(float64_is_nan(u.d))) |
0487d6a8 JM |
2433 | return 0; |
2434 | ||
1c97856d | 2435 | return float64_to_uint32(u.d, &env->spe_status); |
0487d6a8 JM |
2436 | } |
2437 | ||
1c97856d | 2438 | uint32_t helper_efdctsiz (uint64_t val) |
0487d6a8 | 2439 | { |
0ca9d380 | 2440 | CPU_DoubleU u; |
0487d6a8 | 2441 | |
0ca9d380 | 2442 | u.ll = val; |
0487d6a8 | 2443 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2444 | if (unlikely(float64_is_nan(u.d))) |
0487d6a8 JM |
2445 | return 0; |
2446 | ||
1c97856d | 2447 | return float64_to_int32_round_to_zero(u.d, &env->spe_status); |
0487d6a8 JM |
2448 | } |
2449 | ||
1c97856d | 2450 | uint64_t helper_efdctsidz (uint64_t val) |
0487d6a8 | 2451 | { |
0ca9d380 | 2452 | CPU_DoubleU u; |
0487d6a8 | 2453 | |
0ca9d380 | 2454 | u.ll = val; |
0487d6a8 | 2455 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2456 | if (unlikely(float64_is_nan(u.d))) |
0487d6a8 JM |
2457 | return 0; |
2458 | ||
1c97856d | 2459 | return float64_to_int64_round_to_zero(u.d, &env->spe_status); |
0487d6a8 JM |
2460 | } |
2461 | ||
1c97856d | 2462 | uint32_t helper_efdctuiz (uint64_t val) |
0487d6a8 | 2463 | { |
1c97856d | 2464 | CPU_DoubleU u; |
0487d6a8 | 2465 | |
1c97856d AJ |
2466 | u.ll = val; |
2467 | /* NaN are not treated the same way IEEE 754 does */ | |
a44d2ce1 | 2468 | if (unlikely(float64_is_nan(u.d))) |
1c97856d | 2469 | return 0; |
0487d6a8 | 2470 | |
1c97856d | 2471 | return float64_to_uint32_round_to_zero(u.d, &env->spe_status); |
0487d6a8 JM |
2472 | } |
2473 | ||
1c97856d | 2474 | uint64_t helper_efdctuidz (uint64_t val) |
0487d6a8 | 2475 | { |
1c97856d | 2476 | CPU_DoubleU u; |
0487d6a8 | 2477 | |
1c97856d AJ |
2478 | u.ll = val; |
2479 | /* NaN are not treated the same way IEEE 754 does */ | |
a44d2ce1 | 2480 | if (unlikely(float64_is_nan(u.d))) |
1c97856d | 2481 | return 0; |
0487d6a8 | 2482 | |
1c97856d | 2483 | return float64_to_uint64_round_to_zero(u.d, &env->spe_status); |
0487d6a8 JM |
2484 | } |
2485 | ||
1c97856d | 2486 | uint64_t helper_efdcfsf (uint32_t val) |
0487d6a8 | 2487 | { |
0ca9d380 | 2488 | CPU_DoubleU u; |
0487d6a8 JM |
2489 | float64 tmp; |
2490 | ||
0ca9d380 | 2491 | u.d = int32_to_float64(val, &env->spe_status); |
0487d6a8 | 2492 | tmp = int64_to_float64(1ULL << 32, &env->spe_status); |
0ca9d380 | 2493 | u.d = float64_div(u.d, tmp, &env->spe_status); |
0487d6a8 | 2494 | |
0ca9d380 | 2495 | return u.ll; |
0487d6a8 JM |
2496 | } |
2497 | ||
1c97856d | 2498 | uint64_t helper_efdcfuf (uint32_t val) |
0487d6a8 | 2499 | { |
0ca9d380 | 2500 | CPU_DoubleU u; |
0487d6a8 JM |
2501 | float64 tmp; |
2502 | ||
0ca9d380 | 2503 | u.d = uint32_to_float64(val, &env->spe_status); |
0487d6a8 | 2504 | tmp = int64_to_float64(1ULL << 32, &env->spe_status); |
0ca9d380 | 2505 | u.d = float64_div(u.d, tmp, &env->spe_status); |
0487d6a8 | 2506 | |
0ca9d380 | 2507 | return u.ll; |
0487d6a8 JM |
2508 | } |
2509 | ||
1c97856d | 2510 | uint32_t helper_efdctsf (uint64_t val) |
0487d6a8 | 2511 | { |
0ca9d380 | 2512 | CPU_DoubleU u; |
0487d6a8 JM |
2513 | float64 tmp; |
2514 | ||
0ca9d380 | 2515 | u.ll = val; |
0487d6a8 | 2516 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2517 | if (unlikely(float64_is_nan(u.d))) |
0487d6a8 JM |
2518 | return 0; |
2519 | tmp = uint64_to_float64(1ULL << 32, &env->spe_status); | |
0ca9d380 | 2520 | u.d = float64_mul(u.d, tmp, &env->spe_status); |
0487d6a8 | 2521 | |
0ca9d380 | 2522 | return float64_to_int32(u.d, &env->spe_status); |
0487d6a8 JM |
2523 | } |
2524 | ||
1c97856d | 2525 | uint32_t helper_efdctuf (uint64_t val) |
0487d6a8 | 2526 | { |
0ca9d380 | 2527 | CPU_DoubleU u; |
0487d6a8 JM |
2528 | float64 tmp; |
2529 | ||
0ca9d380 | 2530 | u.ll = val; |
0487d6a8 | 2531 | /* NaN are not treated the same way IEEE 754 does */ |
a44d2ce1 | 2532 | if (unlikely(float64_is_nan(u.d))) |
0487d6a8 JM |
2533 | return 0; |
2534 | tmp = uint64_to_float64(1ULL << 32, &env->spe_status); | |
0ca9d380 | 2535 | u.d = float64_mul(u.d, tmp, &env->spe_status); |
0487d6a8 | 2536 | |
0ca9d380 | 2537 | return float64_to_uint32(u.d, &env->spe_status); |
0487d6a8 JM |
2538 | } |
2539 | ||
1c97856d | 2540 | uint32_t helper_efscfd (uint64_t val) |
0487d6a8 | 2541 | { |
0ca9d380 AJ |
2542 | CPU_DoubleU u1; |
2543 | CPU_FloatU u2; | |
0487d6a8 | 2544 | |
0ca9d380 AJ |
2545 | u1.ll = val; |
2546 | u2.f = float64_to_float32(u1.d, &env->spe_status); | |
0487d6a8 | 2547 | |
0ca9d380 | 2548 | return u2.l; |
0487d6a8 JM |
2549 | } |
2550 | ||
1c97856d | 2551 | uint64_t helper_efdcfs (uint32_t val) |
0487d6a8 | 2552 | { |
0ca9d380 AJ |
2553 | CPU_DoubleU u2; |
2554 | CPU_FloatU u1; | |
0487d6a8 | 2555 | |
0ca9d380 AJ |
2556 | u1.l = val; |
2557 | u2.d = float32_to_float64(u1.f, &env->spe_status); | |
0487d6a8 | 2558 | |
0ca9d380 | 2559 | return u2.ll; |
0487d6a8 JM |
2560 | } |
2561 | ||
1c97856d AJ |
2562 | /* Double precision fixed-point arithmetic */ |
2563 | uint64_t helper_efdadd (uint64_t op1, uint64_t op2) | |
0487d6a8 | 2564 | { |
1c97856d AJ |
2565 | CPU_DoubleU u1, u2; |
2566 | u1.ll = op1; | |
2567 | u2.ll = op2; | |
2568 | u1.d = float64_add(u1.d, u2.d, &env->spe_status); | |
2569 | return u1.ll; | |
0487d6a8 JM |
2570 | } |
2571 | ||
1c97856d | 2572 | uint64_t helper_efdsub (uint64_t op1, uint64_t op2) |
0487d6a8 | 2573 | { |
1c97856d AJ |
2574 | CPU_DoubleU u1, u2; |
2575 | u1.ll = op1; | |
2576 | u2.ll = op2; | |
2577 | u1.d = float64_sub(u1.d, u2.d, &env->spe_status); | |
2578 | return u1.ll; | |
0487d6a8 JM |
2579 | } |
2580 | ||
1c97856d | 2581 | uint64_t helper_efdmul (uint64_t op1, uint64_t op2) |
0487d6a8 | 2582 | { |
1c97856d AJ |
2583 | CPU_DoubleU u1, u2; |
2584 | u1.ll = op1; | |
2585 | u2.ll = op2; | |
2586 | u1.d = float64_mul(u1.d, u2.d, &env->spe_status); | |
2587 | return u1.ll; | |
0487d6a8 JM |
2588 | } |
2589 | ||
1c97856d | 2590 | uint64_t helper_efddiv (uint64_t op1, uint64_t op2) |
0487d6a8 | 2591 | { |
1c97856d AJ |
2592 | CPU_DoubleU u1, u2; |
2593 | u1.ll = op1; | |
2594 | u2.ll = op2; | |
2595 | u1.d = float64_div(u1.d, u2.d, &env->spe_status); | |
2596 | return u1.ll; | |
0487d6a8 JM |
2597 | } |
2598 | ||
1c97856d AJ |
2599 | /* Double precision floating point helpers */ |
2600 | uint32_t helper_efdtstlt (uint64_t op1, uint64_t op2) | |
0487d6a8 | 2601 | { |
1c97856d AJ |
2602 | CPU_DoubleU u1, u2; |
2603 | u1.ll = op1; | |
2604 | u2.ll = op2; | |
2605 | return float64_lt(u1.d, u2.d, &env->spe_status) ? 4 : 0; | |
0487d6a8 JM |
2606 | } |
2607 | ||
1c97856d | 2608 | uint32_t helper_efdtstgt (uint64_t op1, uint64_t op2) |
0487d6a8 | 2609 | { |
1c97856d AJ |
2610 | CPU_DoubleU u1, u2; |
2611 | u1.ll = op1; | |
2612 | u2.ll = op2; | |
2613 | return float64_le(u1.d, u2.d, &env->spe_status) ? 0 : 4; | |
0487d6a8 JM |
2614 | } |
2615 | ||
1c97856d | 2616 | uint32_t helper_efdtsteq (uint64_t op1, uint64_t op2) |
0487d6a8 | 2617 | { |
1c97856d AJ |
2618 | CPU_DoubleU u1, u2; |
2619 | u1.ll = op1; | |
2620 | u2.ll = op2; | |
2621 | return float64_eq(u1.d, u2.d, &env->spe_status) ? 4 : 0; | |
0487d6a8 JM |
2622 | } |
2623 | ||
1c97856d | 2624 | uint32_t helper_efdcmplt (uint64_t op1, uint64_t op2) |
0487d6a8 | 2625 | { |
1c97856d AJ |
2626 | /* XXX: TODO: test special values (NaN, infinites, ...) */ |
2627 | return helper_efdtstlt(op1, op2); | |
0487d6a8 JM |
2628 | } |
2629 | ||
1c97856d AJ |
2630 | uint32_t helper_efdcmpgt (uint64_t op1, uint64_t op2) |
2631 | { | |
2632 | /* XXX: TODO: test special values (NaN, infinites, ...) */ | |
2633 | return helper_efdtstgt(op1, op2); | |
2634 | } | |
0487d6a8 | 2635 | |
1c97856d AJ |
2636 | uint32_t helper_efdcmpeq (uint64_t op1, uint64_t op2) |
2637 | { | |
2638 | /* XXX: TODO: test special values (NaN, infinites, ...) */ | |
2639 | return helper_efdtsteq(op1, op2); | |
2640 | } | |
0487d6a8 | 2641 | |
fdabc366 FB |
2642 | /*****************************************************************************/ |
2643 | /* Softmmu support */ | |
2644 | #if !defined (CONFIG_USER_ONLY) | |
2645 | ||
2646 | #define MMUSUFFIX _mmu | |
fdabc366 FB |
2647 | |
2648 | #define SHIFT 0 | |
2649 | #include "softmmu_template.h" | |
2650 | ||
2651 | #define SHIFT 1 | |
2652 | #include "softmmu_template.h" | |
2653 | ||
2654 | #define SHIFT 2 | |
2655 | #include "softmmu_template.h" | |
2656 | ||
2657 | #define SHIFT 3 | |
2658 | #include "softmmu_template.h" | |
2659 | ||
2660 | /* try to fill the TLB and return an exception if error. If retaddr is | |
2661 | NULL, it means that the function was called in C code (i.e. not | |
2662 | from generated code or from helper.c) */ | |
2663 | /* XXX: fix it to restore all registers */ | |
6ebbf390 | 2664 | void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr) |
fdabc366 FB |
2665 | { |
2666 | TranslationBlock *tb; | |
2667 | CPUState *saved_env; | |
44f8625d | 2668 | unsigned long pc; |
fdabc366 FB |
2669 | int ret; |
2670 | ||
2671 | /* XXX: hack to restore env in all cases, even if not called from | |
2672 | generated code */ | |
2673 | saved_env = env; | |
2674 | env = cpu_single_env; | |
6ebbf390 | 2675 | ret = cpu_ppc_handle_mmu_fault(env, addr, is_write, mmu_idx, 1); |
76a66253 | 2676 | if (unlikely(ret != 0)) { |
fdabc366 FB |
2677 | if (likely(retaddr)) { |
2678 | /* now we have a real cpu fault */ | |
44f8625d | 2679 | pc = (unsigned long)retaddr; |
fdabc366 FB |
2680 | tb = tb_find_pc(pc); |
2681 | if (likely(tb)) { | |
2682 | /* the PC is inside the translated code. It means that we have | |
2683 | a virtual CPU fault */ | |
2684 | cpu_restore_state(tb, env, pc, NULL); | |
76a66253 | 2685 | } |
fdabc366 | 2686 | } |
e06fcd75 | 2687 | helper_raise_exception_err(env->exception_index, env->error_code); |
fdabc366 FB |
2688 | } |
2689 | env = saved_env; | |
9a64fbe4 FB |
2690 | } |
2691 | ||
74d37793 AJ |
2692 | /* Segment registers load and store */ |
2693 | target_ulong helper_load_sr (target_ulong sr_num) | |
2694 | { | |
2695 | return env->sr[sr_num]; | |
2696 | } | |
2697 | ||
2698 | void helper_store_sr (target_ulong sr_num, target_ulong val) | |
2699 | { | |
45d827d2 | 2700 | ppc_store_sr(env, sr_num, val); |
74d37793 AJ |
2701 | } |
2702 | ||
2703 | /* SLB management */ | |
2704 | #if defined(TARGET_PPC64) | |
2705 | target_ulong helper_load_slb (target_ulong slb_nr) | |
2706 | { | |
2707 | return ppc_load_slb(env, slb_nr); | |
2708 | } | |
2709 | ||
2710 | void helper_store_slb (target_ulong slb_nr, target_ulong rs) | |
2711 | { | |
2712 | ppc_store_slb(env, slb_nr, rs); | |
2713 | } | |
2714 | ||
2715 | void helper_slbia (void) | |
2716 | { | |
2717 | ppc_slb_invalidate_all(env); | |
2718 | } | |
2719 | ||
2720 | void helper_slbie (target_ulong addr) | |
2721 | { | |
2722 | ppc_slb_invalidate_one(env, addr); | |
2723 | } | |
2724 | ||
2725 | #endif /* defined(TARGET_PPC64) */ | |
2726 | ||
2727 | /* TLB management */ | |
2728 | void helper_tlbia (void) | |
2729 | { | |
2730 | ppc_tlb_invalidate_all(env); | |
2731 | } | |
2732 | ||
2733 | void helper_tlbie (target_ulong addr) | |
2734 | { | |
2735 | ppc_tlb_invalidate_one(env, addr); | |
2736 | } | |
2737 | ||
76a66253 JM |
2738 | /* Software driven TLBs management */ |
2739 | /* PowerPC 602/603 software TLB load instructions helpers */ | |
74d37793 | 2740 | static void do_6xx_tlb (target_ulong new_EPN, int is_code) |
76a66253 JM |
2741 | { |
2742 | target_ulong RPN, CMP, EPN; | |
2743 | int way; | |
d9bce9d9 | 2744 | |
76a66253 JM |
2745 | RPN = env->spr[SPR_RPA]; |
2746 | if (is_code) { | |
2747 | CMP = env->spr[SPR_ICMP]; | |
2748 | EPN = env->spr[SPR_IMISS]; | |
2749 | } else { | |
2750 | CMP = env->spr[SPR_DCMP]; | |
2751 | EPN = env->spr[SPR_DMISS]; | |
2752 | } | |
2753 | way = (env->spr[SPR_SRR1] >> 17) & 1; | |
2754 | #if defined (DEBUG_SOFTWARE_TLB) | |
2755 | if (loglevel != 0) { | |
0e69805a | 2756 | fprintf(logfile, "%s: EPN " ADDRX " " ADDRX " PTE0 " ADDRX |
6b542af7 | 2757 | " PTE1 " ADDRX " way %d\n", |
0e69805a | 2758 | __func__, new_EPN, EPN, CMP, RPN, way); |
76a66253 JM |
2759 | } |
2760 | #endif | |
2761 | /* Store this TLB */ | |
0f3955e2 | 2762 | ppc6xx_tlb_store(env, (uint32_t)(new_EPN & TARGET_PAGE_MASK), |
d9bce9d9 | 2763 | way, is_code, CMP, RPN); |
76a66253 JM |
2764 | } |
2765 | ||
74d37793 | 2766 | void helper_6xx_tlbd (target_ulong EPN) |
0f3955e2 | 2767 | { |
74d37793 | 2768 | do_6xx_tlb(EPN, 0); |
0f3955e2 AJ |
2769 | } |
2770 | ||
74d37793 | 2771 | void helper_6xx_tlbi (target_ulong EPN) |
0f3955e2 | 2772 | { |
74d37793 | 2773 | do_6xx_tlb(EPN, 1); |
0f3955e2 AJ |
2774 | } |
2775 | ||
2776 | /* PowerPC 74xx software TLB load instructions helpers */ | |
74d37793 | 2777 | static void do_74xx_tlb (target_ulong new_EPN, int is_code) |
7dbe11ac JM |
2778 | { |
2779 | target_ulong RPN, CMP, EPN; | |
2780 | int way; | |
2781 | ||
2782 | RPN = env->spr[SPR_PTELO]; | |
2783 | CMP = env->spr[SPR_PTEHI]; | |
2784 | EPN = env->spr[SPR_TLBMISS] & ~0x3; | |
2785 | way = env->spr[SPR_TLBMISS] & 0x3; | |
2786 | #if defined (DEBUG_SOFTWARE_TLB) | |
2787 | if (loglevel != 0) { | |
0e69805a | 2788 | fprintf(logfile, "%s: EPN " ADDRX " " ADDRX " PTE0 " ADDRX |
6b542af7 | 2789 | " PTE1 " ADDRX " way %d\n", |
0e69805a | 2790 | __func__, new_EPN, EPN, CMP, RPN, way); |
7dbe11ac JM |
2791 | } |
2792 | #endif | |
2793 | /* Store this TLB */ | |
0f3955e2 | 2794 | ppc6xx_tlb_store(env, (uint32_t)(new_EPN & TARGET_PAGE_MASK), |
7dbe11ac JM |
2795 | way, is_code, CMP, RPN); |
2796 | } | |
2797 | ||
74d37793 | 2798 | void helper_74xx_tlbd (target_ulong EPN) |
0f3955e2 | 2799 | { |
74d37793 | 2800 | do_74xx_tlb(EPN, 0); |
0f3955e2 AJ |
2801 | } |
2802 | ||
74d37793 | 2803 | void helper_74xx_tlbi (target_ulong EPN) |
0f3955e2 | 2804 | { |
74d37793 | 2805 | do_74xx_tlb(EPN, 1); |
0f3955e2 AJ |
2806 | } |
2807 | ||
a11b8151 | 2808 | static always_inline target_ulong booke_tlb_to_page_size (int size) |
a8dea12f JM |
2809 | { |
2810 | return 1024 << (2 * size); | |
2811 | } | |
2812 | ||
a11b8151 | 2813 | static always_inline int booke_page_size_to_tlb (target_ulong page_size) |
a8dea12f JM |
2814 | { |
2815 | int size; | |
2816 | ||
2817 | switch (page_size) { | |
2818 | case 0x00000400UL: | |
2819 | size = 0x0; | |
2820 | break; | |
2821 | case 0x00001000UL: | |
2822 | size = 0x1; | |
2823 | break; | |
2824 | case 0x00004000UL: | |
2825 | size = 0x2; | |
2826 | break; | |
2827 | case 0x00010000UL: | |
2828 | size = 0x3; | |
2829 | break; | |
2830 | case 0x00040000UL: | |
2831 | size = 0x4; | |
2832 | break; | |
2833 | case 0x00100000UL: | |
2834 | size = 0x5; | |
2835 | break; | |
2836 | case 0x00400000UL: | |
2837 | size = 0x6; | |
2838 | break; | |
2839 | case 0x01000000UL: | |
2840 | size = 0x7; | |
2841 | break; | |
2842 | case 0x04000000UL: | |
2843 | size = 0x8; | |
2844 | break; | |
2845 | case 0x10000000UL: | |
2846 | size = 0x9; | |
2847 | break; | |
2848 | case 0x40000000UL: | |
2849 | size = 0xA; | |
2850 | break; | |
2851 | #if defined (TARGET_PPC64) | |
2852 | case 0x000100000000ULL: | |
2853 | size = 0xB; | |
2854 | break; | |
2855 | case 0x000400000000ULL: | |
2856 | size = 0xC; | |
2857 | break; | |
2858 | case 0x001000000000ULL: | |
2859 | size = 0xD; | |
2860 | break; | |
2861 | case 0x004000000000ULL: | |
2862 | size = 0xE; | |
2863 | break; | |
2864 | case 0x010000000000ULL: | |
2865 | size = 0xF; | |
2866 | break; | |
2867 | #endif | |
2868 | default: | |
2869 | size = -1; | |
2870 | break; | |
2871 | } | |
2872 | ||
2873 | return size; | |
2874 | } | |
2875 | ||
76a66253 | 2876 | /* Helpers for 4xx TLB management */ |
74d37793 | 2877 | target_ulong helper_4xx_tlbre_lo (target_ulong entry) |
76a66253 | 2878 | { |
a8dea12f | 2879 | ppcemb_tlb_t *tlb; |
74d37793 | 2880 | target_ulong ret; |
a8dea12f | 2881 | int size; |
76a66253 | 2882 | |
74d37793 AJ |
2883 | entry &= 0x3F; |
2884 | tlb = &env->tlb[entry].tlbe; | |
2885 | ret = tlb->EPN; | |
a8dea12f | 2886 | if (tlb->prot & PAGE_VALID) |
74d37793 | 2887 | ret |= 0x400; |
a8dea12f JM |
2888 | size = booke_page_size_to_tlb(tlb->size); |
2889 | if (size < 0 || size > 0x7) | |
2890 | size = 1; | |
74d37793 | 2891 | ret |= size << 7; |
a8dea12f | 2892 | env->spr[SPR_40x_PID] = tlb->PID; |
74d37793 | 2893 | return ret; |
76a66253 JM |
2894 | } |
2895 | ||
74d37793 | 2896 | target_ulong helper_4xx_tlbre_hi (target_ulong entry) |
76a66253 | 2897 | { |
a8dea12f | 2898 | ppcemb_tlb_t *tlb; |
74d37793 | 2899 | target_ulong ret; |
76a66253 | 2900 | |
74d37793 AJ |
2901 | entry &= 0x3F; |
2902 | tlb = &env->tlb[entry].tlbe; | |
2903 | ret = tlb->RPN; | |
a8dea12f | 2904 | if (tlb->prot & PAGE_EXEC) |
74d37793 | 2905 | ret |= 0x200; |
a8dea12f | 2906 | if (tlb->prot & PAGE_WRITE) |
74d37793 AJ |
2907 | ret |= 0x100; |
2908 | return ret; | |
76a66253 JM |
2909 | } |
2910 | ||
74d37793 | 2911 | void helper_4xx_tlbwe_hi (target_ulong entry, target_ulong val) |
76a66253 | 2912 | { |
a8dea12f | 2913 | ppcemb_tlb_t *tlb; |
76a66253 JM |
2914 | target_ulong page, end; |
2915 | ||
c55e9aef | 2916 | #if defined (DEBUG_SOFTWARE_TLB) |
6b80055d | 2917 | if (loglevel != 0) { |
0e69805a | 2918 | fprintf(logfile, "%s entry %d val " ADDRX "\n", __func__, (int)entry, val); |
c55e9aef JM |
2919 | } |
2920 | #endif | |
74d37793 AJ |
2921 | entry &= 0x3F; |
2922 | tlb = &env->tlb[entry].tlbe; | |
76a66253 JM |
2923 | /* Invalidate previous TLB (if it's valid) */ |
2924 | if (tlb->prot & PAGE_VALID) { | |
2925 | end = tlb->EPN + tlb->size; | |
c55e9aef | 2926 | #if defined (DEBUG_SOFTWARE_TLB) |
6b80055d | 2927 | if (loglevel != 0) { |
c55e9aef | 2928 | fprintf(logfile, "%s: invalidate old TLB %d start " ADDRX |
74d37793 | 2929 | " end " ADDRX "\n", __func__, (int)entry, tlb->EPN, end); |
c55e9aef JM |
2930 | } |
2931 | #endif | |
76a66253 JM |
2932 | for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE) |
2933 | tlb_flush_page(env, page); | |
2934 | } | |
74d37793 | 2935 | tlb->size = booke_tlb_to_page_size((val >> 7) & 0x7); |
c294fc58 JM |
2936 | /* We cannot handle TLB size < TARGET_PAGE_SIZE. |
2937 | * If this ever occurs, one should use the ppcemb target instead | |
2938 | * of the ppc or ppc64 one | |
2939 | */ | |
74d37793 | 2940 | if ((val & 0x40) && tlb->size < TARGET_PAGE_SIZE) { |
71c8b8fd JM |
2941 | cpu_abort(env, "TLB size " TARGET_FMT_lu " < %u " |
2942 | "are not supported (%d)\n", | |
74d37793 | 2943 | tlb->size, TARGET_PAGE_SIZE, (int)((val >> 7) & 0x7)); |
c294fc58 | 2944 | } |
74d37793 AJ |
2945 | tlb->EPN = val & ~(tlb->size - 1); |
2946 | if (val & 0x40) | |
76a66253 JM |
2947 | tlb->prot |= PAGE_VALID; |
2948 | else | |
2949 | tlb->prot &= ~PAGE_VALID; | |
74d37793 | 2950 | if (val & 0x20) { |
c294fc58 JM |
2951 | /* XXX: TO BE FIXED */ |
2952 | cpu_abort(env, "Little-endian TLB entries are not supported by now\n"); | |
2953 | } | |
c55e9aef | 2954 | tlb->PID = env->spr[SPR_40x_PID]; /* PID */ |
74d37793 | 2955 | tlb->attr = val & 0xFF; |
c55e9aef | 2956 | #if defined (DEBUG_SOFTWARE_TLB) |
c294fc58 JM |
2957 | if (loglevel != 0) { |
2958 | fprintf(logfile, "%s: set up TLB %d RPN " PADDRX " EPN " ADDRX | |
c55e9aef | 2959 | " size " ADDRX " prot %c%c%c%c PID %d\n", __func__, |
0e69805a | 2960 | (int)entry, tlb->RPN, tlb->EPN, tlb->size, |
c55e9aef JM |
2961 | tlb->prot & PAGE_READ ? 'r' : '-', |
2962 | tlb->prot & PAGE_WRITE ? 'w' : '-', | |
2963 | tlb->prot & PAGE_EXEC ? 'x' : '-', | |
2964 | tlb->prot & PAGE_VALID ? 'v' : '-', (int)tlb->PID); | |
2965 | } | |
2966 | #endif | |
76a66253 JM |
2967 | /* Invalidate new TLB (if valid) */ |
2968 | if (tlb->prot & PAGE_VALID) { | |
2969 | end = tlb->EPN + tlb->size; | |
c55e9aef | 2970 | #if defined (DEBUG_SOFTWARE_TLB) |
6b80055d | 2971 | if (loglevel != 0) { |
c55e9aef | 2972 | fprintf(logfile, "%s: invalidate TLB %d start " ADDRX |
0e69805a | 2973 | " end " ADDRX "\n", __func__, (int)entry, tlb->EPN, end); |
c55e9aef JM |
2974 | } |
2975 | #endif | |
76a66253 JM |
2976 | for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE) |
2977 | tlb_flush_page(env, page); | |
2978 | } | |
76a66253 JM |
2979 | } |
2980 | ||
74d37793 | 2981 | void helper_4xx_tlbwe_lo (target_ulong entry, target_ulong val) |
76a66253 | 2982 | { |
a8dea12f | 2983 | ppcemb_tlb_t *tlb; |
76a66253 | 2984 | |
c55e9aef | 2985 | #if defined (DEBUG_SOFTWARE_TLB) |
6b80055d | 2986 | if (loglevel != 0) { |
0e69805a | 2987 | fprintf(logfile, "%s entry %i val " ADDRX "\n", __func__, (int)entry, val); |
c55e9aef JM |
2988 | } |
2989 | #endif | |
74d37793 AJ |
2990 | entry &= 0x3F; |
2991 | tlb = &env->tlb[entry].tlbe; | |
2992 | tlb->RPN = val & 0xFFFFFC00; | |
76a66253 | 2993 | tlb->prot = PAGE_READ; |
74d37793 | 2994 | if (val & 0x200) |
76a66253 | 2995 | tlb->prot |= PAGE_EXEC; |
74d37793 | 2996 | if (val & 0x100) |
76a66253 | 2997 | tlb->prot |= PAGE_WRITE; |
c55e9aef | 2998 | #if defined (DEBUG_SOFTWARE_TLB) |
6b80055d JM |
2999 | if (loglevel != 0) { |
3000 | fprintf(logfile, "%s: set up TLB %d RPN " PADDRX " EPN " ADDRX | |
c55e9aef | 3001 | " size " ADDRX " prot %c%c%c%c PID %d\n", __func__, |
74d37793 | 3002 | (int)entry, tlb->RPN, tlb->EPN, tlb->size, |
c55e9aef JM |
3003 | tlb->prot & PAGE_READ ? 'r' : '-', |
3004 | tlb->prot & PAGE_WRITE ? 'w' : '-', | |
3005 | tlb->prot & PAGE_EXEC ? 'x' : '-', | |
3006 | tlb->prot & PAGE_VALID ? 'v' : '-', (int)tlb->PID); | |
3007 | } | |
3008 | #endif | |
76a66253 | 3009 | } |
5eb7995e | 3010 | |
74d37793 AJ |
3011 | target_ulong helper_4xx_tlbsx (target_ulong address) |
3012 | { | |
3013 | return ppcemb_tlb_search(env, address, env->spr[SPR_40x_PID]); | |
3014 | } | |
3015 | ||
a4bb6c3e | 3016 | /* PowerPC 440 TLB management */ |
74d37793 | 3017 | void helper_440_tlbwe (uint32_t word, target_ulong entry, target_ulong value) |
5eb7995e JM |
3018 | { |
3019 | ppcemb_tlb_t *tlb; | |
a4bb6c3e | 3020 | target_ulong EPN, RPN, size; |
5eb7995e JM |
3021 | int do_flush_tlbs; |
3022 | ||
3023 | #if defined (DEBUG_SOFTWARE_TLB) | |
3024 | if (loglevel != 0) { | |
0e69805a AJ |
3025 | fprintf(logfile, "%s word %d entry %d value " ADDRX "\n", |
3026 | __func__, word, (int)entry, value); | |
5eb7995e JM |
3027 | } |
3028 | #endif | |
3029 | do_flush_tlbs = 0; | |
74d37793 AJ |
3030 | entry &= 0x3F; |
3031 | tlb = &env->tlb[entry].tlbe; | |
a4bb6c3e JM |
3032 | switch (word) { |
3033 | default: | |
3034 | /* Just here to please gcc */ | |
3035 | case 0: | |
74d37793 | 3036 | EPN = value & 0xFFFFFC00; |
a4bb6c3e | 3037 | if ((tlb->prot & PAGE_VALID) && EPN != tlb->EPN) |
5eb7995e | 3038 | do_flush_tlbs = 1; |
a4bb6c3e | 3039 | tlb->EPN = EPN; |
74d37793 | 3040 | size = booke_tlb_to_page_size((value >> 4) & 0xF); |
a4bb6c3e JM |
3041 | if ((tlb->prot & PAGE_VALID) && tlb->size < size) |
3042 | do_flush_tlbs = 1; | |
3043 | tlb->size = size; | |
3044 | tlb->attr &= ~0x1; | |
74d37793 AJ |
3045 | tlb->attr |= (value >> 8) & 1; |
3046 | if (value & 0x200) { | |
a4bb6c3e JM |
3047 | tlb->prot |= PAGE_VALID; |
3048 | } else { | |
3049 | if (tlb->prot & PAGE_VALID) { | |
3050 | tlb->prot &= ~PAGE_VALID; | |
3051 | do_flush_tlbs = 1; | |
3052 | } | |
5eb7995e | 3053 | } |
a4bb6c3e JM |
3054 | tlb->PID = env->spr[SPR_440_MMUCR] & 0x000000FF; |
3055 | if (do_flush_tlbs) | |
3056 | tlb_flush(env, 1); | |
3057 | break; | |
3058 | case 1: | |
74d37793 | 3059 | RPN = value & 0xFFFFFC0F; |
a4bb6c3e JM |
3060 | if ((tlb->prot & PAGE_VALID) && tlb->RPN != RPN) |
3061 | tlb_flush(env, 1); | |
3062 | tlb->RPN = RPN; | |
3063 | break; | |
3064 | case 2: | |
74d37793 | 3065 | tlb->attr = (tlb->attr & 0x1) | (value & 0x0000FF00); |
a4bb6c3e | 3066 | tlb->prot = tlb->prot & PAGE_VALID; |
74d37793 | 3067 | if (value & 0x1) |
a4bb6c3e | 3068 | tlb->prot |= PAGE_READ << 4; |
74d37793 | 3069 | if (value & 0x2) |
a4bb6c3e | 3070 | tlb->prot |= PAGE_WRITE << 4; |
74d37793 | 3071 | if (value & 0x4) |
a4bb6c3e | 3072 | tlb->prot |= PAGE_EXEC << 4; |
74d37793 | 3073 | if (value & 0x8) |
a4bb6c3e | 3074 | tlb->prot |= PAGE_READ; |
74d37793 | 3075 | if (value & 0x10) |
a4bb6c3e | 3076 | tlb->prot |= PAGE_WRITE; |
74d37793 | 3077 | if (value & 0x20) |
a4bb6c3e JM |
3078 | tlb->prot |= PAGE_EXEC; |
3079 | break; | |
5eb7995e | 3080 | } |
5eb7995e JM |
3081 | } |
3082 | ||
74d37793 | 3083 | target_ulong helper_440_tlbre (uint32_t word, target_ulong entry) |
5eb7995e JM |
3084 | { |
3085 | ppcemb_tlb_t *tlb; | |
74d37793 | 3086 | target_ulong ret; |
5eb7995e JM |
3087 | int size; |
3088 | ||
74d37793 AJ |
3089 | entry &= 0x3F; |
3090 | tlb = &env->tlb[entry].tlbe; | |
a4bb6c3e JM |
3091 | switch (word) { |
3092 | default: | |
3093 | /* Just here to please gcc */ | |
3094 | case 0: | |
74d37793 | 3095 | ret = tlb->EPN; |
a4bb6c3e JM |
3096 | size = booke_page_size_to_tlb(tlb->size); |
3097 | if (size < 0 || size > 0xF) | |
3098 | size = 1; | |
74d37793 | 3099 | ret |= size << 4; |
a4bb6c3e | 3100 | if (tlb->attr & 0x1) |
74d37793 | 3101 | ret |= 0x100; |
a4bb6c3e | 3102 | if (tlb->prot & PAGE_VALID) |
74d37793 | 3103 | ret |= 0x200; |
a4bb6c3e JM |
3104 | env->spr[SPR_440_MMUCR] &= ~0x000000FF; |
3105 | env->spr[SPR_440_MMUCR] |= tlb->PID; | |
3106 | break; | |
3107 | case 1: | |
74d37793 | 3108 | ret = tlb->RPN; |
a4bb6c3e JM |
3109 | break; |
3110 | case 2: | |
74d37793 | 3111 | ret = tlb->attr & ~0x1; |
a4bb6c3e | 3112 | if (tlb->prot & (PAGE_READ << 4)) |
74d37793 | 3113 | ret |= 0x1; |
a4bb6c3e | 3114 | if (tlb->prot & (PAGE_WRITE << 4)) |
74d37793 | 3115 | ret |= 0x2; |
a4bb6c3e | 3116 | if (tlb->prot & (PAGE_EXEC << 4)) |
74d37793 | 3117 | ret |= 0x4; |
a4bb6c3e | 3118 | if (tlb->prot & PAGE_READ) |
74d37793 | 3119 | ret |= 0x8; |
a4bb6c3e | 3120 | if (tlb->prot & PAGE_WRITE) |
74d37793 | 3121 | ret |= 0x10; |
a4bb6c3e | 3122 | if (tlb->prot & PAGE_EXEC) |
74d37793 | 3123 | ret |= 0x20; |
a4bb6c3e JM |
3124 | break; |
3125 | } | |
74d37793 | 3126 | return ret; |
5eb7995e | 3127 | } |
74d37793 AJ |
3128 | |
3129 | target_ulong helper_440_tlbsx (target_ulong address) | |
3130 | { | |
3131 | return ppcemb_tlb_search(env, address, env->spr[SPR_440_MMUCR] & 0xFF); | |
3132 | } | |
3133 | ||
76a66253 | 3134 | #endif /* !CONFIG_USER_ONLY */ |