]> git.proxmox.com Git - qemu.git/blame - target-sh4/op_helper.c
Merge remote-tracking branch 'kiszka/queues/slirp' into staging
[qemu.git] / target-sh4 / op_helper.c
CommitLineData
fdf9b3e8
FB
1/*
2 * SH4 emulation
5fafdf24 3 *
fdf9b3e8
FB
4 * Copyright (c) 2005 Samuel Tardieu
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
fdf9b3e8
FB
18 */
19#include <assert.h>
852d481f 20#include <stdlib.h>
3e457172 21#include "cpu.h"
a7812ae4 22#include "helper.h"
fdf9b3e8 23
10127400
AJ
24static inline void cpu_restore_state_from_retaddr(CPUSH4State *env,
25 uintptr_t retaddr)
21829e9b
AJ
26{
27 TranslationBlock *tb;
21829e9b
AJ
28
29 if (retaddr) {
20503968 30 tb = tb_find_pc(retaddr);
21829e9b
AJ
31 if (tb) {
32 /* the PC is inside the translated code. It means that we have
33 a virtual CPU fault */
20503968 34 cpu_restore_state(tb, env, retaddr);
21829e9b
AJ
35 }
36 }
37}
38
fdf9b3e8 39#ifndef CONFIG_USER_ONLY
3e457172 40#include "softmmu_exec.h"
fdf9b3e8
FB
41
42#define MMUSUFFIX _mmu
fdf9b3e8
FB
43
44#define SHIFT 0
45#include "softmmu_template.h"
46
47#define SHIFT 1
48#include "softmmu_template.h"
49
50#define SHIFT 2
51#include "softmmu_template.h"
52
53#define SHIFT 3
54#include "softmmu_template.h"
55
485d0035 56void tlb_fill(CPUSH4State *env, target_ulong addr, int is_write, int mmu_idx,
20503968 57 uintptr_t retaddr)
fdf9b3e8 58{
fdf9b3e8
FB
59 int ret;
60
97b348e7 61 ret = cpu_sh4_handle_mmu_fault(env, addr, is_write, mmu_idx);
fdf9b3e8 62 if (ret) {
21829e9b 63 /* now we have a real cpu fault */
485d0035 64 cpu_restore_state_from_retaddr(env, retaddr);
1162c041 65 cpu_loop_exit(env);
fdf9b3e8 66 }
fdf9b3e8
FB
67}
68
69#endif
70
485d0035 71void helper_ldtlb(CPUSH4State *env)
ea2b542a
AJ
72{
73#ifdef CONFIG_USER_ONLY
74 /* XXXXX */
43dc2a64 75 cpu_abort(env, "Unhandled ldtlb");
ea2b542a
AJ
76#else
77 cpu_load_tlb(env);
78#endif
79}
80
10127400
AJ
81static inline void QEMU_NORETURN raise_exception(CPUSH4State *env, int index,
82 uintptr_t retaddr)
e6afc2f4 83{
fd4bab10 84 env->exception_index = index;
485d0035 85 cpu_restore_state_from_retaddr(env, retaddr);
1162c041 86 cpu_loop_exit(env);
e6afc2f4
AJ
87}
88
485d0035 89void helper_raise_illegal_instruction(CPUSH4State *env)
fd4bab10 90{
10127400 91 raise_exception(env, 0x180, 0);
fd4bab10
AJ
92}
93
485d0035 94void helper_raise_slot_illegal_instruction(CPUSH4State *env)
e6afc2f4 95{
10127400 96 raise_exception(env, 0x1a0, 0);
e6afc2f4
AJ
97}
98
485d0035 99void helper_raise_fpu_disable(CPUSH4State *env)
d8299bcc 100{
10127400 101 raise_exception(env, 0x800, 0);
d8299bcc
AJ
102}
103
485d0035 104void helper_raise_slot_fpu_disable(CPUSH4State *env)
d8299bcc 105{
10127400 106 raise_exception(env, 0x820, 0);
d8299bcc
AJ
107}
108
485d0035 109void helper_debug(CPUSH4State *env)
e6afc2f4 110{
10127400 111 raise_exception(env, EXCP_DEBUG, 0);
e6afc2f4
AJ
112}
113
10127400 114void helper_sleep(CPUSH4State *env)
e6afc2f4
AJ
115{
116 env->halted = 1;
efac4154 117 env->in_sleep = 1;
10127400 118 raise_exception(env, EXCP_HLT, 0);
e6afc2f4
AJ
119}
120
485d0035 121void helper_trapa(CPUSH4State *env, uint32_t tra)
e6afc2f4
AJ
122{
123 env->tra = tra << 2;
10127400 124 raise_exception(env, 0x160, 0);
e6afc2f4
AJ
125}
126
485d0035 127void helper_movcal(CPUSH4State *env, uint32_t address, uint32_t value)
852d481f
EI
128{
129 if (cpu_sh4_is_cached (env, address))
130 {
131 memory_content *r = malloc (sizeof(memory_content));
132 r->address = address;
133 r->value = value;
134 r->next = NULL;
135
136 *(env->movcal_backup_tail) = r;
137 env->movcal_backup_tail = &(r->next);
138 }
139}
140
485d0035 141void helper_discard_movcal_backup(CPUSH4State *env)
852d481f
EI
142{
143 memory_content *current = env->movcal_backup;
144
145 while(current)
146 {
147 memory_content *next = current->next;
148 free (current);
149 env->movcal_backup = current = next;
b9d38e95 150 if (current == NULL)
852d481f
EI
151 env->movcal_backup_tail = &(env->movcal_backup);
152 }
153}
154
485d0035 155void helper_ocbi(CPUSH4State *env, uint32_t address)
852d481f
EI
156{
157 memory_content **current = &(env->movcal_backup);
158 while (*current)
159 {
160 uint32_t a = (*current)->address;
161 if ((a & ~0x1F) == (address & ~0x1F))
162 {
163 memory_content *next = (*current)->next;
485d0035 164 cpu_stl_data(env, a, (*current)->value);
852d481f 165
b9d38e95 166 if (next == NULL)
852d481f
EI
167 {
168 env->movcal_backup_tail = current;
169 }
170
171 free (*current);
172 *current = next;
173 break;
174 }
175 }
176}
177
fdf9b3e8
FB
178#define T (env->sr & SR_T)
179#define Q (env->sr & SR_Q ? 1 : 0)
180#define M (env->sr & SR_M ? 1 : 0)
181#define SETT env->sr |= SR_T
182#define CLRT env->sr &= ~SR_T
183#define SETQ env->sr |= SR_Q
184#define CLRQ env->sr &= ~SR_Q
185#define SETM env->sr |= SR_M
186#define CLRM env->sr &= ~SR_M
187
485d0035 188uint32_t helper_div1(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
fdf9b3e8
FB
189{
190 uint32_t tmp0, tmp2;
191 uint8_t old_q, tmp1 = 0xff;
192
69d6275b 193 //printf("div1 arg0=0x%08x arg1=0x%08x M=%d Q=%d T=%d\n", arg0, arg1, M, Q, T);
fdf9b3e8 194 old_q = Q;
69d6275b 195 if ((0x80000000 & arg1) != 0)
fdf9b3e8
FB
196 SETQ;
197 else
198 CLRQ;
69d6275b
AJ
199 tmp2 = arg0;
200 arg1 <<= 1;
201 arg1 |= T;
fdf9b3e8
FB
202 switch (old_q) {
203 case 0:
204 switch (M) {
205 case 0:
69d6275b
AJ
206 tmp0 = arg1;
207 arg1 -= tmp2;
208 tmp1 = arg1 > tmp0;
fdf9b3e8
FB
209 switch (Q) {
210 case 0:
211 if (tmp1)
212 SETQ;
213 else
214 CLRQ;
215 break;
216 case 1:
217 if (tmp1 == 0)
218 SETQ;
219 else
220 CLRQ;
221 break;
222 }
223 break;
224 case 1:
69d6275b
AJ
225 tmp0 = arg1;
226 arg1 += tmp2;
227 tmp1 = arg1 < tmp0;
fdf9b3e8
FB
228 switch (Q) {
229 case 0:
230 if (tmp1 == 0)
231 SETQ;
232 else
233 CLRQ;
234 break;
235 case 1:
236 if (tmp1)
237 SETQ;
238 else
239 CLRQ;
240 break;
241 }
242 break;
243 }
244 break;
245 case 1:
246 switch (M) {
247 case 0:
69d6275b
AJ
248 tmp0 = arg1;
249 arg1 += tmp2;
250 tmp1 = arg1 < tmp0;
fdf9b3e8
FB
251 switch (Q) {
252 case 0:
253 if (tmp1)
254 SETQ;
255 else
256 CLRQ;
257 break;
258 case 1:
259 if (tmp1 == 0)
260 SETQ;
261 else
262 CLRQ;
263 break;
264 }
265 break;
266 case 1:
69d6275b
AJ
267 tmp0 = arg1;
268 arg1 -= tmp2;
269 tmp1 = arg1 > tmp0;
fdf9b3e8
FB
270 switch (Q) {
271 case 0:
272 if (tmp1 == 0)
273 SETQ;
274 else
275 CLRQ;
276 break;
277 case 1:
278 if (tmp1)
279 SETQ;
280 else
281 CLRQ;
282 break;
283 }
284 break;
285 }
286 break;
287 }
288 if (Q == M)
289 SETT;
290 else
291 CLRT;
69d6275b
AJ
292 //printf("Output: arg1=0x%08x M=%d Q=%d T=%d\n", arg1, M, Q, T);
293 return arg1;
fdf9b3e8
FB
294}
295
485d0035 296void helper_macl(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
fdf9b3e8
FB
297{
298 int64_t res;
299
300 res = ((uint64_t) env->mach << 32) | env->macl;
6f06939b 301 res += (int64_t) (int32_t) arg0 *(int64_t) (int32_t) arg1;
fdf9b3e8
FB
302 env->mach = (res >> 32) & 0xffffffff;
303 env->macl = res & 0xffffffff;
304 if (env->sr & SR_S) {
305 if (res < 0)
306 env->mach |= 0xffff0000;
307 else
308 env->mach &= 0x00007fff;
309 }
310}
311
485d0035 312void helper_macw(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
fdf9b3e8
FB
313{
314 int64_t res;
315
316 res = ((uint64_t) env->mach << 32) | env->macl;
6f06939b 317 res += (int64_t) (int16_t) arg0 *(int64_t) (int16_t) arg1;
fdf9b3e8
FB
318 env->mach = (res >> 32) & 0xffffffff;
319 env->macl = res & 0xffffffff;
320 if (env->sr & SR_S) {
321 if (res < -0x80000000) {
322 env->mach = 1;
323 env->macl = 0x80000000;
324 } else if (res > 0x000000007fffffff) {
325 env->mach = 1;
326 env->macl = 0x7fffffff;
327 }
328 }
329}
330
485d0035 331static inline void set_t(CPUSH4State *env)
cc4ba6a9
AJ
332{
333 env->sr |= SR_T;
334}
335
485d0035 336static inline void clr_t(CPUSH4State *env)
cc4ba6a9
AJ
337{
338 env->sr &= ~SR_T;
339}
340
485d0035 341void helper_ld_fpscr(CPUSH4State *env, uint32_t val)
390af821 342{
26ac1ea5
AJ
343 env->fpscr = val & FPSCR_MASK;
344 if ((val & FPSCR_RM_MASK) == FPSCR_RM_ZERO) {
390af821 345 set_float_rounding_mode(float_round_to_zero, &env->fp_status);
26ac1ea5 346 } else {
390af821 347 set_float_rounding_mode(float_round_nearest_even, &env->fp_status);
26ac1ea5 348 }
a0d4ac33 349 set_flush_to_zero((val & FPSCR_DN) != 0, &env->fp_status);
390af821 350}
cc4ba6a9 351
485d0035 352static void update_fpscr(CPUSH4State *env, uintptr_t retaddr)
21829e9b
AJ
353{
354 int xcpt, cause, enable;
355
356 xcpt = get_float_exception_flags(&env->fp_status);
357
358 /* Clear the flag entries */
359 env->fpscr &= ~FPSCR_FLAG_MASK;
360
361 if (unlikely(xcpt)) {
362 if (xcpt & float_flag_invalid) {
363 env->fpscr |= FPSCR_FLAG_V;
364 }
365 if (xcpt & float_flag_divbyzero) {
366 env->fpscr |= FPSCR_FLAG_Z;
367 }
368 if (xcpt & float_flag_overflow) {
369 env->fpscr |= FPSCR_FLAG_O;
370 }
371 if (xcpt & float_flag_underflow) {
372 env->fpscr |= FPSCR_FLAG_U;
373 }
374 if (xcpt & float_flag_inexact) {
375 env->fpscr |= FPSCR_FLAG_I;
376 }
377
378 /* Accumulate in cause entries */
379 env->fpscr |= (env->fpscr & FPSCR_FLAG_MASK)
380 << (FPSCR_CAUSE_SHIFT - FPSCR_FLAG_SHIFT);
381
382 /* Generate an exception if enabled */
383 cause = (env->fpscr & FPSCR_CAUSE_MASK) >> FPSCR_CAUSE_SHIFT;
384 enable = (env->fpscr & FPSCR_ENABLE_MASK) >> FPSCR_ENABLE_SHIFT;
385 if (cause & enable) {
10127400 386 raise_exception(env, 0x120, retaddr);
21829e9b
AJ
387 }
388 }
389}
390
d6c424c5 391float32 helper_fabs_FT(float32 t0)
cc4ba6a9 392{
d6c424c5 393 return float32_abs(t0);
cc4ba6a9
AJ
394}
395
d6c424c5 396float64 helper_fabs_DT(float64 t0)
cc4ba6a9 397{
d6c424c5 398 return float64_abs(t0);
cc4ba6a9
AJ
399}
400
485d0035 401float32 helper_fadd_FT(CPUSH4State *env, float32 t0, float32 t1)
cc4ba6a9 402{
21829e9b 403 set_float_exception_flags(0, &env->fp_status);
d6c424c5 404 t0 = float32_add(t0, t1, &env->fp_status);
485d0035 405 update_fpscr(env, GETPC());
d6c424c5 406 return t0;
cc4ba6a9
AJ
407}
408
485d0035 409float64 helper_fadd_DT(CPUSH4State *env, float64 t0, float64 t1)
cc4ba6a9 410{
21829e9b 411 set_float_exception_flags(0, &env->fp_status);
d6c424c5 412 t0 = float64_add(t0, t1, &env->fp_status);
485d0035 413 update_fpscr(env, GETPC());
d6c424c5 414 return t0;
cc4ba6a9
AJ
415}
416
485d0035 417void helper_fcmp_eq_FT(CPUSH4State *env, float32 t0, float32 t1)
cc4ba6a9 418{
21829e9b 419 int relation;
9850d1e8 420
21829e9b 421 set_float_exception_flags(0, &env->fp_status);
d6c424c5 422 relation = float32_compare(t0, t1, &env->fp_status);
21829e9b 423 if (unlikely(relation == float_relation_unordered)) {
485d0035 424 update_fpscr(env, GETPC());
21829e9b 425 } else if (relation == float_relation_equal) {
485d0035 426 set_t(env);
21829e9b 427 } else {
485d0035 428 clr_t(env);
21829e9b 429 }
cc4ba6a9
AJ
430}
431
485d0035 432void helper_fcmp_eq_DT(CPUSH4State *env, float64 t0, float64 t1)
cc4ba6a9 433{
21829e9b 434 int relation;
9850d1e8 435
21829e9b 436 set_float_exception_flags(0, &env->fp_status);
d6c424c5 437 relation = float64_compare(t0, t1, &env->fp_status);
21829e9b 438 if (unlikely(relation == float_relation_unordered)) {
485d0035 439 update_fpscr(env, GETPC());
21829e9b 440 } else if (relation == float_relation_equal) {
485d0035 441 set_t(env);
21829e9b 442 } else {
485d0035 443 clr_t(env);
21829e9b 444 }
cc4ba6a9
AJ
445}
446
485d0035 447void helper_fcmp_gt_FT(CPUSH4State *env, float32 t0, float32 t1)
cc4ba6a9 448{
21829e9b 449 int relation;
9850d1e8 450
21829e9b 451 set_float_exception_flags(0, &env->fp_status);
d6c424c5 452 relation = float32_compare(t0, t1, &env->fp_status);
21829e9b 453 if (unlikely(relation == float_relation_unordered)) {
485d0035 454 update_fpscr(env, GETPC());
21829e9b 455 } else if (relation == float_relation_greater) {
485d0035 456 set_t(env);
21829e9b 457 } else {
485d0035 458 clr_t(env);
21829e9b 459 }
cc4ba6a9
AJ
460}
461
485d0035 462void helper_fcmp_gt_DT(CPUSH4State *env, float64 t0, float64 t1)
cc4ba6a9 463{
21829e9b 464 int relation;
9850d1e8 465
21829e9b 466 set_float_exception_flags(0, &env->fp_status);
d6c424c5 467 relation = float64_compare(t0, t1, &env->fp_status);
21829e9b 468 if (unlikely(relation == float_relation_unordered)) {
485d0035 469 update_fpscr(env, GETPC());
21829e9b 470 } else if (relation == float_relation_greater) {
485d0035 471 set_t(env);
21829e9b 472 } else {
485d0035 473 clr_t(env);
21829e9b 474 }
cc4ba6a9
AJ
475}
476
485d0035 477float64 helper_fcnvsd_FT_DT(CPUSH4State *env, float32 t0)
cc4ba6a9 478{
d6c424c5 479 float64 ret;
21829e9b 480 set_float_exception_flags(0, &env->fp_status);
d6c424c5 481 ret = float32_to_float64(t0, &env->fp_status);
485d0035 482 update_fpscr(env, GETPC());
d6c424c5 483 return ret;
cc4ba6a9
AJ
484}
485
485d0035 486float32 helper_fcnvds_DT_FT(CPUSH4State *env, float64 t0)
cc4ba6a9 487{
d6c424c5 488 float32 ret;
21829e9b 489 set_float_exception_flags(0, &env->fp_status);
d6c424c5 490 ret = float64_to_float32(t0, &env->fp_status);
485d0035 491 update_fpscr(env, GETPC());
d6c424c5 492 return ret;
cc4ba6a9
AJ
493}
494
485d0035 495float32 helper_fdiv_FT(CPUSH4State *env, float32 t0, float32 t1)
cc4ba6a9 496{
21829e9b 497 set_float_exception_flags(0, &env->fp_status);
d6c424c5 498 t0 = float32_div(t0, t1, &env->fp_status);
485d0035 499 update_fpscr(env, GETPC());
d6c424c5 500 return t0;
cc4ba6a9
AJ
501}
502
485d0035 503float64 helper_fdiv_DT(CPUSH4State *env, float64 t0, float64 t1)
cc4ba6a9 504{
21829e9b 505 set_float_exception_flags(0, &env->fp_status);
d6c424c5 506 t0 = float64_div(t0, t1, &env->fp_status);
485d0035 507 update_fpscr(env, GETPC());
d6c424c5 508 return t0;
cc4ba6a9
AJ
509}
510
485d0035 511float32 helper_float_FT(CPUSH4State *env, uint32_t t0)
cc4ba6a9 512{
d6c424c5 513 float32 ret;
21829e9b 514 set_float_exception_flags(0, &env->fp_status);
d6c424c5 515 ret = int32_to_float32(t0, &env->fp_status);
485d0035 516 update_fpscr(env, GETPC());
d6c424c5 517 return ret;
cc4ba6a9
AJ
518}
519
485d0035 520float64 helper_float_DT(CPUSH4State *env, uint32_t t0)
cc4ba6a9 521{
d6c424c5 522 float64 ret;
21829e9b 523 set_float_exception_flags(0, &env->fp_status);
d6c424c5 524 ret = int32_to_float64(t0, &env->fp_status);
485d0035 525 update_fpscr(env, GETPC());
d6c424c5 526 return ret;
cc4ba6a9
AJ
527}
528
485d0035 529float32 helper_fmac_FT(CPUSH4State *env, float32 t0, float32 t1, float32 t2)
5b7141a1 530{
21829e9b 531 set_float_exception_flags(0, &env->fp_status);
ff2086fe 532 t0 = float32_muladd(t0, t1, t2, 0, &env->fp_status);
485d0035 533 update_fpscr(env, GETPC());
d6c424c5 534 return t0;
5b7141a1
AJ
535}
536
485d0035 537float32 helper_fmul_FT(CPUSH4State *env, float32 t0, float32 t1)
cc4ba6a9 538{
21829e9b 539 set_float_exception_flags(0, &env->fp_status);
d6c424c5 540 t0 = float32_mul(t0, t1, &env->fp_status);
485d0035 541 update_fpscr(env, GETPC());
d6c424c5 542 return t0;
cc4ba6a9
AJ
543}
544
485d0035 545float64 helper_fmul_DT(CPUSH4State *env, float64 t0, float64 t1)
cc4ba6a9 546{
21829e9b 547 set_float_exception_flags(0, &env->fp_status);
d6c424c5 548 t0 = float64_mul(t0, t1, &env->fp_status);
485d0035 549 update_fpscr(env, GETPC());
d6c424c5 550 return t0;
cc4ba6a9
AJ
551}
552
d6c424c5 553float32 helper_fneg_T(float32 t0)
7fdf924f 554{
d6c424c5 555 return float32_chs(t0);
7fdf924f
AJ
556}
557
485d0035 558float32 helper_fsqrt_FT(CPUSH4State *env, float32 t0)
cc4ba6a9 559{
21829e9b 560 set_float_exception_flags(0, &env->fp_status);
d6c424c5 561 t0 = float32_sqrt(t0, &env->fp_status);
485d0035 562 update_fpscr(env, GETPC());
d6c424c5 563 return t0;
cc4ba6a9
AJ
564}
565
485d0035 566float64 helper_fsqrt_DT(CPUSH4State *env, float64 t0)
cc4ba6a9 567{
21829e9b 568 set_float_exception_flags(0, &env->fp_status);
d6c424c5 569 t0 = float64_sqrt(t0, &env->fp_status);
485d0035 570 update_fpscr(env, GETPC());
d6c424c5 571 return t0;
cc4ba6a9
AJ
572}
573
485d0035 574float32 helper_fsub_FT(CPUSH4State *env, float32 t0, float32 t1)
cc4ba6a9 575{
21829e9b 576 set_float_exception_flags(0, &env->fp_status);
d6c424c5 577 t0 = float32_sub(t0, t1, &env->fp_status);
485d0035 578 update_fpscr(env, GETPC());
d6c424c5 579 return t0;
cc4ba6a9
AJ
580}
581
485d0035 582float64 helper_fsub_DT(CPUSH4State *env, float64 t0, float64 t1)
cc4ba6a9 583{
21829e9b 584 set_float_exception_flags(0, &env->fp_status);
d6c424c5 585 t0 = float64_sub(t0, t1, &env->fp_status);
485d0035 586 update_fpscr(env, GETPC());
d6c424c5 587 return t0;
cc4ba6a9
AJ
588}
589
485d0035 590uint32_t helper_ftrc_FT(CPUSH4State *env, float32 t0)
cc4ba6a9 591{
21829e9b 592 uint32_t ret;
21829e9b 593 set_float_exception_flags(0, &env->fp_status);
d6c424c5 594 ret = float32_to_int32_round_to_zero(t0, &env->fp_status);
485d0035 595 update_fpscr(env, GETPC());
21829e9b 596 return ret;
cc4ba6a9
AJ
597}
598
485d0035 599uint32_t helper_ftrc_DT(CPUSH4State *env, float64 t0)
cc4ba6a9 600{
21829e9b 601 uint32_t ret;
21829e9b 602 set_float_exception_flags(0, &env->fp_status);
d6c424c5 603 ret = float64_to_int32_round_to_zero(t0, &env->fp_status);
485d0035 604 update_fpscr(env, GETPC());
21829e9b 605 return ret;
cc4ba6a9 606}
af8c2bde 607
485d0035 608void helper_fipr(CPUSH4State *env, uint32_t m, uint32_t n)
af8c2bde
AJ
609{
610 int bank, i;
611 float32 r, p;
612
613 bank = (env->sr & FPSCR_FR) ? 16 : 0;
614 r = float32_zero;
615 set_float_exception_flags(0, &env->fp_status);
616
617 for (i = 0 ; i < 4 ; i++) {
618 p = float32_mul(env->fregs[bank + m + i],
619 env->fregs[bank + n + i],
620 &env->fp_status);
621 r = float32_add(r, p, &env->fp_status);
622 }
485d0035 623 update_fpscr(env, GETPC());
af8c2bde
AJ
624
625 env->fregs[bank + n + 3] = r;
626}
17075f10 627
485d0035 628void helper_ftrv(CPUSH4State *env, uint32_t n)
17075f10
AJ
629{
630 int bank_matrix, bank_vector;
631 int i, j;
632 float32 r[4];
633 float32 p;
634
635 bank_matrix = (env->sr & FPSCR_FR) ? 0 : 16;
636 bank_vector = (env->sr & FPSCR_FR) ? 16 : 0;
637 set_float_exception_flags(0, &env->fp_status);
638 for (i = 0 ; i < 4 ; i++) {
639 r[i] = float32_zero;
640 for (j = 0 ; j < 4 ; j++) {
641 p = float32_mul(env->fregs[bank_matrix + 4 * j + i],
642 env->fregs[bank_vector + j],
643 &env->fp_status);
644 r[i] = float32_add(r[i], p, &env->fp_status);
645 }
646 }
485d0035 647 update_fpscr(env, GETPC());
17075f10
AJ
648
649 for (i = 0 ; i < 4 ; i++) {
650 env->fregs[bank_vector + i] = r[i];
651 }
652}