4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2005-2007 CodeSourcery
6 * Copyright (c) 2007 OpenedHand, Ltd.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
37 #define ENABLE_ARCH_4T arm_feature(env, ARM_FEATURE_V4T)
38 #define ENABLE_ARCH_5 arm_feature(env, ARM_FEATURE_V5)
39 /* currently all emulated v5 cores are also v5TE, so don't bother */
40 #define ENABLE_ARCH_5TE arm_feature(env, ARM_FEATURE_V5)
41 #define ENABLE_ARCH_5J 0
42 #define ENABLE_ARCH_6 arm_feature(env, ARM_FEATURE_V6)
43 #define ENABLE_ARCH_6K arm_feature(env, ARM_FEATURE_V6K)
44 #define ENABLE_ARCH_6T2 arm_feature(env, ARM_FEATURE_THUMB2)
45 #define ENABLE_ARCH_7 arm_feature(env, ARM_FEATURE_V7)
47 #define ARCH(x) do { if (!ENABLE_ARCH_##x) goto illegal_op; } while(0)
49 /* internal defines */
50 typedef struct DisasContext
{
53 /* Nonzero if this instruction has been conditionally skipped. */
55 /* The label that will be jumped to when the instruction is skipped. */
57 /* Thumb-2 condtional execution bits. */
60 struct TranslationBlock
*tb
;
61 int singlestep_enabled
;
63 #if !defined(CONFIG_USER_ONLY)
71 static uint32_t gen_opc_condexec_bits
[OPC_BUF_SIZE
];
73 #if defined(CONFIG_USER_ONLY)
76 #define IS_USER(s) (s->user)
79 /* These instructions trap after executing, so defer them until after the
80 conditional executions state has been updated. */
84 static TCGv_ptr cpu_env
;
85 /* We reuse the same 64-bit temporaries for efficiency. */
86 static TCGv_i64 cpu_V0
, cpu_V1
, cpu_M0
;
87 static TCGv_i32 cpu_R
[16];
88 static TCGv_i32 cpu_exclusive_addr
;
89 static TCGv_i32 cpu_exclusive_val
;
90 static TCGv_i32 cpu_exclusive_high
;
91 #ifdef CONFIG_USER_ONLY
92 static TCGv_i32 cpu_exclusive_test
;
93 static TCGv_i32 cpu_exclusive_info
;
96 /* FIXME: These should be removed. */
97 static TCGv cpu_F0s
, cpu_F1s
;
98 static TCGv_i64 cpu_F0d
, cpu_F1d
;
100 #include "gen-icount.h"
102 static const char *regnames
[] =
103 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
104 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "pc" };
106 /* initialize TCG globals. */
107 void arm_translate_init(void)
111 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
113 for (i
= 0; i
< 16; i
++) {
114 cpu_R
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
115 offsetof(CPUState
, regs
[i
]),
118 cpu_exclusive_addr
= tcg_global_mem_new_i32(TCG_AREG0
,
119 offsetof(CPUState
, exclusive_addr
), "exclusive_addr");
120 cpu_exclusive_val
= tcg_global_mem_new_i32(TCG_AREG0
,
121 offsetof(CPUState
, exclusive_val
), "exclusive_val");
122 cpu_exclusive_high
= tcg_global_mem_new_i32(TCG_AREG0
,
123 offsetof(CPUState
, exclusive_high
), "exclusive_high");
124 #ifdef CONFIG_USER_ONLY
125 cpu_exclusive_test
= tcg_global_mem_new_i32(TCG_AREG0
,
126 offsetof(CPUState
, exclusive_test
), "exclusive_test");
127 cpu_exclusive_info
= tcg_global_mem_new_i32(TCG_AREG0
,
128 offsetof(CPUState
, exclusive_info
), "exclusive_info");
135 static inline TCGv
load_cpu_offset(int offset
)
137 TCGv tmp
= tcg_temp_new_i32();
138 tcg_gen_ld_i32(tmp
, cpu_env
, offset
);
142 #define load_cpu_field(name) load_cpu_offset(offsetof(CPUState, name))
144 static inline void store_cpu_offset(TCGv var
, int offset
)
146 tcg_gen_st_i32(var
, cpu_env
, offset
);
147 tcg_temp_free_i32(var
);
150 #define store_cpu_field(var, name) \
151 store_cpu_offset(var, offsetof(CPUState, name))
153 /* Set a variable to the value of a CPU register. */
154 static void load_reg_var(DisasContext
*s
, TCGv var
, int reg
)
158 /* normaly, since we updated PC, we need only to add one insn */
160 addr
= (long)s
->pc
+ 2;
162 addr
= (long)s
->pc
+ 4;
163 tcg_gen_movi_i32(var
, addr
);
165 tcg_gen_mov_i32(var
, cpu_R
[reg
]);
169 /* Create a new temporary and set it to the value of a CPU register. */
170 static inline TCGv
load_reg(DisasContext
*s
, int reg
)
172 TCGv tmp
= tcg_temp_new_i32();
173 load_reg_var(s
, tmp
, reg
);
177 /* Set a CPU register. The source must be a temporary and will be
179 static void store_reg(DisasContext
*s
, int reg
, TCGv var
)
182 tcg_gen_andi_i32(var
, var
, ~1);
183 s
->is_jmp
= DISAS_JUMP
;
185 tcg_gen_mov_i32(cpu_R
[reg
], var
);
186 tcg_temp_free_i32(var
);
189 /* Value extensions. */
190 #define gen_uxtb(var) tcg_gen_ext8u_i32(var, var)
191 #define gen_uxth(var) tcg_gen_ext16u_i32(var, var)
192 #define gen_sxtb(var) tcg_gen_ext8s_i32(var, var)
193 #define gen_sxth(var) tcg_gen_ext16s_i32(var, var)
195 #define gen_sxtb16(var) gen_helper_sxtb16(var, var)
196 #define gen_uxtb16(var) gen_helper_uxtb16(var, var)
199 static inline void gen_set_cpsr(TCGv var
, uint32_t mask
)
201 TCGv tmp_mask
= tcg_const_i32(mask
);
202 gen_helper_cpsr_write(var
, tmp_mask
);
203 tcg_temp_free_i32(tmp_mask
);
205 /* Set NZCV flags from the high 4 bits of var. */
206 #define gen_set_nzcv(var) gen_set_cpsr(var, CPSR_NZCV)
208 static void gen_exception(int excp
)
210 TCGv tmp
= tcg_temp_new_i32();
211 tcg_gen_movi_i32(tmp
, excp
);
212 gen_helper_exception(tmp
);
213 tcg_temp_free_i32(tmp
);
216 static void gen_smul_dual(TCGv a
, TCGv b
)
218 TCGv tmp1
= tcg_temp_new_i32();
219 TCGv tmp2
= tcg_temp_new_i32();
220 tcg_gen_ext16s_i32(tmp1
, a
);
221 tcg_gen_ext16s_i32(tmp2
, b
);
222 tcg_gen_mul_i32(tmp1
, tmp1
, tmp2
);
223 tcg_temp_free_i32(tmp2
);
224 tcg_gen_sari_i32(a
, a
, 16);
225 tcg_gen_sari_i32(b
, b
, 16);
226 tcg_gen_mul_i32(b
, b
, a
);
227 tcg_gen_mov_i32(a
, tmp1
);
228 tcg_temp_free_i32(tmp1
);
231 /* Byteswap each halfword. */
232 static void gen_rev16(TCGv var
)
234 TCGv tmp
= tcg_temp_new_i32();
235 tcg_gen_shri_i32(tmp
, var
, 8);
236 tcg_gen_andi_i32(tmp
, tmp
, 0x00ff00ff);
237 tcg_gen_shli_i32(var
, var
, 8);
238 tcg_gen_andi_i32(var
, var
, 0xff00ff00);
239 tcg_gen_or_i32(var
, var
, tmp
);
240 tcg_temp_free_i32(tmp
);
243 /* Byteswap low halfword and sign extend. */
244 static void gen_revsh(TCGv var
)
246 tcg_gen_ext16u_i32(var
, var
);
247 tcg_gen_bswap16_i32(var
, var
);
248 tcg_gen_ext16s_i32(var
, var
);
251 /* Unsigned bitfield extract. */
252 static void gen_ubfx(TCGv var
, int shift
, uint32_t mask
)
255 tcg_gen_shri_i32(var
, var
, shift
);
256 tcg_gen_andi_i32(var
, var
, mask
);
259 /* Signed bitfield extract. */
260 static void gen_sbfx(TCGv var
, int shift
, int width
)
265 tcg_gen_sari_i32(var
, var
, shift
);
266 if (shift
+ width
< 32) {
267 signbit
= 1u << (width
- 1);
268 tcg_gen_andi_i32(var
, var
, (1u << width
) - 1);
269 tcg_gen_xori_i32(var
, var
, signbit
);
270 tcg_gen_subi_i32(var
, var
, signbit
);
274 /* Bitfield insertion. Insert val into base. Clobbers base and val. */
275 static void gen_bfi(TCGv dest
, TCGv base
, TCGv val
, int shift
, uint32_t mask
)
277 tcg_gen_andi_i32(val
, val
, mask
);
278 tcg_gen_shli_i32(val
, val
, shift
);
279 tcg_gen_andi_i32(base
, base
, ~(mask
<< shift
));
280 tcg_gen_or_i32(dest
, base
, val
);
283 /* Return (b << 32) + a. Mark inputs as dead */
284 static TCGv_i64
gen_addq_msw(TCGv_i64 a
, TCGv b
)
286 TCGv_i64 tmp64
= tcg_temp_new_i64();
288 tcg_gen_extu_i32_i64(tmp64
, b
);
289 tcg_temp_free_i32(b
);
290 tcg_gen_shli_i64(tmp64
, tmp64
, 32);
291 tcg_gen_add_i64(a
, tmp64
, a
);
293 tcg_temp_free_i64(tmp64
);
297 /* Return (b << 32) - a. Mark inputs as dead. */
298 static TCGv_i64
gen_subq_msw(TCGv_i64 a
, TCGv b
)
300 TCGv_i64 tmp64
= tcg_temp_new_i64();
302 tcg_gen_extu_i32_i64(tmp64
, b
);
303 tcg_temp_free_i32(b
);
304 tcg_gen_shli_i64(tmp64
, tmp64
, 32);
305 tcg_gen_sub_i64(a
, tmp64
, a
);
307 tcg_temp_free_i64(tmp64
);
311 /* FIXME: Most targets have native widening multiplication.
312 It would be good to use that instead of a full wide multiply. */
313 /* 32x32->64 multiply. Marks inputs as dead. */
314 static TCGv_i64
gen_mulu_i64_i32(TCGv a
, TCGv b
)
316 TCGv_i64 tmp1
= tcg_temp_new_i64();
317 TCGv_i64 tmp2
= tcg_temp_new_i64();
319 tcg_gen_extu_i32_i64(tmp1
, a
);
320 tcg_temp_free_i32(a
);
321 tcg_gen_extu_i32_i64(tmp2
, b
);
322 tcg_temp_free_i32(b
);
323 tcg_gen_mul_i64(tmp1
, tmp1
, tmp2
);
324 tcg_temp_free_i64(tmp2
);
328 static TCGv_i64
gen_muls_i64_i32(TCGv a
, TCGv b
)
330 TCGv_i64 tmp1
= tcg_temp_new_i64();
331 TCGv_i64 tmp2
= tcg_temp_new_i64();
333 tcg_gen_ext_i32_i64(tmp1
, a
);
334 tcg_temp_free_i32(a
);
335 tcg_gen_ext_i32_i64(tmp2
, b
);
336 tcg_temp_free_i32(b
);
337 tcg_gen_mul_i64(tmp1
, tmp1
, tmp2
);
338 tcg_temp_free_i64(tmp2
);
342 /* Swap low and high halfwords. */
343 static void gen_swap_half(TCGv var
)
345 TCGv tmp
= tcg_temp_new_i32();
346 tcg_gen_shri_i32(tmp
, var
, 16);
347 tcg_gen_shli_i32(var
, var
, 16);
348 tcg_gen_or_i32(var
, var
, tmp
);
349 tcg_temp_free_i32(tmp
);
352 /* Dual 16-bit add. Result placed in t0 and t1 is marked as dead.
353 tmp = (t0 ^ t1) & 0x8000;
356 t0 = (t0 + t1) ^ tmp;
359 static void gen_add16(TCGv t0
, TCGv t1
)
361 TCGv tmp
= tcg_temp_new_i32();
362 tcg_gen_xor_i32(tmp
, t0
, t1
);
363 tcg_gen_andi_i32(tmp
, tmp
, 0x8000);
364 tcg_gen_andi_i32(t0
, t0
, ~0x8000);
365 tcg_gen_andi_i32(t1
, t1
, ~0x8000);
366 tcg_gen_add_i32(t0
, t0
, t1
);
367 tcg_gen_xor_i32(t0
, t0
, tmp
);
368 tcg_temp_free_i32(tmp
);
369 tcg_temp_free_i32(t1
);
372 #define gen_set_CF(var) tcg_gen_st_i32(var, cpu_env, offsetof(CPUState, CF))
374 /* Set CF to the top bit of var. */
375 static void gen_set_CF_bit31(TCGv var
)
377 TCGv tmp
= tcg_temp_new_i32();
378 tcg_gen_shri_i32(tmp
, var
, 31);
380 tcg_temp_free_i32(tmp
);
383 /* Set N and Z flags from var. */
384 static inline void gen_logic_CC(TCGv var
)
386 tcg_gen_st_i32(var
, cpu_env
, offsetof(CPUState
, NF
));
387 tcg_gen_st_i32(var
, cpu_env
, offsetof(CPUState
, ZF
));
391 static void gen_adc(TCGv t0
, TCGv t1
)
394 tcg_gen_add_i32(t0
, t0
, t1
);
395 tmp
= load_cpu_field(CF
);
396 tcg_gen_add_i32(t0
, t0
, tmp
);
397 tcg_temp_free_i32(tmp
);
400 /* dest = T0 + T1 + CF. */
401 static void gen_add_carry(TCGv dest
, TCGv t0
, TCGv t1
)
404 tcg_gen_add_i32(dest
, t0
, t1
);
405 tmp
= load_cpu_field(CF
);
406 tcg_gen_add_i32(dest
, dest
, tmp
);
407 tcg_temp_free_i32(tmp
);
410 /* dest = T0 - T1 + CF - 1. */
411 static void gen_sub_carry(TCGv dest
, TCGv t0
, TCGv t1
)
414 tcg_gen_sub_i32(dest
, t0
, t1
);
415 tmp
= load_cpu_field(CF
);
416 tcg_gen_add_i32(dest
, dest
, tmp
);
417 tcg_gen_subi_i32(dest
, dest
, 1);
418 tcg_temp_free_i32(tmp
);
421 /* FIXME: Implement this natively. */
422 #define tcg_gen_abs_i32(t0, t1) gen_helper_abs(t0, t1)
424 static void shifter_out_im(TCGv var
, int shift
)
426 TCGv tmp
= tcg_temp_new_i32();
428 tcg_gen_andi_i32(tmp
, var
, 1);
430 tcg_gen_shri_i32(tmp
, var
, shift
);
432 tcg_gen_andi_i32(tmp
, tmp
, 1);
435 tcg_temp_free_i32(tmp
);
438 /* Shift by immediate. Includes special handling for shift == 0. */
439 static inline void gen_arm_shift_im(TCGv var
, int shiftop
, int shift
, int flags
)
445 shifter_out_im(var
, 32 - shift
);
446 tcg_gen_shli_i32(var
, var
, shift
);
452 tcg_gen_shri_i32(var
, var
, 31);
455 tcg_gen_movi_i32(var
, 0);
458 shifter_out_im(var
, shift
- 1);
459 tcg_gen_shri_i32(var
, var
, shift
);
466 shifter_out_im(var
, shift
- 1);
469 tcg_gen_sari_i32(var
, var
, shift
);
471 case 3: /* ROR/RRX */
474 shifter_out_im(var
, shift
- 1);
475 tcg_gen_rotri_i32(var
, var
, shift
); break;
477 TCGv tmp
= load_cpu_field(CF
);
479 shifter_out_im(var
, 0);
480 tcg_gen_shri_i32(var
, var
, 1);
481 tcg_gen_shli_i32(tmp
, tmp
, 31);
482 tcg_gen_or_i32(var
, var
, tmp
);
483 tcg_temp_free_i32(tmp
);
488 static inline void gen_arm_shift_reg(TCGv var
, int shiftop
,
489 TCGv shift
, int flags
)
493 case 0: gen_helper_shl_cc(var
, var
, shift
); break;
494 case 1: gen_helper_shr_cc(var
, var
, shift
); break;
495 case 2: gen_helper_sar_cc(var
, var
, shift
); break;
496 case 3: gen_helper_ror_cc(var
, var
, shift
); break;
500 case 0: gen_helper_shl(var
, var
, shift
); break;
501 case 1: gen_helper_shr(var
, var
, shift
); break;
502 case 2: gen_helper_sar(var
, var
, shift
); break;
503 case 3: tcg_gen_andi_i32(shift
, shift
, 0x1f);
504 tcg_gen_rotr_i32(var
, var
, shift
); break;
507 tcg_temp_free_i32(shift
);
510 #define PAS_OP(pfx) \
512 case 0: gen_pas_helper(glue(pfx,add16)); break; \
513 case 1: gen_pas_helper(glue(pfx,addsubx)); break; \
514 case 2: gen_pas_helper(glue(pfx,subaddx)); break; \
515 case 3: gen_pas_helper(glue(pfx,sub16)); break; \
516 case 4: gen_pas_helper(glue(pfx,add8)); break; \
517 case 7: gen_pas_helper(glue(pfx,sub8)); break; \
519 static void gen_arm_parallel_addsub(int op1
, int op2
, TCGv a
, TCGv b
)
524 #define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b, tmp)
526 tmp
= tcg_temp_new_ptr();
527 tcg_gen_addi_ptr(tmp
, cpu_env
, offsetof(CPUState
, GE
));
529 tcg_temp_free_ptr(tmp
);
532 tmp
= tcg_temp_new_ptr();
533 tcg_gen_addi_ptr(tmp
, cpu_env
, offsetof(CPUState
, GE
));
535 tcg_temp_free_ptr(tmp
);
537 #undef gen_pas_helper
538 #define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b)
551 #undef gen_pas_helper
556 /* For unknown reasons Arm and Thumb-2 use arbitrarily different encodings. */
557 #define PAS_OP(pfx) \
559 case 0: gen_pas_helper(glue(pfx,add8)); break; \
560 case 1: gen_pas_helper(glue(pfx,add16)); break; \
561 case 2: gen_pas_helper(glue(pfx,addsubx)); break; \
562 case 4: gen_pas_helper(glue(pfx,sub8)); break; \
563 case 5: gen_pas_helper(glue(pfx,sub16)); break; \
564 case 6: gen_pas_helper(glue(pfx,subaddx)); break; \
566 static void gen_thumb2_parallel_addsub(int op1
, int op2
, TCGv a
, TCGv b
)
571 #define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b, tmp)
573 tmp
= tcg_temp_new_ptr();
574 tcg_gen_addi_ptr(tmp
, cpu_env
, offsetof(CPUState
, GE
));
576 tcg_temp_free_ptr(tmp
);
579 tmp
= tcg_temp_new_ptr();
580 tcg_gen_addi_ptr(tmp
, cpu_env
, offsetof(CPUState
, GE
));
582 tcg_temp_free_ptr(tmp
);
584 #undef gen_pas_helper
585 #define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b)
598 #undef gen_pas_helper
603 static void gen_test_cc(int cc
, int label
)
611 tmp
= load_cpu_field(ZF
);
612 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, label
);
615 tmp
= load_cpu_field(ZF
);
616 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, label
);
619 tmp
= load_cpu_field(CF
);
620 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, label
);
623 tmp
= load_cpu_field(CF
);
624 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, label
);
627 tmp
= load_cpu_field(NF
);
628 tcg_gen_brcondi_i32(TCG_COND_LT
, tmp
, 0, label
);
631 tmp
= load_cpu_field(NF
);
632 tcg_gen_brcondi_i32(TCG_COND_GE
, tmp
, 0, label
);
635 tmp
= load_cpu_field(VF
);
636 tcg_gen_brcondi_i32(TCG_COND_LT
, tmp
, 0, label
);
639 tmp
= load_cpu_field(VF
);
640 tcg_gen_brcondi_i32(TCG_COND_GE
, tmp
, 0, label
);
642 case 8: /* hi: C && !Z */
643 inv
= gen_new_label();
644 tmp
= load_cpu_field(CF
);
645 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, inv
);
646 tcg_temp_free_i32(tmp
);
647 tmp
= load_cpu_field(ZF
);
648 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, label
);
651 case 9: /* ls: !C || Z */
652 tmp
= load_cpu_field(CF
);
653 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, label
);
654 tcg_temp_free_i32(tmp
);
655 tmp
= load_cpu_field(ZF
);
656 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, label
);
658 case 10: /* ge: N == V -> N ^ V == 0 */
659 tmp
= load_cpu_field(VF
);
660 tmp2
= load_cpu_field(NF
);
661 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
662 tcg_temp_free_i32(tmp2
);
663 tcg_gen_brcondi_i32(TCG_COND_GE
, tmp
, 0, label
);
665 case 11: /* lt: N != V -> N ^ V != 0 */
666 tmp
= load_cpu_field(VF
);
667 tmp2
= load_cpu_field(NF
);
668 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
669 tcg_temp_free_i32(tmp2
);
670 tcg_gen_brcondi_i32(TCG_COND_LT
, tmp
, 0, label
);
672 case 12: /* gt: !Z && N == V */
673 inv
= gen_new_label();
674 tmp
= load_cpu_field(ZF
);
675 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, inv
);
676 tcg_temp_free_i32(tmp
);
677 tmp
= load_cpu_field(VF
);
678 tmp2
= load_cpu_field(NF
);
679 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
680 tcg_temp_free_i32(tmp2
);
681 tcg_gen_brcondi_i32(TCG_COND_GE
, tmp
, 0, label
);
684 case 13: /* le: Z || N != V */
685 tmp
= load_cpu_field(ZF
);
686 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, label
);
687 tcg_temp_free_i32(tmp
);
688 tmp
= load_cpu_field(VF
);
689 tmp2
= load_cpu_field(NF
);
690 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
691 tcg_temp_free_i32(tmp2
);
692 tcg_gen_brcondi_i32(TCG_COND_LT
, tmp
, 0, label
);
695 fprintf(stderr
, "Bad condition code 0x%x\n", cc
);
698 tcg_temp_free_i32(tmp
);
701 static const uint8_t table_logic_cc
[16] = {
720 /* Set PC and Thumb state from an immediate address. */
721 static inline void gen_bx_im(DisasContext
*s
, uint32_t addr
)
725 s
->is_jmp
= DISAS_UPDATE
;
726 if (s
->thumb
!= (addr
& 1)) {
727 tmp
= tcg_temp_new_i32();
728 tcg_gen_movi_i32(tmp
, addr
& 1);
729 tcg_gen_st_i32(tmp
, cpu_env
, offsetof(CPUState
, thumb
));
730 tcg_temp_free_i32(tmp
);
732 tcg_gen_movi_i32(cpu_R
[15], addr
& ~1);
735 /* Set PC and Thumb state from var. var is marked as dead. */
736 static inline void gen_bx(DisasContext
*s
, TCGv var
)
738 s
->is_jmp
= DISAS_UPDATE
;
739 tcg_gen_andi_i32(cpu_R
[15], var
, ~1);
740 tcg_gen_andi_i32(var
, var
, 1);
741 store_cpu_field(var
, thumb
);
744 /* Variant of store_reg which uses branch&exchange logic when storing
745 to r15 in ARM architecture v7 and above. The source must be a temporary
746 and will be marked as dead. */
747 static inline void store_reg_bx(CPUState
*env
, DisasContext
*s
,
750 if (reg
== 15 && ENABLE_ARCH_7
) {
753 store_reg(s
, reg
, var
);
757 /* Variant of store_reg which uses branch&exchange logic when storing
758 * to r15 in ARM architecture v5T and above. This is used for storing
759 * the results of a LDR/LDM/POP into r15, and corresponds to the cases
760 * in the ARM ARM which use the LoadWritePC() pseudocode function. */
761 static inline void store_reg_from_load(CPUState
*env
, DisasContext
*s
,
764 if (reg
== 15 && ENABLE_ARCH_5
) {
767 store_reg(s
, reg
, var
);
771 static inline TCGv
gen_ld8s(TCGv addr
, int index
)
773 TCGv tmp
= tcg_temp_new_i32();
774 tcg_gen_qemu_ld8s(tmp
, addr
, index
);
777 static inline TCGv
gen_ld8u(TCGv addr
, int index
)
779 TCGv tmp
= tcg_temp_new_i32();
780 tcg_gen_qemu_ld8u(tmp
, addr
, index
);
783 static inline TCGv
gen_ld16s(TCGv addr
, int index
)
785 TCGv tmp
= tcg_temp_new_i32();
786 tcg_gen_qemu_ld16s(tmp
, addr
, index
);
789 static inline TCGv
gen_ld16u(TCGv addr
, int index
)
791 TCGv tmp
= tcg_temp_new_i32();
792 tcg_gen_qemu_ld16u(tmp
, addr
, index
);
795 static inline TCGv
gen_ld32(TCGv addr
, int index
)
797 TCGv tmp
= tcg_temp_new_i32();
798 tcg_gen_qemu_ld32u(tmp
, addr
, index
);
801 static inline TCGv_i64
gen_ld64(TCGv addr
, int index
)
803 TCGv_i64 tmp
= tcg_temp_new_i64();
804 tcg_gen_qemu_ld64(tmp
, addr
, index
);
807 static inline void gen_st8(TCGv val
, TCGv addr
, int index
)
809 tcg_gen_qemu_st8(val
, addr
, index
);
810 tcg_temp_free_i32(val
);
812 static inline void gen_st16(TCGv val
, TCGv addr
, int index
)
814 tcg_gen_qemu_st16(val
, addr
, index
);
815 tcg_temp_free_i32(val
);
817 static inline void gen_st32(TCGv val
, TCGv addr
, int index
)
819 tcg_gen_qemu_st32(val
, addr
, index
);
820 tcg_temp_free_i32(val
);
822 static inline void gen_st64(TCGv_i64 val
, TCGv addr
, int index
)
824 tcg_gen_qemu_st64(val
, addr
, index
);
825 tcg_temp_free_i64(val
);
828 static inline void gen_set_pc_im(uint32_t val
)
830 tcg_gen_movi_i32(cpu_R
[15], val
);
833 /* Force a TB lookup after an instruction that changes the CPU state. */
834 static inline void gen_lookup_tb(DisasContext
*s
)
836 tcg_gen_movi_i32(cpu_R
[15], s
->pc
& ~1);
837 s
->is_jmp
= DISAS_UPDATE
;
840 static inline void gen_add_data_offset(DisasContext
*s
, unsigned int insn
,
843 int val
, rm
, shift
, shiftop
;
846 if (!(insn
& (1 << 25))) {
849 if (!(insn
& (1 << 23)))
852 tcg_gen_addi_i32(var
, var
, val
);
856 shift
= (insn
>> 7) & 0x1f;
857 shiftop
= (insn
>> 5) & 3;
858 offset
= load_reg(s
, rm
);
859 gen_arm_shift_im(offset
, shiftop
, shift
, 0);
860 if (!(insn
& (1 << 23)))
861 tcg_gen_sub_i32(var
, var
, offset
);
863 tcg_gen_add_i32(var
, var
, offset
);
864 tcg_temp_free_i32(offset
);
868 static inline void gen_add_datah_offset(DisasContext
*s
, unsigned int insn
,
874 if (insn
& (1 << 22)) {
876 val
= (insn
& 0xf) | ((insn
>> 4) & 0xf0);
877 if (!(insn
& (1 << 23)))
881 tcg_gen_addi_i32(var
, var
, val
);
885 tcg_gen_addi_i32(var
, var
, extra
);
887 offset
= load_reg(s
, rm
);
888 if (!(insn
& (1 << 23)))
889 tcg_gen_sub_i32(var
, var
, offset
);
891 tcg_gen_add_i32(var
, var
, offset
);
892 tcg_temp_free_i32(offset
);
896 #define VFP_OP2(name) \
897 static inline void gen_vfp_##name(int dp) \
900 gen_helper_vfp_##name##d(cpu_F0d, cpu_F0d, cpu_F1d, cpu_env); \
902 gen_helper_vfp_##name##s(cpu_F0s, cpu_F0s, cpu_F1s, cpu_env); \
912 static inline void gen_vfp_abs(int dp
)
915 gen_helper_vfp_absd(cpu_F0d
, cpu_F0d
);
917 gen_helper_vfp_abss(cpu_F0s
, cpu_F0s
);
920 static inline void gen_vfp_neg(int dp
)
923 gen_helper_vfp_negd(cpu_F0d
, cpu_F0d
);
925 gen_helper_vfp_negs(cpu_F0s
, cpu_F0s
);
928 static inline void gen_vfp_sqrt(int dp
)
931 gen_helper_vfp_sqrtd(cpu_F0d
, cpu_F0d
, cpu_env
);
933 gen_helper_vfp_sqrts(cpu_F0s
, cpu_F0s
, cpu_env
);
936 static inline void gen_vfp_cmp(int dp
)
939 gen_helper_vfp_cmpd(cpu_F0d
, cpu_F1d
, cpu_env
);
941 gen_helper_vfp_cmps(cpu_F0s
, cpu_F1s
, cpu_env
);
944 static inline void gen_vfp_cmpe(int dp
)
947 gen_helper_vfp_cmped(cpu_F0d
, cpu_F1d
, cpu_env
);
949 gen_helper_vfp_cmpes(cpu_F0s
, cpu_F1s
, cpu_env
);
952 static inline void gen_vfp_F1_ld0(int dp
)
955 tcg_gen_movi_i64(cpu_F1d
, 0);
957 tcg_gen_movi_i32(cpu_F1s
, 0);
960 static inline void gen_vfp_uito(int dp
)
963 gen_helper_vfp_uitod(cpu_F0d
, cpu_F0s
, cpu_env
);
965 gen_helper_vfp_uitos(cpu_F0s
, cpu_F0s
, cpu_env
);
968 static inline void gen_vfp_sito(int dp
)
971 gen_helper_vfp_sitod(cpu_F0d
, cpu_F0s
, cpu_env
);
973 gen_helper_vfp_sitos(cpu_F0s
, cpu_F0s
, cpu_env
);
976 static inline void gen_vfp_toui(int dp
)
979 gen_helper_vfp_touid(cpu_F0s
, cpu_F0d
, cpu_env
);
981 gen_helper_vfp_touis(cpu_F0s
, cpu_F0s
, cpu_env
);
984 static inline void gen_vfp_touiz(int dp
)
987 gen_helper_vfp_touizd(cpu_F0s
, cpu_F0d
, cpu_env
);
989 gen_helper_vfp_touizs(cpu_F0s
, cpu_F0s
, cpu_env
);
992 static inline void gen_vfp_tosi(int dp
)
995 gen_helper_vfp_tosid(cpu_F0s
, cpu_F0d
, cpu_env
);
997 gen_helper_vfp_tosis(cpu_F0s
, cpu_F0s
, cpu_env
);
1000 static inline void gen_vfp_tosiz(int dp
)
1003 gen_helper_vfp_tosizd(cpu_F0s
, cpu_F0d
, cpu_env
);
1005 gen_helper_vfp_tosizs(cpu_F0s
, cpu_F0s
, cpu_env
);
1008 #define VFP_GEN_FIX(name) \
1009 static inline void gen_vfp_##name(int dp, int shift) \
1011 TCGv tmp_shift = tcg_const_i32(shift); \
1013 gen_helper_vfp_##name##d(cpu_F0d, cpu_F0d, tmp_shift, cpu_env);\
1015 gen_helper_vfp_##name##s(cpu_F0s, cpu_F0s, tmp_shift, cpu_env);\
1016 tcg_temp_free_i32(tmp_shift); \
1028 static inline void gen_vfp_ld(DisasContext
*s
, int dp
, TCGv addr
)
1031 tcg_gen_qemu_ld64(cpu_F0d
, addr
, IS_USER(s
));
1033 tcg_gen_qemu_ld32u(cpu_F0s
, addr
, IS_USER(s
));
1036 static inline void gen_vfp_st(DisasContext
*s
, int dp
, TCGv addr
)
1039 tcg_gen_qemu_st64(cpu_F0d
, addr
, IS_USER(s
));
1041 tcg_gen_qemu_st32(cpu_F0s
, addr
, IS_USER(s
));
1045 vfp_reg_offset (int dp
, int reg
)
1048 return offsetof(CPUARMState
, vfp
.regs
[reg
]);
1050 return offsetof(CPUARMState
, vfp
.regs
[reg
>> 1])
1051 + offsetof(CPU_DoubleU
, l
.upper
);
1053 return offsetof(CPUARMState
, vfp
.regs
[reg
>> 1])
1054 + offsetof(CPU_DoubleU
, l
.lower
);
1058 /* Return the offset of a 32-bit piece of a NEON register.
1059 zero is the least significant end of the register. */
1061 neon_reg_offset (int reg
, int n
)
1065 return vfp_reg_offset(0, sreg
);
1068 static TCGv
neon_load_reg(int reg
, int pass
)
1070 TCGv tmp
= tcg_temp_new_i32();
1071 tcg_gen_ld_i32(tmp
, cpu_env
, neon_reg_offset(reg
, pass
));
1075 static void neon_store_reg(int reg
, int pass
, TCGv var
)
1077 tcg_gen_st_i32(var
, cpu_env
, neon_reg_offset(reg
, pass
));
1078 tcg_temp_free_i32(var
);
1081 static inline void neon_load_reg64(TCGv_i64 var
, int reg
)
1083 tcg_gen_ld_i64(var
, cpu_env
, vfp_reg_offset(1, reg
));
1086 static inline void neon_store_reg64(TCGv_i64 var
, int reg
)
1088 tcg_gen_st_i64(var
, cpu_env
, vfp_reg_offset(1, reg
));
1091 #define tcg_gen_ld_f32 tcg_gen_ld_i32
1092 #define tcg_gen_ld_f64 tcg_gen_ld_i64
1093 #define tcg_gen_st_f32 tcg_gen_st_i32
1094 #define tcg_gen_st_f64 tcg_gen_st_i64
1096 static inline void gen_mov_F0_vreg(int dp
, int reg
)
1099 tcg_gen_ld_f64(cpu_F0d
, cpu_env
, vfp_reg_offset(dp
, reg
));
1101 tcg_gen_ld_f32(cpu_F0s
, cpu_env
, vfp_reg_offset(dp
, reg
));
1104 static inline void gen_mov_F1_vreg(int dp
, int reg
)
1107 tcg_gen_ld_f64(cpu_F1d
, cpu_env
, vfp_reg_offset(dp
, reg
));
1109 tcg_gen_ld_f32(cpu_F1s
, cpu_env
, vfp_reg_offset(dp
, reg
));
1112 static inline void gen_mov_vreg_F0(int dp
, int reg
)
1115 tcg_gen_st_f64(cpu_F0d
, cpu_env
, vfp_reg_offset(dp
, reg
));
1117 tcg_gen_st_f32(cpu_F0s
, cpu_env
, vfp_reg_offset(dp
, reg
));
1120 #define ARM_CP_RW_BIT (1 << 20)
1122 static inline void iwmmxt_load_reg(TCGv_i64 var
, int reg
)
1124 tcg_gen_ld_i64(var
, cpu_env
, offsetof(CPUState
, iwmmxt
.regs
[reg
]));
1127 static inline void iwmmxt_store_reg(TCGv_i64 var
, int reg
)
1129 tcg_gen_st_i64(var
, cpu_env
, offsetof(CPUState
, iwmmxt
.regs
[reg
]));
1132 static inline TCGv
iwmmxt_load_creg(int reg
)
1134 TCGv var
= tcg_temp_new_i32();
1135 tcg_gen_ld_i32(var
, cpu_env
, offsetof(CPUState
, iwmmxt
.cregs
[reg
]));
1139 static inline void iwmmxt_store_creg(int reg
, TCGv var
)
1141 tcg_gen_st_i32(var
, cpu_env
, offsetof(CPUState
, iwmmxt
.cregs
[reg
]));
1142 tcg_temp_free_i32(var
);
1145 static inline void gen_op_iwmmxt_movq_wRn_M0(int rn
)
1147 iwmmxt_store_reg(cpu_M0
, rn
);
1150 static inline void gen_op_iwmmxt_movq_M0_wRn(int rn
)
1152 iwmmxt_load_reg(cpu_M0
, rn
);
1155 static inline void gen_op_iwmmxt_orq_M0_wRn(int rn
)
1157 iwmmxt_load_reg(cpu_V1
, rn
);
1158 tcg_gen_or_i64(cpu_M0
, cpu_M0
, cpu_V1
);
1161 static inline void gen_op_iwmmxt_andq_M0_wRn(int rn
)
1163 iwmmxt_load_reg(cpu_V1
, rn
);
1164 tcg_gen_and_i64(cpu_M0
, cpu_M0
, cpu_V1
);
1167 static inline void gen_op_iwmmxt_xorq_M0_wRn(int rn
)
1169 iwmmxt_load_reg(cpu_V1
, rn
);
1170 tcg_gen_xor_i64(cpu_M0
, cpu_M0
, cpu_V1
);
1173 #define IWMMXT_OP(name) \
1174 static inline void gen_op_iwmmxt_##name##_M0_wRn(int rn) \
1176 iwmmxt_load_reg(cpu_V1, rn); \
1177 gen_helper_iwmmxt_##name(cpu_M0, cpu_M0, cpu_V1); \
1180 #define IWMMXT_OP_SIZE(name) \
1181 IWMMXT_OP(name##b) \
1182 IWMMXT_OP(name##w) \
1185 #define IWMMXT_OP_1(name) \
1186 static inline void gen_op_iwmmxt_##name##_M0(void) \
1188 gen_helper_iwmmxt_##name(cpu_M0, cpu_M0); \
1202 IWMMXT_OP_SIZE(unpackl
)
1203 IWMMXT_OP_SIZE(unpackh
)
1205 IWMMXT_OP_1(unpacklub
)
1206 IWMMXT_OP_1(unpackluw
)
1207 IWMMXT_OP_1(unpacklul
)
1208 IWMMXT_OP_1(unpackhub
)
1209 IWMMXT_OP_1(unpackhuw
)
1210 IWMMXT_OP_1(unpackhul
)
1211 IWMMXT_OP_1(unpacklsb
)
1212 IWMMXT_OP_1(unpacklsw
)
1213 IWMMXT_OP_1(unpacklsl
)
1214 IWMMXT_OP_1(unpackhsb
)
1215 IWMMXT_OP_1(unpackhsw
)
1216 IWMMXT_OP_1(unpackhsl
)
1218 IWMMXT_OP_SIZE(cmpeq
)
1219 IWMMXT_OP_SIZE(cmpgtu
)
1220 IWMMXT_OP_SIZE(cmpgts
)
1222 IWMMXT_OP_SIZE(mins
)
1223 IWMMXT_OP_SIZE(minu
)
1224 IWMMXT_OP_SIZE(maxs
)
1225 IWMMXT_OP_SIZE(maxu
)
1227 IWMMXT_OP_SIZE(subn
)
1228 IWMMXT_OP_SIZE(addn
)
1229 IWMMXT_OP_SIZE(subu
)
1230 IWMMXT_OP_SIZE(addu
)
1231 IWMMXT_OP_SIZE(subs
)
1232 IWMMXT_OP_SIZE(adds
)
1248 static void gen_op_iwmmxt_set_mup(void)
1251 tmp
= load_cpu_field(iwmmxt
.cregs
[ARM_IWMMXT_wCon
]);
1252 tcg_gen_ori_i32(tmp
, tmp
, 2);
1253 store_cpu_field(tmp
, iwmmxt
.cregs
[ARM_IWMMXT_wCon
]);
1256 static void gen_op_iwmmxt_set_cup(void)
1259 tmp
= load_cpu_field(iwmmxt
.cregs
[ARM_IWMMXT_wCon
]);
1260 tcg_gen_ori_i32(tmp
, tmp
, 1);
1261 store_cpu_field(tmp
, iwmmxt
.cregs
[ARM_IWMMXT_wCon
]);
1264 static void gen_op_iwmmxt_setpsr_nz(void)
1266 TCGv tmp
= tcg_temp_new_i32();
1267 gen_helper_iwmmxt_setpsr_nz(tmp
, cpu_M0
);
1268 store_cpu_field(tmp
, iwmmxt
.cregs
[ARM_IWMMXT_wCASF
]);
1271 static inline void gen_op_iwmmxt_addl_M0_wRn(int rn
)
1273 iwmmxt_load_reg(cpu_V1
, rn
);
1274 tcg_gen_ext32u_i64(cpu_V1
, cpu_V1
);
1275 tcg_gen_add_i64(cpu_M0
, cpu_M0
, cpu_V1
);
1278 static inline int gen_iwmmxt_address(DisasContext
*s
, uint32_t insn
, TCGv dest
)
1284 rd
= (insn
>> 16) & 0xf;
1285 tmp
= load_reg(s
, rd
);
1287 offset
= (insn
& 0xff) << ((insn
>> 7) & 2);
1288 if (insn
& (1 << 24)) {
1290 if (insn
& (1 << 23))
1291 tcg_gen_addi_i32(tmp
, tmp
, offset
);
1293 tcg_gen_addi_i32(tmp
, tmp
, -offset
);
1294 tcg_gen_mov_i32(dest
, tmp
);
1295 if (insn
& (1 << 21))
1296 store_reg(s
, rd
, tmp
);
1298 tcg_temp_free_i32(tmp
);
1299 } else if (insn
& (1 << 21)) {
1301 tcg_gen_mov_i32(dest
, tmp
);
1302 if (insn
& (1 << 23))
1303 tcg_gen_addi_i32(tmp
, tmp
, offset
);
1305 tcg_gen_addi_i32(tmp
, tmp
, -offset
);
1306 store_reg(s
, rd
, tmp
);
1307 } else if (!(insn
& (1 << 23)))
1312 static inline int gen_iwmmxt_shift(uint32_t insn
, uint32_t mask
, TCGv dest
)
1314 int rd
= (insn
>> 0) & 0xf;
1317 if (insn
& (1 << 8)) {
1318 if (rd
< ARM_IWMMXT_wCGR0
|| rd
> ARM_IWMMXT_wCGR3
) {
1321 tmp
= iwmmxt_load_creg(rd
);
1324 tmp
= tcg_temp_new_i32();
1325 iwmmxt_load_reg(cpu_V0
, rd
);
1326 tcg_gen_trunc_i64_i32(tmp
, cpu_V0
);
1328 tcg_gen_andi_i32(tmp
, tmp
, mask
);
1329 tcg_gen_mov_i32(dest
, tmp
);
1330 tcg_temp_free_i32(tmp
);
1334 /* Disassemble an iwMMXt instruction. Returns nonzero if an error occured
1335 (ie. an undefined instruction). */
1336 static int disas_iwmmxt_insn(CPUState
*env
, DisasContext
*s
, uint32_t insn
)
1339 int rdhi
, rdlo
, rd0
, rd1
, i
;
1341 TCGv tmp
, tmp2
, tmp3
;
1343 if ((insn
& 0x0e000e00) == 0x0c000000) {
1344 if ((insn
& 0x0fe00ff0) == 0x0c400000) {
1346 rdlo
= (insn
>> 12) & 0xf;
1347 rdhi
= (insn
>> 16) & 0xf;
1348 if (insn
& ARM_CP_RW_BIT
) { /* TMRRC */
1349 iwmmxt_load_reg(cpu_V0
, wrd
);
1350 tcg_gen_trunc_i64_i32(cpu_R
[rdlo
], cpu_V0
);
1351 tcg_gen_shri_i64(cpu_V0
, cpu_V0
, 32);
1352 tcg_gen_trunc_i64_i32(cpu_R
[rdhi
], cpu_V0
);
1353 } else { /* TMCRR */
1354 tcg_gen_concat_i32_i64(cpu_V0
, cpu_R
[rdlo
], cpu_R
[rdhi
]);
1355 iwmmxt_store_reg(cpu_V0
, wrd
);
1356 gen_op_iwmmxt_set_mup();
1361 wrd
= (insn
>> 12) & 0xf;
1362 addr
= tcg_temp_new_i32();
1363 if (gen_iwmmxt_address(s
, insn
, addr
)) {
1364 tcg_temp_free_i32(addr
);
1367 if (insn
& ARM_CP_RW_BIT
) {
1368 if ((insn
>> 28) == 0xf) { /* WLDRW wCx */
1369 tmp
= tcg_temp_new_i32();
1370 tcg_gen_qemu_ld32u(tmp
, addr
, IS_USER(s
));
1371 iwmmxt_store_creg(wrd
, tmp
);
1374 if (insn
& (1 << 8)) {
1375 if (insn
& (1 << 22)) { /* WLDRD */
1376 tcg_gen_qemu_ld64(cpu_M0
, addr
, IS_USER(s
));
1378 } else { /* WLDRW wRd */
1379 tmp
= gen_ld32(addr
, IS_USER(s
));
1382 if (insn
& (1 << 22)) { /* WLDRH */
1383 tmp
= gen_ld16u(addr
, IS_USER(s
));
1384 } else { /* WLDRB */
1385 tmp
= gen_ld8u(addr
, IS_USER(s
));
1389 tcg_gen_extu_i32_i64(cpu_M0
, tmp
);
1390 tcg_temp_free_i32(tmp
);
1392 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1395 if ((insn
>> 28) == 0xf) { /* WSTRW wCx */
1396 tmp
= iwmmxt_load_creg(wrd
);
1397 gen_st32(tmp
, addr
, IS_USER(s
));
1399 gen_op_iwmmxt_movq_M0_wRn(wrd
);
1400 tmp
= tcg_temp_new_i32();
1401 if (insn
& (1 << 8)) {
1402 if (insn
& (1 << 22)) { /* WSTRD */
1403 tcg_temp_free_i32(tmp
);
1404 tcg_gen_qemu_st64(cpu_M0
, addr
, IS_USER(s
));
1405 } else { /* WSTRW wRd */
1406 tcg_gen_trunc_i64_i32(tmp
, cpu_M0
);
1407 gen_st32(tmp
, addr
, IS_USER(s
));
1410 if (insn
& (1 << 22)) { /* WSTRH */
1411 tcg_gen_trunc_i64_i32(tmp
, cpu_M0
);
1412 gen_st16(tmp
, addr
, IS_USER(s
));
1413 } else { /* WSTRB */
1414 tcg_gen_trunc_i64_i32(tmp
, cpu_M0
);
1415 gen_st8(tmp
, addr
, IS_USER(s
));
1420 tcg_temp_free_i32(addr
);
1424 if ((insn
& 0x0f000000) != 0x0e000000)
1427 switch (((insn
>> 12) & 0xf00) | ((insn
>> 4) & 0xff)) {
1428 case 0x000: /* WOR */
1429 wrd
= (insn
>> 12) & 0xf;
1430 rd0
= (insn
>> 0) & 0xf;
1431 rd1
= (insn
>> 16) & 0xf;
1432 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1433 gen_op_iwmmxt_orq_M0_wRn(rd1
);
1434 gen_op_iwmmxt_setpsr_nz();
1435 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1436 gen_op_iwmmxt_set_mup();
1437 gen_op_iwmmxt_set_cup();
1439 case 0x011: /* TMCR */
1442 rd
= (insn
>> 12) & 0xf;
1443 wrd
= (insn
>> 16) & 0xf;
1445 case ARM_IWMMXT_wCID
:
1446 case ARM_IWMMXT_wCASF
:
1448 case ARM_IWMMXT_wCon
:
1449 gen_op_iwmmxt_set_cup();
1451 case ARM_IWMMXT_wCSSF
:
1452 tmp
= iwmmxt_load_creg(wrd
);
1453 tmp2
= load_reg(s
, rd
);
1454 tcg_gen_andc_i32(tmp
, tmp
, tmp2
);
1455 tcg_temp_free_i32(tmp2
);
1456 iwmmxt_store_creg(wrd
, tmp
);
1458 case ARM_IWMMXT_wCGR0
:
1459 case ARM_IWMMXT_wCGR1
:
1460 case ARM_IWMMXT_wCGR2
:
1461 case ARM_IWMMXT_wCGR3
:
1462 gen_op_iwmmxt_set_cup();
1463 tmp
= load_reg(s
, rd
);
1464 iwmmxt_store_creg(wrd
, tmp
);
1470 case 0x100: /* WXOR */
1471 wrd
= (insn
>> 12) & 0xf;
1472 rd0
= (insn
>> 0) & 0xf;
1473 rd1
= (insn
>> 16) & 0xf;
1474 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1475 gen_op_iwmmxt_xorq_M0_wRn(rd1
);
1476 gen_op_iwmmxt_setpsr_nz();
1477 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1478 gen_op_iwmmxt_set_mup();
1479 gen_op_iwmmxt_set_cup();
1481 case 0x111: /* TMRC */
1484 rd
= (insn
>> 12) & 0xf;
1485 wrd
= (insn
>> 16) & 0xf;
1486 tmp
= iwmmxt_load_creg(wrd
);
1487 store_reg(s
, rd
, tmp
);
1489 case 0x300: /* WANDN */
1490 wrd
= (insn
>> 12) & 0xf;
1491 rd0
= (insn
>> 0) & 0xf;
1492 rd1
= (insn
>> 16) & 0xf;
1493 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1494 tcg_gen_neg_i64(cpu_M0
, cpu_M0
);
1495 gen_op_iwmmxt_andq_M0_wRn(rd1
);
1496 gen_op_iwmmxt_setpsr_nz();
1497 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1498 gen_op_iwmmxt_set_mup();
1499 gen_op_iwmmxt_set_cup();
1501 case 0x200: /* WAND */
1502 wrd
= (insn
>> 12) & 0xf;
1503 rd0
= (insn
>> 0) & 0xf;
1504 rd1
= (insn
>> 16) & 0xf;
1505 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1506 gen_op_iwmmxt_andq_M0_wRn(rd1
);
1507 gen_op_iwmmxt_setpsr_nz();
1508 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1509 gen_op_iwmmxt_set_mup();
1510 gen_op_iwmmxt_set_cup();
1512 case 0x810: case 0xa10: /* WMADD */
1513 wrd
= (insn
>> 12) & 0xf;
1514 rd0
= (insn
>> 0) & 0xf;
1515 rd1
= (insn
>> 16) & 0xf;
1516 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1517 if (insn
& (1 << 21))
1518 gen_op_iwmmxt_maddsq_M0_wRn(rd1
);
1520 gen_op_iwmmxt_madduq_M0_wRn(rd1
);
1521 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1522 gen_op_iwmmxt_set_mup();
1524 case 0x10e: case 0x50e: case 0x90e: case 0xd0e: /* WUNPCKIL */
1525 wrd
= (insn
>> 12) & 0xf;
1526 rd0
= (insn
>> 16) & 0xf;
1527 rd1
= (insn
>> 0) & 0xf;
1528 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1529 switch ((insn
>> 22) & 3) {
1531 gen_op_iwmmxt_unpacklb_M0_wRn(rd1
);
1534 gen_op_iwmmxt_unpacklw_M0_wRn(rd1
);
1537 gen_op_iwmmxt_unpackll_M0_wRn(rd1
);
1542 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1543 gen_op_iwmmxt_set_mup();
1544 gen_op_iwmmxt_set_cup();
1546 case 0x10c: case 0x50c: case 0x90c: case 0xd0c: /* WUNPCKIH */
1547 wrd
= (insn
>> 12) & 0xf;
1548 rd0
= (insn
>> 16) & 0xf;
1549 rd1
= (insn
>> 0) & 0xf;
1550 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1551 switch ((insn
>> 22) & 3) {
1553 gen_op_iwmmxt_unpackhb_M0_wRn(rd1
);
1556 gen_op_iwmmxt_unpackhw_M0_wRn(rd1
);
1559 gen_op_iwmmxt_unpackhl_M0_wRn(rd1
);
1564 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1565 gen_op_iwmmxt_set_mup();
1566 gen_op_iwmmxt_set_cup();
1568 case 0x012: case 0x112: case 0x412: case 0x512: /* WSAD */
1569 wrd
= (insn
>> 12) & 0xf;
1570 rd0
= (insn
>> 16) & 0xf;
1571 rd1
= (insn
>> 0) & 0xf;
1572 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1573 if (insn
& (1 << 22))
1574 gen_op_iwmmxt_sadw_M0_wRn(rd1
);
1576 gen_op_iwmmxt_sadb_M0_wRn(rd1
);
1577 if (!(insn
& (1 << 20)))
1578 gen_op_iwmmxt_addl_M0_wRn(wrd
);
1579 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1580 gen_op_iwmmxt_set_mup();
1582 case 0x010: case 0x110: case 0x210: case 0x310: /* WMUL */
1583 wrd
= (insn
>> 12) & 0xf;
1584 rd0
= (insn
>> 16) & 0xf;
1585 rd1
= (insn
>> 0) & 0xf;
1586 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1587 if (insn
& (1 << 21)) {
1588 if (insn
& (1 << 20))
1589 gen_op_iwmmxt_mulshw_M0_wRn(rd1
);
1591 gen_op_iwmmxt_mulslw_M0_wRn(rd1
);
1593 if (insn
& (1 << 20))
1594 gen_op_iwmmxt_muluhw_M0_wRn(rd1
);
1596 gen_op_iwmmxt_mululw_M0_wRn(rd1
);
1598 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1599 gen_op_iwmmxt_set_mup();
1601 case 0x410: case 0x510: case 0x610: case 0x710: /* WMAC */
1602 wrd
= (insn
>> 12) & 0xf;
1603 rd0
= (insn
>> 16) & 0xf;
1604 rd1
= (insn
>> 0) & 0xf;
1605 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1606 if (insn
& (1 << 21))
1607 gen_op_iwmmxt_macsw_M0_wRn(rd1
);
1609 gen_op_iwmmxt_macuw_M0_wRn(rd1
);
1610 if (!(insn
& (1 << 20))) {
1611 iwmmxt_load_reg(cpu_V1
, wrd
);
1612 tcg_gen_add_i64(cpu_M0
, cpu_M0
, cpu_V1
);
1614 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1615 gen_op_iwmmxt_set_mup();
1617 case 0x006: case 0x406: case 0x806: case 0xc06: /* WCMPEQ */
1618 wrd
= (insn
>> 12) & 0xf;
1619 rd0
= (insn
>> 16) & 0xf;
1620 rd1
= (insn
>> 0) & 0xf;
1621 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1622 switch ((insn
>> 22) & 3) {
1624 gen_op_iwmmxt_cmpeqb_M0_wRn(rd1
);
1627 gen_op_iwmmxt_cmpeqw_M0_wRn(rd1
);
1630 gen_op_iwmmxt_cmpeql_M0_wRn(rd1
);
1635 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1636 gen_op_iwmmxt_set_mup();
1637 gen_op_iwmmxt_set_cup();
1639 case 0x800: case 0x900: case 0xc00: case 0xd00: /* WAVG2 */
1640 wrd
= (insn
>> 12) & 0xf;
1641 rd0
= (insn
>> 16) & 0xf;
1642 rd1
= (insn
>> 0) & 0xf;
1643 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1644 if (insn
& (1 << 22)) {
1645 if (insn
& (1 << 20))
1646 gen_op_iwmmxt_avgw1_M0_wRn(rd1
);
1648 gen_op_iwmmxt_avgw0_M0_wRn(rd1
);
1650 if (insn
& (1 << 20))
1651 gen_op_iwmmxt_avgb1_M0_wRn(rd1
);
1653 gen_op_iwmmxt_avgb0_M0_wRn(rd1
);
1655 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1656 gen_op_iwmmxt_set_mup();
1657 gen_op_iwmmxt_set_cup();
1659 case 0x802: case 0x902: case 0xa02: case 0xb02: /* WALIGNR */
1660 wrd
= (insn
>> 12) & 0xf;
1661 rd0
= (insn
>> 16) & 0xf;
1662 rd1
= (insn
>> 0) & 0xf;
1663 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1664 tmp
= iwmmxt_load_creg(ARM_IWMMXT_wCGR0
+ ((insn
>> 20) & 3));
1665 tcg_gen_andi_i32(tmp
, tmp
, 7);
1666 iwmmxt_load_reg(cpu_V1
, rd1
);
1667 gen_helper_iwmmxt_align(cpu_M0
, cpu_M0
, cpu_V1
, tmp
);
1668 tcg_temp_free_i32(tmp
);
1669 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1670 gen_op_iwmmxt_set_mup();
1672 case 0x601: case 0x605: case 0x609: case 0x60d: /* TINSR */
1673 if (((insn
>> 6) & 3) == 3)
1675 rd
= (insn
>> 12) & 0xf;
1676 wrd
= (insn
>> 16) & 0xf;
1677 tmp
= load_reg(s
, rd
);
1678 gen_op_iwmmxt_movq_M0_wRn(wrd
);
1679 switch ((insn
>> 6) & 3) {
1681 tmp2
= tcg_const_i32(0xff);
1682 tmp3
= tcg_const_i32((insn
& 7) << 3);
1685 tmp2
= tcg_const_i32(0xffff);
1686 tmp3
= tcg_const_i32((insn
& 3) << 4);
1689 tmp2
= tcg_const_i32(0xffffffff);
1690 tmp3
= tcg_const_i32((insn
& 1) << 5);
1696 gen_helper_iwmmxt_insr(cpu_M0
, cpu_M0
, tmp
, tmp2
, tmp3
);
1697 tcg_temp_free(tmp3
);
1698 tcg_temp_free(tmp2
);
1699 tcg_temp_free_i32(tmp
);
1700 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1701 gen_op_iwmmxt_set_mup();
1703 case 0x107: case 0x507: case 0x907: case 0xd07: /* TEXTRM */
1704 rd
= (insn
>> 12) & 0xf;
1705 wrd
= (insn
>> 16) & 0xf;
1706 if (rd
== 15 || ((insn
>> 22) & 3) == 3)
1708 gen_op_iwmmxt_movq_M0_wRn(wrd
);
1709 tmp
= tcg_temp_new_i32();
1710 switch ((insn
>> 22) & 3) {
1712 tcg_gen_shri_i64(cpu_M0
, cpu_M0
, (insn
& 7) << 3);
1713 tcg_gen_trunc_i64_i32(tmp
, cpu_M0
);
1715 tcg_gen_ext8s_i32(tmp
, tmp
);
1717 tcg_gen_andi_i32(tmp
, tmp
, 0xff);
1721 tcg_gen_shri_i64(cpu_M0
, cpu_M0
, (insn
& 3) << 4);
1722 tcg_gen_trunc_i64_i32(tmp
, cpu_M0
);
1724 tcg_gen_ext16s_i32(tmp
, tmp
);
1726 tcg_gen_andi_i32(tmp
, tmp
, 0xffff);
1730 tcg_gen_shri_i64(cpu_M0
, cpu_M0
, (insn
& 1) << 5);
1731 tcg_gen_trunc_i64_i32(tmp
, cpu_M0
);
1734 store_reg(s
, rd
, tmp
);
1736 case 0x117: case 0x517: case 0x917: case 0xd17: /* TEXTRC */
1737 if ((insn
& 0x000ff008) != 0x0003f000 || ((insn
>> 22) & 3) == 3)
1739 tmp
= iwmmxt_load_creg(ARM_IWMMXT_wCASF
);
1740 switch ((insn
>> 22) & 3) {
1742 tcg_gen_shri_i32(tmp
, tmp
, ((insn
& 7) << 2) + 0);
1745 tcg_gen_shri_i32(tmp
, tmp
, ((insn
& 3) << 3) + 4);
1748 tcg_gen_shri_i32(tmp
, tmp
, ((insn
& 1) << 4) + 12);
1751 tcg_gen_shli_i32(tmp
, tmp
, 28);
1753 tcg_temp_free_i32(tmp
);
1755 case 0x401: case 0x405: case 0x409: case 0x40d: /* TBCST */
1756 if (((insn
>> 6) & 3) == 3)
1758 rd
= (insn
>> 12) & 0xf;
1759 wrd
= (insn
>> 16) & 0xf;
1760 tmp
= load_reg(s
, rd
);
1761 switch ((insn
>> 6) & 3) {
1763 gen_helper_iwmmxt_bcstb(cpu_M0
, tmp
);
1766 gen_helper_iwmmxt_bcstw(cpu_M0
, tmp
);
1769 gen_helper_iwmmxt_bcstl(cpu_M0
, tmp
);
1772 tcg_temp_free_i32(tmp
);
1773 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1774 gen_op_iwmmxt_set_mup();
1776 case 0x113: case 0x513: case 0x913: case 0xd13: /* TANDC */
1777 if ((insn
& 0x000ff00f) != 0x0003f000 || ((insn
>> 22) & 3) == 3)
1779 tmp
= iwmmxt_load_creg(ARM_IWMMXT_wCASF
);
1780 tmp2
= tcg_temp_new_i32();
1781 tcg_gen_mov_i32(tmp2
, tmp
);
1782 switch ((insn
>> 22) & 3) {
1784 for (i
= 0; i
< 7; i
++) {
1785 tcg_gen_shli_i32(tmp2
, tmp2
, 4);
1786 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
1790 for (i
= 0; i
< 3; i
++) {
1791 tcg_gen_shli_i32(tmp2
, tmp2
, 8);
1792 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
1796 tcg_gen_shli_i32(tmp2
, tmp2
, 16);
1797 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
1801 tcg_temp_free_i32(tmp2
);
1802 tcg_temp_free_i32(tmp
);
1804 case 0x01c: case 0x41c: case 0x81c: case 0xc1c: /* WACC */
1805 wrd
= (insn
>> 12) & 0xf;
1806 rd0
= (insn
>> 16) & 0xf;
1807 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1808 switch ((insn
>> 22) & 3) {
1810 gen_helper_iwmmxt_addcb(cpu_M0
, cpu_M0
);
1813 gen_helper_iwmmxt_addcw(cpu_M0
, cpu_M0
);
1816 gen_helper_iwmmxt_addcl(cpu_M0
, cpu_M0
);
1821 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1822 gen_op_iwmmxt_set_mup();
1824 case 0x115: case 0x515: case 0x915: case 0xd15: /* TORC */
1825 if ((insn
& 0x000ff00f) != 0x0003f000 || ((insn
>> 22) & 3) == 3)
1827 tmp
= iwmmxt_load_creg(ARM_IWMMXT_wCASF
);
1828 tmp2
= tcg_temp_new_i32();
1829 tcg_gen_mov_i32(tmp2
, tmp
);
1830 switch ((insn
>> 22) & 3) {
1832 for (i
= 0; i
< 7; i
++) {
1833 tcg_gen_shli_i32(tmp2
, tmp2
, 4);
1834 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
1838 for (i
= 0; i
< 3; i
++) {
1839 tcg_gen_shli_i32(tmp2
, tmp2
, 8);
1840 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
1844 tcg_gen_shli_i32(tmp2
, tmp2
, 16);
1845 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
1849 tcg_temp_free_i32(tmp2
);
1850 tcg_temp_free_i32(tmp
);
1852 case 0x103: case 0x503: case 0x903: case 0xd03: /* TMOVMSK */
1853 rd
= (insn
>> 12) & 0xf;
1854 rd0
= (insn
>> 16) & 0xf;
1855 if ((insn
& 0xf) != 0 || ((insn
>> 22) & 3) == 3)
1857 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1858 tmp
= tcg_temp_new_i32();
1859 switch ((insn
>> 22) & 3) {
1861 gen_helper_iwmmxt_msbb(tmp
, cpu_M0
);
1864 gen_helper_iwmmxt_msbw(tmp
, cpu_M0
);
1867 gen_helper_iwmmxt_msbl(tmp
, cpu_M0
);
1870 store_reg(s
, rd
, tmp
);
1872 case 0x106: case 0x306: case 0x506: case 0x706: /* WCMPGT */
1873 case 0x906: case 0xb06: case 0xd06: case 0xf06:
1874 wrd
= (insn
>> 12) & 0xf;
1875 rd0
= (insn
>> 16) & 0xf;
1876 rd1
= (insn
>> 0) & 0xf;
1877 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1878 switch ((insn
>> 22) & 3) {
1880 if (insn
& (1 << 21))
1881 gen_op_iwmmxt_cmpgtsb_M0_wRn(rd1
);
1883 gen_op_iwmmxt_cmpgtub_M0_wRn(rd1
);
1886 if (insn
& (1 << 21))
1887 gen_op_iwmmxt_cmpgtsw_M0_wRn(rd1
);
1889 gen_op_iwmmxt_cmpgtuw_M0_wRn(rd1
);
1892 if (insn
& (1 << 21))
1893 gen_op_iwmmxt_cmpgtsl_M0_wRn(rd1
);
1895 gen_op_iwmmxt_cmpgtul_M0_wRn(rd1
);
1900 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1901 gen_op_iwmmxt_set_mup();
1902 gen_op_iwmmxt_set_cup();
1904 case 0x00e: case 0x20e: case 0x40e: case 0x60e: /* WUNPCKEL */
1905 case 0x80e: case 0xa0e: case 0xc0e: case 0xe0e:
1906 wrd
= (insn
>> 12) & 0xf;
1907 rd0
= (insn
>> 16) & 0xf;
1908 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1909 switch ((insn
>> 22) & 3) {
1911 if (insn
& (1 << 21))
1912 gen_op_iwmmxt_unpacklsb_M0();
1914 gen_op_iwmmxt_unpacklub_M0();
1917 if (insn
& (1 << 21))
1918 gen_op_iwmmxt_unpacklsw_M0();
1920 gen_op_iwmmxt_unpackluw_M0();
1923 if (insn
& (1 << 21))
1924 gen_op_iwmmxt_unpacklsl_M0();
1926 gen_op_iwmmxt_unpacklul_M0();
1931 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1932 gen_op_iwmmxt_set_mup();
1933 gen_op_iwmmxt_set_cup();
1935 case 0x00c: case 0x20c: case 0x40c: case 0x60c: /* WUNPCKEH */
1936 case 0x80c: case 0xa0c: case 0xc0c: case 0xe0c:
1937 wrd
= (insn
>> 12) & 0xf;
1938 rd0
= (insn
>> 16) & 0xf;
1939 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1940 switch ((insn
>> 22) & 3) {
1942 if (insn
& (1 << 21))
1943 gen_op_iwmmxt_unpackhsb_M0();
1945 gen_op_iwmmxt_unpackhub_M0();
1948 if (insn
& (1 << 21))
1949 gen_op_iwmmxt_unpackhsw_M0();
1951 gen_op_iwmmxt_unpackhuw_M0();
1954 if (insn
& (1 << 21))
1955 gen_op_iwmmxt_unpackhsl_M0();
1957 gen_op_iwmmxt_unpackhul_M0();
1962 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1963 gen_op_iwmmxt_set_mup();
1964 gen_op_iwmmxt_set_cup();
1966 case 0x204: case 0x604: case 0xa04: case 0xe04: /* WSRL */
1967 case 0x214: case 0x614: case 0xa14: case 0xe14:
1968 if (((insn
>> 22) & 3) == 0)
1970 wrd
= (insn
>> 12) & 0xf;
1971 rd0
= (insn
>> 16) & 0xf;
1972 gen_op_iwmmxt_movq_M0_wRn(rd0
);
1973 tmp
= tcg_temp_new_i32();
1974 if (gen_iwmmxt_shift(insn
, 0xff, tmp
)) {
1975 tcg_temp_free_i32(tmp
);
1978 switch ((insn
>> 22) & 3) {
1980 gen_helper_iwmmxt_srlw(cpu_M0
, cpu_M0
, tmp
);
1983 gen_helper_iwmmxt_srll(cpu_M0
, cpu_M0
, tmp
);
1986 gen_helper_iwmmxt_srlq(cpu_M0
, cpu_M0
, tmp
);
1989 tcg_temp_free_i32(tmp
);
1990 gen_op_iwmmxt_movq_wRn_M0(wrd
);
1991 gen_op_iwmmxt_set_mup();
1992 gen_op_iwmmxt_set_cup();
1994 case 0x004: case 0x404: case 0x804: case 0xc04: /* WSRA */
1995 case 0x014: case 0x414: case 0x814: case 0xc14:
1996 if (((insn
>> 22) & 3) == 0)
1998 wrd
= (insn
>> 12) & 0xf;
1999 rd0
= (insn
>> 16) & 0xf;
2000 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2001 tmp
= tcg_temp_new_i32();
2002 if (gen_iwmmxt_shift(insn
, 0xff, tmp
)) {
2003 tcg_temp_free_i32(tmp
);
2006 switch ((insn
>> 22) & 3) {
2008 gen_helper_iwmmxt_sraw(cpu_M0
, cpu_M0
, tmp
);
2011 gen_helper_iwmmxt_sral(cpu_M0
, cpu_M0
, tmp
);
2014 gen_helper_iwmmxt_sraq(cpu_M0
, cpu_M0
, tmp
);
2017 tcg_temp_free_i32(tmp
);
2018 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2019 gen_op_iwmmxt_set_mup();
2020 gen_op_iwmmxt_set_cup();
2022 case 0x104: case 0x504: case 0x904: case 0xd04: /* WSLL */
2023 case 0x114: case 0x514: case 0x914: case 0xd14:
2024 if (((insn
>> 22) & 3) == 0)
2026 wrd
= (insn
>> 12) & 0xf;
2027 rd0
= (insn
>> 16) & 0xf;
2028 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2029 tmp
= tcg_temp_new_i32();
2030 if (gen_iwmmxt_shift(insn
, 0xff, tmp
)) {
2031 tcg_temp_free_i32(tmp
);
2034 switch ((insn
>> 22) & 3) {
2036 gen_helper_iwmmxt_sllw(cpu_M0
, cpu_M0
, tmp
);
2039 gen_helper_iwmmxt_slll(cpu_M0
, cpu_M0
, tmp
);
2042 gen_helper_iwmmxt_sllq(cpu_M0
, cpu_M0
, tmp
);
2045 tcg_temp_free_i32(tmp
);
2046 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2047 gen_op_iwmmxt_set_mup();
2048 gen_op_iwmmxt_set_cup();
2050 case 0x304: case 0x704: case 0xb04: case 0xf04: /* WROR */
2051 case 0x314: case 0x714: case 0xb14: case 0xf14:
2052 if (((insn
>> 22) & 3) == 0)
2054 wrd
= (insn
>> 12) & 0xf;
2055 rd0
= (insn
>> 16) & 0xf;
2056 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2057 tmp
= tcg_temp_new_i32();
2058 switch ((insn
>> 22) & 3) {
2060 if (gen_iwmmxt_shift(insn
, 0xf, tmp
)) {
2061 tcg_temp_free_i32(tmp
);
2064 gen_helper_iwmmxt_rorw(cpu_M0
, cpu_M0
, tmp
);
2067 if (gen_iwmmxt_shift(insn
, 0x1f, tmp
)) {
2068 tcg_temp_free_i32(tmp
);
2071 gen_helper_iwmmxt_rorl(cpu_M0
, cpu_M0
, tmp
);
2074 if (gen_iwmmxt_shift(insn
, 0x3f, tmp
)) {
2075 tcg_temp_free_i32(tmp
);
2078 gen_helper_iwmmxt_rorq(cpu_M0
, cpu_M0
, tmp
);
2081 tcg_temp_free_i32(tmp
);
2082 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2083 gen_op_iwmmxt_set_mup();
2084 gen_op_iwmmxt_set_cup();
2086 case 0x116: case 0x316: case 0x516: case 0x716: /* WMIN */
2087 case 0x916: case 0xb16: case 0xd16: case 0xf16:
2088 wrd
= (insn
>> 12) & 0xf;
2089 rd0
= (insn
>> 16) & 0xf;
2090 rd1
= (insn
>> 0) & 0xf;
2091 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2092 switch ((insn
>> 22) & 3) {
2094 if (insn
& (1 << 21))
2095 gen_op_iwmmxt_minsb_M0_wRn(rd1
);
2097 gen_op_iwmmxt_minub_M0_wRn(rd1
);
2100 if (insn
& (1 << 21))
2101 gen_op_iwmmxt_minsw_M0_wRn(rd1
);
2103 gen_op_iwmmxt_minuw_M0_wRn(rd1
);
2106 if (insn
& (1 << 21))
2107 gen_op_iwmmxt_minsl_M0_wRn(rd1
);
2109 gen_op_iwmmxt_minul_M0_wRn(rd1
);
2114 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2115 gen_op_iwmmxt_set_mup();
2117 case 0x016: case 0x216: case 0x416: case 0x616: /* WMAX */
2118 case 0x816: case 0xa16: case 0xc16: case 0xe16:
2119 wrd
= (insn
>> 12) & 0xf;
2120 rd0
= (insn
>> 16) & 0xf;
2121 rd1
= (insn
>> 0) & 0xf;
2122 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2123 switch ((insn
>> 22) & 3) {
2125 if (insn
& (1 << 21))
2126 gen_op_iwmmxt_maxsb_M0_wRn(rd1
);
2128 gen_op_iwmmxt_maxub_M0_wRn(rd1
);
2131 if (insn
& (1 << 21))
2132 gen_op_iwmmxt_maxsw_M0_wRn(rd1
);
2134 gen_op_iwmmxt_maxuw_M0_wRn(rd1
);
2137 if (insn
& (1 << 21))
2138 gen_op_iwmmxt_maxsl_M0_wRn(rd1
);
2140 gen_op_iwmmxt_maxul_M0_wRn(rd1
);
2145 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2146 gen_op_iwmmxt_set_mup();
2148 case 0x002: case 0x102: case 0x202: case 0x302: /* WALIGNI */
2149 case 0x402: case 0x502: case 0x602: case 0x702:
2150 wrd
= (insn
>> 12) & 0xf;
2151 rd0
= (insn
>> 16) & 0xf;
2152 rd1
= (insn
>> 0) & 0xf;
2153 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2154 tmp
= tcg_const_i32((insn
>> 20) & 3);
2155 iwmmxt_load_reg(cpu_V1
, rd1
);
2156 gen_helper_iwmmxt_align(cpu_M0
, cpu_M0
, cpu_V1
, tmp
);
2158 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2159 gen_op_iwmmxt_set_mup();
2161 case 0x01a: case 0x11a: case 0x21a: case 0x31a: /* WSUB */
2162 case 0x41a: case 0x51a: case 0x61a: case 0x71a:
2163 case 0x81a: case 0x91a: case 0xa1a: case 0xb1a:
2164 case 0xc1a: case 0xd1a: case 0xe1a: case 0xf1a:
2165 wrd
= (insn
>> 12) & 0xf;
2166 rd0
= (insn
>> 16) & 0xf;
2167 rd1
= (insn
>> 0) & 0xf;
2168 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2169 switch ((insn
>> 20) & 0xf) {
2171 gen_op_iwmmxt_subnb_M0_wRn(rd1
);
2174 gen_op_iwmmxt_subub_M0_wRn(rd1
);
2177 gen_op_iwmmxt_subsb_M0_wRn(rd1
);
2180 gen_op_iwmmxt_subnw_M0_wRn(rd1
);
2183 gen_op_iwmmxt_subuw_M0_wRn(rd1
);
2186 gen_op_iwmmxt_subsw_M0_wRn(rd1
);
2189 gen_op_iwmmxt_subnl_M0_wRn(rd1
);
2192 gen_op_iwmmxt_subul_M0_wRn(rd1
);
2195 gen_op_iwmmxt_subsl_M0_wRn(rd1
);
2200 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2201 gen_op_iwmmxt_set_mup();
2202 gen_op_iwmmxt_set_cup();
2204 case 0x01e: case 0x11e: case 0x21e: case 0x31e: /* WSHUFH */
2205 case 0x41e: case 0x51e: case 0x61e: case 0x71e:
2206 case 0x81e: case 0x91e: case 0xa1e: case 0xb1e:
2207 case 0xc1e: case 0xd1e: case 0xe1e: case 0xf1e:
2208 wrd
= (insn
>> 12) & 0xf;
2209 rd0
= (insn
>> 16) & 0xf;
2210 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2211 tmp
= tcg_const_i32(((insn
>> 16) & 0xf0) | (insn
& 0x0f));
2212 gen_helper_iwmmxt_shufh(cpu_M0
, cpu_M0
, tmp
);
2214 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2215 gen_op_iwmmxt_set_mup();
2216 gen_op_iwmmxt_set_cup();
2218 case 0x018: case 0x118: case 0x218: case 0x318: /* WADD */
2219 case 0x418: case 0x518: case 0x618: case 0x718:
2220 case 0x818: case 0x918: case 0xa18: case 0xb18:
2221 case 0xc18: case 0xd18: case 0xe18: case 0xf18:
2222 wrd
= (insn
>> 12) & 0xf;
2223 rd0
= (insn
>> 16) & 0xf;
2224 rd1
= (insn
>> 0) & 0xf;
2225 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2226 switch ((insn
>> 20) & 0xf) {
2228 gen_op_iwmmxt_addnb_M0_wRn(rd1
);
2231 gen_op_iwmmxt_addub_M0_wRn(rd1
);
2234 gen_op_iwmmxt_addsb_M0_wRn(rd1
);
2237 gen_op_iwmmxt_addnw_M0_wRn(rd1
);
2240 gen_op_iwmmxt_adduw_M0_wRn(rd1
);
2243 gen_op_iwmmxt_addsw_M0_wRn(rd1
);
2246 gen_op_iwmmxt_addnl_M0_wRn(rd1
);
2249 gen_op_iwmmxt_addul_M0_wRn(rd1
);
2252 gen_op_iwmmxt_addsl_M0_wRn(rd1
);
2257 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2258 gen_op_iwmmxt_set_mup();
2259 gen_op_iwmmxt_set_cup();
2261 case 0x008: case 0x108: case 0x208: case 0x308: /* WPACK */
2262 case 0x408: case 0x508: case 0x608: case 0x708:
2263 case 0x808: case 0x908: case 0xa08: case 0xb08:
2264 case 0xc08: case 0xd08: case 0xe08: case 0xf08:
2265 if (!(insn
& (1 << 20)) || ((insn
>> 22) & 3) == 0)
2267 wrd
= (insn
>> 12) & 0xf;
2268 rd0
= (insn
>> 16) & 0xf;
2269 rd1
= (insn
>> 0) & 0xf;
2270 gen_op_iwmmxt_movq_M0_wRn(rd0
);
2271 switch ((insn
>> 22) & 3) {
2273 if (insn
& (1 << 21))
2274 gen_op_iwmmxt_packsw_M0_wRn(rd1
);
2276 gen_op_iwmmxt_packuw_M0_wRn(rd1
);
2279 if (insn
& (1 << 21))
2280 gen_op_iwmmxt_packsl_M0_wRn(rd1
);
2282 gen_op_iwmmxt_packul_M0_wRn(rd1
);
2285 if (insn
& (1 << 21))
2286 gen_op_iwmmxt_packsq_M0_wRn(rd1
);
2288 gen_op_iwmmxt_packuq_M0_wRn(rd1
);
2291 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2292 gen_op_iwmmxt_set_mup();
2293 gen_op_iwmmxt_set_cup();
2295 case 0x201: case 0x203: case 0x205: case 0x207:
2296 case 0x209: case 0x20b: case 0x20d: case 0x20f:
2297 case 0x211: case 0x213: case 0x215: case 0x217:
2298 case 0x219: case 0x21b: case 0x21d: case 0x21f:
2299 wrd
= (insn
>> 5) & 0xf;
2300 rd0
= (insn
>> 12) & 0xf;
2301 rd1
= (insn
>> 0) & 0xf;
2302 if (rd0
== 0xf || rd1
== 0xf)
2304 gen_op_iwmmxt_movq_M0_wRn(wrd
);
2305 tmp
= load_reg(s
, rd0
);
2306 tmp2
= load_reg(s
, rd1
);
2307 switch ((insn
>> 16) & 0xf) {
2308 case 0x0: /* TMIA */
2309 gen_helper_iwmmxt_muladdsl(cpu_M0
, cpu_M0
, tmp
, tmp2
);
2311 case 0x8: /* TMIAPH */
2312 gen_helper_iwmmxt_muladdsw(cpu_M0
, cpu_M0
, tmp
, tmp2
);
2314 case 0xc: case 0xd: case 0xe: case 0xf: /* TMIAxy */
2315 if (insn
& (1 << 16))
2316 tcg_gen_shri_i32(tmp
, tmp
, 16);
2317 if (insn
& (1 << 17))
2318 tcg_gen_shri_i32(tmp2
, tmp2
, 16);
2319 gen_helper_iwmmxt_muladdswl(cpu_M0
, cpu_M0
, tmp
, tmp2
);
2322 tcg_temp_free_i32(tmp2
);
2323 tcg_temp_free_i32(tmp
);
2326 tcg_temp_free_i32(tmp2
);
2327 tcg_temp_free_i32(tmp
);
2328 gen_op_iwmmxt_movq_wRn_M0(wrd
);
2329 gen_op_iwmmxt_set_mup();
2338 /* Disassemble an XScale DSP instruction. Returns nonzero if an error occured
2339 (ie. an undefined instruction). */
2340 static int disas_dsp_insn(CPUState
*env
, DisasContext
*s
, uint32_t insn
)
2342 int acc
, rd0
, rd1
, rdhi
, rdlo
;
2345 if ((insn
& 0x0ff00f10) == 0x0e200010) {
2346 /* Multiply with Internal Accumulate Format */
2347 rd0
= (insn
>> 12) & 0xf;
2349 acc
= (insn
>> 5) & 7;
2354 tmp
= load_reg(s
, rd0
);
2355 tmp2
= load_reg(s
, rd1
);
2356 switch ((insn
>> 16) & 0xf) {
2358 gen_helper_iwmmxt_muladdsl(cpu_M0
, cpu_M0
, tmp
, tmp2
);
2360 case 0x8: /* MIAPH */
2361 gen_helper_iwmmxt_muladdsw(cpu_M0
, cpu_M0
, tmp
, tmp2
);
2363 case 0xc: /* MIABB */
2364 case 0xd: /* MIABT */
2365 case 0xe: /* MIATB */
2366 case 0xf: /* MIATT */
2367 if (insn
& (1 << 16))
2368 tcg_gen_shri_i32(tmp
, tmp
, 16);
2369 if (insn
& (1 << 17))
2370 tcg_gen_shri_i32(tmp2
, tmp2
, 16);
2371 gen_helper_iwmmxt_muladdswl(cpu_M0
, cpu_M0
, tmp
, tmp2
);
2376 tcg_temp_free_i32(tmp2
);
2377 tcg_temp_free_i32(tmp
);
2379 gen_op_iwmmxt_movq_wRn_M0(acc
);
2383 if ((insn
& 0x0fe00ff8) == 0x0c400000) {
2384 /* Internal Accumulator Access Format */
2385 rdhi
= (insn
>> 16) & 0xf;
2386 rdlo
= (insn
>> 12) & 0xf;
2392 if (insn
& ARM_CP_RW_BIT
) { /* MRA */
2393 iwmmxt_load_reg(cpu_V0
, acc
);
2394 tcg_gen_trunc_i64_i32(cpu_R
[rdlo
], cpu_V0
);
2395 tcg_gen_shri_i64(cpu_V0
, cpu_V0
, 32);
2396 tcg_gen_trunc_i64_i32(cpu_R
[rdhi
], cpu_V0
);
2397 tcg_gen_andi_i32(cpu_R
[rdhi
], cpu_R
[rdhi
], (1 << (40 - 32)) - 1);
2399 tcg_gen_concat_i32_i64(cpu_V0
, cpu_R
[rdlo
], cpu_R
[rdhi
]);
2400 iwmmxt_store_reg(cpu_V0
, acc
);
2408 /* Disassemble system coprocessor instruction. Return nonzero if
2409 instruction is not defined. */
2410 static int disas_cp_insn(CPUState
*env
, DisasContext
*s
, uint32_t insn
)
2413 uint32_t rd
= (insn
>> 12) & 0xf;
2414 uint32_t cp
= (insn
>> 8) & 0xf;
2419 if (insn
& ARM_CP_RW_BIT
) {
2420 if (!env
->cp
[cp
].cp_read
)
2422 gen_set_pc_im(s
->pc
);
2423 tmp
= tcg_temp_new_i32();
2424 tmp2
= tcg_const_i32(insn
);
2425 gen_helper_get_cp(tmp
, cpu_env
, tmp2
);
2426 tcg_temp_free(tmp2
);
2427 store_reg(s
, rd
, tmp
);
2429 if (!env
->cp
[cp
].cp_write
)
2431 gen_set_pc_im(s
->pc
);
2432 tmp
= load_reg(s
, rd
);
2433 tmp2
= tcg_const_i32(insn
);
2434 gen_helper_set_cp(cpu_env
, tmp2
, tmp
);
2435 tcg_temp_free(tmp2
);
2436 tcg_temp_free_i32(tmp
);
2441 static int cp15_user_ok(uint32_t insn
)
2443 int cpn
= (insn
>> 16) & 0xf;
2444 int cpm
= insn
& 0xf;
2445 int op
= ((insn
>> 5) & 7) | ((insn
>> 18) & 0x38);
2447 if (cpn
== 13 && cpm
== 0) {
2449 if (op
== 2 || (op
== 3 && (insn
& ARM_CP_RW_BIT
)))
2453 /* ISB, DSB, DMB. */
2454 if ((cpm
== 5 && op
== 4)
2455 || (cpm
== 10 && (op
== 4 || op
== 5)))
2461 static int cp15_tls_load_store(CPUState
*env
, DisasContext
*s
, uint32_t insn
, uint32_t rd
)
2464 int cpn
= (insn
>> 16) & 0xf;
2465 int cpm
= insn
& 0xf;
2466 int op
= ((insn
>> 5) & 7) | ((insn
>> 18) & 0x38);
2468 if (!arm_feature(env
, ARM_FEATURE_V6K
))
2471 if (!(cpn
== 13 && cpm
== 0))
2474 if (insn
& ARM_CP_RW_BIT
) {
2477 tmp
= load_cpu_field(cp15
.c13_tls1
);
2480 tmp
= load_cpu_field(cp15
.c13_tls2
);
2483 tmp
= load_cpu_field(cp15
.c13_tls3
);
2488 store_reg(s
, rd
, tmp
);
2491 tmp
= load_reg(s
, rd
);
2494 store_cpu_field(tmp
, cp15
.c13_tls1
);
2497 store_cpu_field(tmp
, cp15
.c13_tls2
);
2500 store_cpu_field(tmp
, cp15
.c13_tls3
);
2503 tcg_temp_free_i32(tmp
);
2510 /* Disassemble system coprocessor (cp15) instruction. Return nonzero if
2511 instruction is not defined. */
2512 static int disas_cp15_insn(CPUState
*env
, DisasContext
*s
, uint32_t insn
)
2517 /* M profile cores use memory mapped registers instead of cp15. */
2518 if (arm_feature(env
, ARM_FEATURE_M
))
2521 if ((insn
& (1 << 25)) == 0) {
2522 if (insn
& (1 << 20)) {
2526 /* mcrr. Used for block cache operations, so implement as no-op. */
2529 if ((insn
& (1 << 4)) == 0) {
2533 if (IS_USER(s
) && !cp15_user_ok(insn
)) {
2537 /* Pre-v7 versions of the architecture implemented WFI via coprocessor
2538 * instructions rather than a separate instruction.
2540 if ((insn
& 0x0fff0fff) == 0x0e070f90) {
2541 /* 0,c7,c0,4: Standard v6 WFI (also used in some pre-v6 cores).
2542 * In v7, this must NOP.
2544 if (!arm_feature(env
, ARM_FEATURE_V7
)) {
2545 /* Wait for interrupt. */
2546 gen_set_pc_im(s
->pc
);
2547 s
->is_jmp
= DISAS_WFI
;
2552 if ((insn
& 0x0fff0fff) == 0x0e070f58) {
2553 /* 0,c7,c8,2: Not all pre-v6 cores implemented this WFI,
2554 * so this is slightly over-broad.
2556 if (!arm_feature(env
, ARM_FEATURE_V6
)) {
2557 /* Wait for interrupt. */
2558 gen_set_pc_im(s
->pc
);
2559 s
->is_jmp
= DISAS_WFI
;
2562 /* Otherwise fall through to handle via helper function.
2563 * In particular, on v7 and some v6 cores this is one of
2564 * the VA-PA registers.
2568 rd
= (insn
>> 12) & 0xf;
2570 if (cp15_tls_load_store(env
, s
, insn
, rd
))
2573 tmp2
= tcg_const_i32(insn
);
2574 if (insn
& ARM_CP_RW_BIT
) {
2575 tmp
= tcg_temp_new_i32();
2576 gen_helper_get_cp15(tmp
, cpu_env
, tmp2
);
2577 /* If the destination register is r15 then sets condition codes. */
2579 store_reg(s
, rd
, tmp
);
2581 tcg_temp_free_i32(tmp
);
2583 tmp
= load_reg(s
, rd
);
2584 gen_helper_set_cp15(cpu_env
, tmp2
, tmp
);
2585 tcg_temp_free_i32(tmp
);
2586 /* Normally we would always end the TB here, but Linux
2587 * arch/arm/mach-pxa/sleep.S expects two instructions following
2588 * an MMU enable to execute from cache. Imitate this behaviour. */
2589 if (!arm_feature(env
, ARM_FEATURE_XSCALE
) ||
2590 (insn
& 0x0fff0fff) != 0x0e010f10)
2593 tcg_temp_free_i32(tmp2
);
2597 #define VFP_REG_SHR(x, n) (((n) > 0) ? (x) >> (n) : (x) << -(n))
2598 #define VFP_SREG(insn, bigbit, smallbit) \
2599 ((VFP_REG_SHR(insn, bigbit - 1) & 0x1e) | (((insn) >> (smallbit)) & 1))
2600 #define VFP_DREG(reg, insn, bigbit, smallbit) do { \
2601 if (arm_feature(env, ARM_FEATURE_VFP3)) { \
2602 reg = (((insn) >> (bigbit)) & 0x0f) \
2603 | (((insn) >> ((smallbit) - 4)) & 0x10); \
2605 if (insn & (1 << (smallbit))) \
2607 reg = ((insn) >> (bigbit)) & 0x0f; \
2610 #define VFP_SREG_D(insn) VFP_SREG(insn, 12, 22)
2611 #define VFP_DREG_D(reg, insn) VFP_DREG(reg, insn, 12, 22)
2612 #define VFP_SREG_N(insn) VFP_SREG(insn, 16, 7)
2613 #define VFP_DREG_N(reg, insn) VFP_DREG(reg, insn, 16, 7)
2614 #define VFP_SREG_M(insn) VFP_SREG(insn, 0, 5)
2615 #define VFP_DREG_M(reg, insn) VFP_DREG(reg, insn, 0, 5)
2617 /* Move between integer and VFP cores. */
2618 static TCGv
gen_vfp_mrs(void)
2620 TCGv tmp
= tcg_temp_new_i32();
2621 tcg_gen_mov_i32(tmp
, cpu_F0s
);
2625 static void gen_vfp_msr(TCGv tmp
)
2627 tcg_gen_mov_i32(cpu_F0s
, tmp
);
2628 tcg_temp_free_i32(tmp
);
2631 static void gen_neon_dup_u8(TCGv var
, int shift
)
2633 TCGv tmp
= tcg_temp_new_i32();
2635 tcg_gen_shri_i32(var
, var
, shift
);
2636 tcg_gen_ext8u_i32(var
, var
);
2637 tcg_gen_shli_i32(tmp
, var
, 8);
2638 tcg_gen_or_i32(var
, var
, tmp
);
2639 tcg_gen_shli_i32(tmp
, var
, 16);
2640 tcg_gen_or_i32(var
, var
, tmp
);
2641 tcg_temp_free_i32(tmp
);
2644 static void gen_neon_dup_low16(TCGv var
)
2646 TCGv tmp
= tcg_temp_new_i32();
2647 tcg_gen_ext16u_i32(var
, var
);
2648 tcg_gen_shli_i32(tmp
, var
, 16);
2649 tcg_gen_or_i32(var
, var
, tmp
);
2650 tcg_temp_free_i32(tmp
);
2653 static void gen_neon_dup_high16(TCGv var
)
2655 TCGv tmp
= tcg_temp_new_i32();
2656 tcg_gen_andi_i32(var
, var
, 0xffff0000);
2657 tcg_gen_shri_i32(tmp
, var
, 16);
2658 tcg_gen_or_i32(var
, var
, tmp
);
2659 tcg_temp_free_i32(tmp
);
2662 static TCGv
gen_load_and_replicate(DisasContext
*s
, TCGv addr
, int size
)
2664 /* Load a single Neon element and replicate into a 32 bit TCG reg */
2668 tmp
= gen_ld8u(addr
, IS_USER(s
));
2669 gen_neon_dup_u8(tmp
, 0);
2672 tmp
= gen_ld16u(addr
, IS_USER(s
));
2673 gen_neon_dup_low16(tmp
);
2676 tmp
= gen_ld32(addr
, IS_USER(s
));
2678 default: /* Avoid compiler warnings. */
2684 /* Disassemble a VFP instruction. Returns nonzero if an error occured
2685 (ie. an undefined instruction). */
2686 static int disas_vfp_insn(CPUState
* env
, DisasContext
*s
, uint32_t insn
)
2688 uint32_t rd
, rn
, rm
, op
, i
, n
, offset
, delta_d
, delta_m
, bank_mask
;
2694 if (!arm_feature(env
, ARM_FEATURE_VFP
))
2697 if (!s
->vfp_enabled
) {
2698 /* VFP disabled. Only allow fmxr/fmrx to/from some control regs. */
2699 if ((insn
& 0x0fe00fff) != 0x0ee00a10)
2701 rn
= (insn
>> 16) & 0xf;
2702 if (rn
!= ARM_VFP_FPSID
&& rn
!= ARM_VFP_FPEXC
2703 && rn
!= ARM_VFP_MVFR1
&& rn
!= ARM_VFP_MVFR0
)
2706 dp
= ((insn
& 0xf00) == 0xb00);
2707 switch ((insn
>> 24) & 0xf) {
2709 if (insn
& (1 << 4)) {
2710 /* single register transfer */
2711 rd
= (insn
>> 12) & 0xf;
2716 VFP_DREG_N(rn
, insn
);
2719 if (insn
& 0x00c00060
2720 && !arm_feature(env
, ARM_FEATURE_NEON
))
2723 pass
= (insn
>> 21) & 1;
2724 if (insn
& (1 << 22)) {
2726 offset
= ((insn
>> 5) & 3) * 8;
2727 } else if (insn
& (1 << 5)) {
2729 offset
= (insn
& (1 << 6)) ? 16 : 0;
2734 if (insn
& ARM_CP_RW_BIT
) {
2736 tmp
= neon_load_reg(rn
, pass
);
2740 tcg_gen_shri_i32(tmp
, tmp
, offset
);
2741 if (insn
& (1 << 23))
2747 if (insn
& (1 << 23)) {
2749 tcg_gen_shri_i32(tmp
, tmp
, 16);
2755 tcg_gen_sari_i32(tmp
, tmp
, 16);
2764 store_reg(s
, rd
, tmp
);
2767 tmp
= load_reg(s
, rd
);
2768 if (insn
& (1 << 23)) {
2771 gen_neon_dup_u8(tmp
, 0);
2772 } else if (size
== 1) {
2773 gen_neon_dup_low16(tmp
);
2775 for (n
= 0; n
<= pass
* 2; n
++) {
2776 tmp2
= tcg_temp_new_i32();
2777 tcg_gen_mov_i32(tmp2
, tmp
);
2778 neon_store_reg(rn
, n
, tmp2
);
2780 neon_store_reg(rn
, n
, tmp
);
2785 tmp2
= neon_load_reg(rn
, pass
);
2786 gen_bfi(tmp
, tmp2
, tmp
, offset
, 0xff);
2787 tcg_temp_free_i32(tmp2
);
2790 tmp2
= neon_load_reg(rn
, pass
);
2791 gen_bfi(tmp
, tmp2
, tmp
, offset
, 0xffff);
2792 tcg_temp_free_i32(tmp2
);
2797 neon_store_reg(rn
, pass
, tmp
);
2801 if ((insn
& 0x6f) != 0x00)
2803 rn
= VFP_SREG_N(insn
);
2804 if (insn
& ARM_CP_RW_BIT
) {
2806 if (insn
& (1 << 21)) {
2807 /* system register */
2812 /* VFP2 allows access to FSID from userspace.
2813 VFP3 restricts all id registers to privileged
2816 && arm_feature(env
, ARM_FEATURE_VFP3
))
2818 tmp
= load_cpu_field(vfp
.xregs
[rn
]);
2823 tmp
= load_cpu_field(vfp
.xregs
[rn
]);
2825 case ARM_VFP_FPINST
:
2826 case ARM_VFP_FPINST2
:
2827 /* Not present in VFP3. */
2829 || arm_feature(env
, ARM_FEATURE_VFP3
))
2831 tmp
= load_cpu_field(vfp
.xregs
[rn
]);
2835 tmp
= load_cpu_field(vfp
.xregs
[ARM_VFP_FPSCR
]);
2836 tcg_gen_andi_i32(tmp
, tmp
, 0xf0000000);
2838 tmp
= tcg_temp_new_i32();
2839 gen_helper_vfp_get_fpscr(tmp
, cpu_env
);
2845 || !arm_feature(env
, ARM_FEATURE_VFP3
))
2847 tmp
= load_cpu_field(vfp
.xregs
[rn
]);
2853 gen_mov_F0_vreg(0, rn
);
2854 tmp
= gen_vfp_mrs();
2857 /* Set the 4 flag bits in the CPSR. */
2859 tcg_temp_free_i32(tmp
);
2861 store_reg(s
, rd
, tmp
);
2865 tmp
= load_reg(s
, rd
);
2866 if (insn
& (1 << 21)) {
2868 /* system register */
2873 /* Writes are ignored. */
2876 gen_helper_vfp_set_fpscr(cpu_env
, tmp
);
2877 tcg_temp_free_i32(tmp
);
2883 /* TODO: VFP subarchitecture support.
2884 * For now, keep the EN bit only */
2885 tcg_gen_andi_i32(tmp
, tmp
, 1 << 30);
2886 store_cpu_field(tmp
, vfp
.xregs
[rn
]);
2889 case ARM_VFP_FPINST
:
2890 case ARM_VFP_FPINST2
:
2891 store_cpu_field(tmp
, vfp
.xregs
[rn
]);
2898 gen_mov_vreg_F0(0, rn
);
2903 /* data processing */
2904 /* The opcode is in bits 23, 21, 20 and 6. */
2905 op
= ((insn
>> 20) & 8) | ((insn
>> 19) & 6) | ((insn
>> 6) & 1);
2909 rn
= ((insn
>> 15) & 0x1e) | ((insn
>> 7) & 1);
2911 /* rn is register number */
2912 VFP_DREG_N(rn
, insn
);
2915 if (op
== 15 && (rn
== 15 || ((rn
& 0x1c) == 0x18))) {
2916 /* Integer or single precision destination. */
2917 rd
= VFP_SREG_D(insn
);
2919 VFP_DREG_D(rd
, insn
);
2922 (((rn
& 0x1c) == 0x10) || ((rn
& 0x14) == 0x14))) {
2923 /* VCVT from int is always from S reg regardless of dp bit.
2924 * VCVT with immediate frac_bits has same format as SREG_M
2926 rm
= VFP_SREG_M(insn
);
2928 VFP_DREG_M(rm
, insn
);
2931 rn
= VFP_SREG_N(insn
);
2932 if (op
== 15 && rn
== 15) {
2933 /* Double precision destination. */
2934 VFP_DREG_D(rd
, insn
);
2936 rd
= VFP_SREG_D(insn
);
2938 /* NB that we implicitly rely on the encoding for the frac_bits
2939 * in VCVT of fixed to float being the same as that of an SREG_M
2941 rm
= VFP_SREG_M(insn
);
2944 veclen
= s
->vec_len
;
2945 if (op
== 15 && rn
> 3)
2948 /* Shut up compiler warnings. */
2959 /* Figure out what type of vector operation this is. */
2960 if ((rd
& bank_mask
) == 0) {
2965 delta_d
= (s
->vec_stride
>> 1) + 1;
2967 delta_d
= s
->vec_stride
+ 1;
2969 if ((rm
& bank_mask
) == 0) {
2970 /* mixed scalar/vector */
2979 /* Load the initial operands. */
2984 /* Integer source */
2985 gen_mov_F0_vreg(0, rm
);
2990 gen_mov_F0_vreg(dp
, rd
);
2991 gen_mov_F1_vreg(dp
, rm
);
2995 /* Compare with zero */
2996 gen_mov_F0_vreg(dp
, rd
);
3007 /* Source and destination the same. */
3008 gen_mov_F0_vreg(dp
, rd
);
3011 /* One source operand. */
3012 gen_mov_F0_vreg(dp
, rm
);
3016 /* Two source operands. */
3017 gen_mov_F0_vreg(dp
, rn
);
3018 gen_mov_F1_vreg(dp
, rm
);
3022 /* Perform the calculation. */
3024 case 0: /* mac: fd + (fn * fm) */
3026 gen_mov_F1_vreg(dp
, rd
);
3029 case 1: /* nmac: fd - (fn * fm) */
3032 gen_mov_F1_vreg(dp
, rd
);
3035 case 2: /* msc: -fd + (fn * fm) */
3037 gen_mov_F1_vreg(dp
, rd
);
3040 case 3: /* nmsc: -fd - (fn * fm) */
3043 gen_mov_F1_vreg(dp
, rd
);
3046 case 4: /* mul: fn * fm */
3049 case 5: /* nmul: -(fn * fm) */
3053 case 6: /* add: fn + fm */
3056 case 7: /* sub: fn - fm */
3059 case 8: /* div: fn / fm */
3062 case 14: /* fconst */
3063 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3066 n
= (insn
<< 12) & 0x80000000;
3067 i
= ((insn
>> 12) & 0x70) | (insn
& 0xf);
3074 tcg_gen_movi_i64(cpu_F0d
, ((uint64_t)n
) << 32);
3081 tcg_gen_movi_i32(cpu_F0s
, n
);
3084 case 15: /* extension space */
3098 case 4: /* vcvtb.f32.f16 */
3099 if (!arm_feature(env
, ARM_FEATURE_VFP_FP16
))
3101 tmp
= gen_vfp_mrs();
3102 tcg_gen_ext16u_i32(tmp
, tmp
);
3103 gen_helper_vfp_fcvt_f16_to_f32(cpu_F0s
, tmp
, cpu_env
);
3104 tcg_temp_free_i32(tmp
);
3106 case 5: /* vcvtt.f32.f16 */
3107 if (!arm_feature(env
, ARM_FEATURE_VFP_FP16
))
3109 tmp
= gen_vfp_mrs();
3110 tcg_gen_shri_i32(tmp
, tmp
, 16);
3111 gen_helper_vfp_fcvt_f16_to_f32(cpu_F0s
, tmp
, cpu_env
);
3112 tcg_temp_free_i32(tmp
);
3114 case 6: /* vcvtb.f16.f32 */
3115 if (!arm_feature(env
, ARM_FEATURE_VFP_FP16
))
3117 tmp
= tcg_temp_new_i32();
3118 gen_helper_vfp_fcvt_f32_to_f16(tmp
, cpu_F0s
, cpu_env
);
3119 gen_mov_F0_vreg(0, rd
);
3120 tmp2
= gen_vfp_mrs();
3121 tcg_gen_andi_i32(tmp2
, tmp2
, 0xffff0000);
3122 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
3123 tcg_temp_free_i32(tmp2
);
3126 case 7: /* vcvtt.f16.f32 */
3127 if (!arm_feature(env
, ARM_FEATURE_VFP_FP16
))
3129 tmp
= tcg_temp_new_i32();
3130 gen_helper_vfp_fcvt_f32_to_f16(tmp
, cpu_F0s
, cpu_env
);
3131 tcg_gen_shli_i32(tmp
, tmp
, 16);
3132 gen_mov_F0_vreg(0, rd
);
3133 tmp2
= gen_vfp_mrs();
3134 tcg_gen_ext16u_i32(tmp2
, tmp2
);
3135 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
3136 tcg_temp_free_i32(tmp2
);
3148 case 11: /* cmpez */
3152 case 15: /* single<->double conversion */
3154 gen_helper_vfp_fcvtsd(cpu_F0s
, cpu_F0d
, cpu_env
);
3156 gen_helper_vfp_fcvtds(cpu_F0d
, cpu_F0s
, cpu_env
);
3158 case 16: /* fuito */
3161 case 17: /* fsito */
3164 case 20: /* fshto */
3165 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3167 gen_vfp_shto(dp
, 16 - rm
);
3169 case 21: /* fslto */
3170 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3172 gen_vfp_slto(dp
, 32 - rm
);
3174 case 22: /* fuhto */
3175 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3177 gen_vfp_uhto(dp
, 16 - rm
);
3179 case 23: /* fulto */
3180 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3182 gen_vfp_ulto(dp
, 32 - rm
);
3184 case 24: /* ftoui */
3187 case 25: /* ftouiz */
3190 case 26: /* ftosi */
3193 case 27: /* ftosiz */
3196 case 28: /* ftosh */
3197 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3199 gen_vfp_tosh(dp
, 16 - rm
);
3201 case 29: /* ftosl */
3202 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3204 gen_vfp_tosl(dp
, 32 - rm
);
3206 case 30: /* ftouh */
3207 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3209 gen_vfp_touh(dp
, 16 - rm
);
3211 case 31: /* ftoul */
3212 if (!arm_feature(env
, ARM_FEATURE_VFP3
))
3214 gen_vfp_toul(dp
, 32 - rm
);
3216 default: /* undefined */
3217 printf ("rn:%d\n", rn
);
3221 default: /* undefined */
3222 printf ("op:%d\n", op
);
3226 /* Write back the result. */
3227 if (op
== 15 && (rn
>= 8 && rn
<= 11))
3228 ; /* Comparison, do nothing. */
3229 else if (op
== 15 && dp
&& ((rn
& 0x1c) == 0x18))
3230 /* VCVT double to int: always integer result. */
3231 gen_mov_vreg_F0(0, rd
);
3232 else if (op
== 15 && rn
== 15)
3234 gen_mov_vreg_F0(!dp
, rd
);
3236 gen_mov_vreg_F0(dp
, rd
);
3238 /* break out of the loop if we have finished */
3242 if (op
== 15 && delta_m
== 0) {
3243 /* single source one-many */
3245 rd
= ((rd
+ delta_d
) & (bank_mask
- 1))
3247 gen_mov_vreg_F0(dp
, rd
);
3251 /* Setup the next operands. */
3253 rd
= ((rd
+ delta_d
) & (bank_mask
- 1))
3257 /* One source operand. */
3258 rm
= ((rm
+ delta_m
) & (bank_mask
- 1))
3260 gen_mov_F0_vreg(dp
, rm
);
3262 /* Two source operands. */
3263 rn
= ((rn
+ delta_d
) & (bank_mask
- 1))
3265 gen_mov_F0_vreg(dp
, rn
);
3267 rm
= ((rm
+ delta_m
) & (bank_mask
- 1))
3269 gen_mov_F1_vreg(dp
, rm
);
3277 if ((insn
& 0x03e00000) == 0x00400000) {
3278 /* two-register transfer */
3279 rn
= (insn
>> 16) & 0xf;
3280 rd
= (insn
>> 12) & 0xf;
3282 VFP_DREG_M(rm
, insn
);
3284 rm
= VFP_SREG_M(insn
);
3287 if (insn
& ARM_CP_RW_BIT
) {
3290 gen_mov_F0_vreg(0, rm
* 2);
3291 tmp
= gen_vfp_mrs();
3292 store_reg(s
, rd
, tmp
);
3293 gen_mov_F0_vreg(0, rm
* 2 + 1);
3294 tmp
= gen_vfp_mrs();
3295 store_reg(s
, rn
, tmp
);
3297 gen_mov_F0_vreg(0, rm
);
3298 tmp
= gen_vfp_mrs();
3299 store_reg(s
, rd
, tmp
);
3300 gen_mov_F0_vreg(0, rm
+ 1);
3301 tmp
= gen_vfp_mrs();
3302 store_reg(s
, rn
, tmp
);
3307 tmp
= load_reg(s
, rd
);
3309 gen_mov_vreg_F0(0, rm
* 2);
3310 tmp
= load_reg(s
, rn
);
3312 gen_mov_vreg_F0(0, rm
* 2 + 1);
3314 tmp
= load_reg(s
, rd
);
3316 gen_mov_vreg_F0(0, rm
);
3317 tmp
= load_reg(s
, rn
);
3319 gen_mov_vreg_F0(0, rm
+ 1);
3324 rn
= (insn
>> 16) & 0xf;
3326 VFP_DREG_D(rd
, insn
);
3328 rd
= VFP_SREG_D(insn
);
3329 if (s
->thumb
&& rn
== 15) {
3330 addr
= tcg_temp_new_i32();
3331 tcg_gen_movi_i32(addr
, s
->pc
& ~2);
3333 addr
= load_reg(s
, rn
);
3335 if ((insn
& 0x01200000) == 0x01000000) {
3336 /* Single load/store */
3337 offset
= (insn
& 0xff) << 2;
3338 if ((insn
& (1 << 23)) == 0)
3340 tcg_gen_addi_i32(addr
, addr
, offset
);
3341 if (insn
& (1 << 20)) {
3342 gen_vfp_ld(s
, dp
, addr
);
3343 gen_mov_vreg_F0(dp
, rd
);
3345 gen_mov_F0_vreg(dp
, rd
);
3346 gen_vfp_st(s
, dp
, addr
);
3348 tcg_temp_free_i32(addr
);
3350 /* load/store multiple */
3352 n
= (insn
>> 1) & 0x7f;
3356 if (insn
& (1 << 24)) /* pre-decrement */
3357 tcg_gen_addi_i32(addr
, addr
, -((insn
& 0xff) << 2));
3363 for (i
= 0; i
< n
; i
++) {
3364 if (insn
& ARM_CP_RW_BIT
) {
3366 gen_vfp_ld(s
, dp
, addr
);
3367 gen_mov_vreg_F0(dp
, rd
+ i
);
3370 gen_mov_F0_vreg(dp
, rd
+ i
);
3371 gen_vfp_st(s
, dp
, addr
);
3373 tcg_gen_addi_i32(addr
, addr
, offset
);
3375 if (insn
& (1 << 21)) {
3377 if (insn
& (1 << 24))
3378 offset
= -offset
* n
;
3379 else if (dp
&& (insn
& 1))
3385 tcg_gen_addi_i32(addr
, addr
, offset
);
3386 store_reg(s
, rn
, addr
);
3388 tcg_temp_free_i32(addr
);
3394 /* Should never happen. */
3400 static inline void gen_goto_tb(DisasContext
*s
, int n
, uint32_t dest
)
3402 TranslationBlock
*tb
;
3405 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
)) {
3407 gen_set_pc_im(dest
);
3408 tcg_gen_exit_tb((tcg_target_long
)tb
+ n
);
3410 gen_set_pc_im(dest
);
3415 static inline void gen_jmp (DisasContext
*s
, uint32_t dest
)
3417 if (unlikely(s
->singlestep_enabled
)) {
3418 /* An indirect jump so that we still trigger the debug exception. */
3423 gen_goto_tb(s
, 0, dest
);
3424 s
->is_jmp
= DISAS_TB_JUMP
;
3428 static inline void gen_mulxy(TCGv t0
, TCGv t1
, int x
, int y
)
3431 tcg_gen_sari_i32(t0
, t0
, 16);
3435 tcg_gen_sari_i32(t1
, t1
, 16);
3438 tcg_gen_mul_i32(t0
, t0
, t1
);
3441 /* Return the mask of PSR bits set by a MSR instruction. */
3442 static uint32_t msr_mask(CPUState
*env
, DisasContext
*s
, int flags
, int spsr
) {
3446 if (flags
& (1 << 0))
3448 if (flags
& (1 << 1))
3450 if (flags
& (1 << 2))
3452 if (flags
& (1 << 3))
3455 /* Mask out undefined bits. */
3456 mask
&= ~CPSR_RESERVED
;
3457 if (!arm_feature(env
, ARM_FEATURE_V4T
))
3459 if (!arm_feature(env
, ARM_FEATURE_V5
))
3460 mask
&= ~CPSR_Q
; /* V5TE in reality*/
3461 if (!arm_feature(env
, ARM_FEATURE_V6
))
3462 mask
&= ~(CPSR_E
| CPSR_GE
);
3463 if (!arm_feature(env
, ARM_FEATURE_THUMB2
))
3465 /* Mask out execution state bits. */
3468 /* Mask out privileged bits. */
3474 /* Returns nonzero if access to the PSR is not permitted. Marks t0 as dead. */
3475 static int gen_set_psr(DisasContext
*s
, uint32_t mask
, int spsr
, TCGv t0
)
3479 /* ??? This is also undefined in system mode. */
3483 tmp
= load_cpu_field(spsr
);
3484 tcg_gen_andi_i32(tmp
, tmp
, ~mask
);
3485 tcg_gen_andi_i32(t0
, t0
, mask
);
3486 tcg_gen_or_i32(tmp
, tmp
, t0
);
3487 store_cpu_field(tmp
, spsr
);
3489 gen_set_cpsr(t0
, mask
);
3491 tcg_temp_free_i32(t0
);
3496 /* Returns nonzero if access to the PSR is not permitted. */
3497 static int gen_set_psr_im(DisasContext
*s
, uint32_t mask
, int spsr
, uint32_t val
)
3500 tmp
= tcg_temp_new_i32();
3501 tcg_gen_movi_i32(tmp
, val
);
3502 return gen_set_psr(s
, mask
, spsr
, tmp
);
3505 /* Generate an old-style exception return. Marks pc as dead. */
3506 static void gen_exception_return(DisasContext
*s
, TCGv pc
)
3509 store_reg(s
, 15, pc
);
3510 tmp
= load_cpu_field(spsr
);
3511 gen_set_cpsr(tmp
, 0xffffffff);
3512 tcg_temp_free_i32(tmp
);
3513 s
->is_jmp
= DISAS_UPDATE
;
3516 /* Generate a v6 exception return. Marks both values as dead. */
3517 static void gen_rfe(DisasContext
*s
, TCGv pc
, TCGv cpsr
)
3519 gen_set_cpsr(cpsr
, 0xffffffff);
3520 tcg_temp_free_i32(cpsr
);
3521 store_reg(s
, 15, pc
);
3522 s
->is_jmp
= DISAS_UPDATE
;
3526 gen_set_condexec (DisasContext
*s
)
3528 if (s
->condexec_mask
) {
3529 uint32_t val
= (s
->condexec_cond
<< 4) | (s
->condexec_mask
>> 1);
3530 TCGv tmp
= tcg_temp_new_i32();
3531 tcg_gen_movi_i32(tmp
, val
);
3532 store_cpu_field(tmp
, condexec_bits
);
3536 static void gen_exception_insn(DisasContext
*s
, int offset
, int excp
)
3538 gen_set_condexec(s
);
3539 gen_set_pc_im(s
->pc
- offset
);
3540 gen_exception(excp
);
3541 s
->is_jmp
= DISAS_JUMP
;
3544 static void gen_nop_hint(DisasContext
*s
, int val
)
3548 gen_set_pc_im(s
->pc
);
3549 s
->is_jmp
= DISAS_WFI
;
3553 /* TODO: Implement SEV and WFE. May help SMP performance. */
3559 #define CPU_V001 cpu_V0, cpu_V0, cpu_V1
3561 static inline void gen_neon_add(int size
, TCGv t0
, TCGv t1
)
3564 case 0: gen_helper_neon_add_u8(t0
, t0
, t1
); break;
3565 case 1: gen_helper_neon_add_u16(t0
, t0
, t1
); break;
3566 case 2: tcg_gen_add_i32(t0
, t0
, t1
); break;
3571 static inline void gen_neon_rsb(int size
, TCGv t0
, TCGv t1
)
3574 case 0: gen_helper_neon_sub_u8(t0
, t1
, t0
); break;
3575 case 1: gen_helper_neon_sub_u16(t0
, t1
, t0
); break;
3576 case 2: tcg_gen_sub_i32(t0
, t1
, t0
); break;
3581 /* 32-bit pairwise ops end up the same as the elementwise versions. */
3582 #define gen_helper_neon_pmax_s32 gen_helper_neon_max_s32
3583 #define gen_helper_neon_pmax_u32 gen_helper_neon_max_u32
3584 #define gen_helper_neon_pmin_s32 gen_helper_neon_min_s32
3585 #define gen_helper_neon_pmin_u32 gen_helper_neon_min_u32
3587 #define GEN_NEON_INTEGER_OP_ENV(name) do { \
3588 switch ((size << 1) | u) { \
3590 gen_helper_neon_##name##_s8(tmp, cpu_env, tmp, tmp2); \
3593 gen_helper_neon_##name##_u8(tmp, cpu_env, tmp, tmp2); \
3596 gen_helper_neon_##name##_s16(tmp, cpu_env, tmp, tmp2); \
3599 gen_helper_neon_##name##_u16(tmp, cpu_env, tmp, tmp2); \
3602 gen_helper_neon_##name##_s32(tmp, cpu_env, tmp, tmp2); \
3605 gen_helper_neon_##name##_u32(tmp, cpu_env, tmp, tmp2); \
3607 default: return 1; \
3610 #define GEN_NEON_INTEGER_OP(name) do { \
3611 switch ((size << 1) | u) { \
3613 gen_helper_neon_##name##_s8(tmp, tmp, tmp2); \
3616 gen_helper_neon_##name##_u8(tmp, tmp, tmp2); \
3619 gen_helper_neon_##name##_s16(tmp, tmp, tmp2); \
3622 gen_helper_neon_##name##_u16(tmp, tmp, tmp2); \
3625 gen_helper_neon_##name##_s32(tmp, tmp, tmp2); \
3628 gen_helper_neon_##name##_u32(tmp, tmp, tmp2); \
3630 default: return 1; \
3633 static TCGv
neon_load_scratch(int scratch
)
3635 TCGv tmp
= tcg_temp_new_i32();
3636 tcg_gen_ld_i32(tmp
, cpu_env
, offsetof(CPUARMState
, vfp
.scratch
[scratch
]));
3640 static void neon_store_scratch(int scratch
, TCGv var
)
3642 tcg_gen_st_i32(var
, cpu_env
, offsetof(CPUARMState
, vfp
.scratch
[scratch
]));
3643 tcg_temp_free_i32(var
);
3646 static inline TCGv
neon_get_scalar(int size
, int reg
)
3650 tmp
= neon_load_reg(reg
& 7, reg
>> 4);
3652 gen_neon_dup_high16(tmp
);
3654 gen_neon_dup_low16(tmp
);
3657 tmp
= neon_load_reg(reg
& 15, reg
>> 4);
3662 static int gen_neon_unzip(int rd
, int rm
, int size
, int q
)
3665 if (!q
&& size
== 2) {
3668 tmp
= tcg_const_i32(rd
);
3669 tmp2
= tcg_const_i32(rm
);
3673 gen_helper_neon_qunzip8(tmp
, tmp2
);
3676 gen_helper_neon_qunzip16(tmp
, tmp2
);
3679 gen_helper_neon_qunzip32(tmp
, tmp2
);
3687 gen_helper_neon_unzip8(tmp
, tmp2
);
3690 gen_helper_neon_unzip16(tmp
, tmp2
);
3696 tcg_temp_free_i32(tmp
);
3697 tcg_temp_free_i32(tmp2
);
3701 static int gen_neon_zip(int rd
, int rm
, int size
, int q
)
3704 if (!q
&& size
== 2) {
3707 tmp
= tcg_const_i32(rd
);
3708 tmp2
= tcg_const_i32(rm
);
3712 gen_helper_neon_qzip8(tmp
, tmp2
);
3715 gen_helper_neon_qzip16(tmp
, tmp2
);
3718 gen_helper_neon_qzip32(tmp
, tmp2
);
3726 gen_helper_neon_zip8(tmp
, tmp2
);
3729 gen_helper_neon_zip16(tmp
, tmp2
);
3735 tcg_temp_free_i32(tmp
);
3736 tcg_temp_free_i32(tmp2
);
3740 static void gen_neon_trn_u8(TCGv t0
, TCGv t1
)
3744 rd
= tcg_temp_new_i32();
3745 tmp
= tcg_temp_new_i32();
3747 tcg_gen_shli_i32(rd
, t0
, 8);
3748 tcg_gen_andi_i32(rd
, rd
, 0xff00ff00);
3749 tcg_gen_andi_i32(tmp
, t1
, 0x00ff00ff);
3750 tcg_gen_or_i32(rd
, rd
, tmp
);
3752 tcg_gen_shri_i32(t1
, t1
, 8);
3753 tcg_gen_andi_i32(t1
, t1
, 0x00ff00ff);
3754 tcg_gen_andi_i32(tmp
, t0
, 0xff00ff00);
3755 tcg_gen_or_i32(t1
, t1
, tmp
);
3756 tcg_gen_mov_i32(t0
, rd
);
3758 tcg_temp_free_i32(tmp
);
3759 tcg_temp_free_i32(rd
);
3762 static void gen_neon_trn_u16(TCGv t0
, TCGv t1
)
3766 rd
= tcg_temp_new_i32();
3767 tmp
= tcg_temp_new_i32();
3769 tcg_gen_shli_i32(rd
, t0
, 16);
3770 tcg_gen_andi_i32(tmp
, t1
, 0xffff);
3771 tcg_gen_or_i32(rd
, rd
, tmp
);
3772 tcg_gen_shri_i32(t1
, t1
, 16);
3773 tcg_gen_andi_i32(tmp
, t0
, 0xffff0000);
3774 tcg_gen_or_i32(t1
, t1
, tmp
);
3775 tcg_gen_mov_i32(t0
, rd
);
3777 tcg_temp_free_i32(tmp
);
3778 tcg_temp_free_i32(rd
);
3786 } neon_ls_element_type
[11] = {
3800 /* Translate a NEON load/store element instruction. Return nonzero if the
3801 instruction is invalid. */
3802 static int disas_neon_ls_insn(CPUState
* env
, DisasContext
*s
, uint32_t insn
)
3821 if (!s
->vfp_enabled
)
3823 VFP_DREG_D(rd
, insn
);
3824 rn
= (insn
>> 16) & 0xf;
3826 load
= (insn
& (1 << 21)) != 0;
3827 if ((insn
& (1 << 23)) == 0) {
3828 /* Load store all elements. */
3829 op
= (insn
>> 8) & 0xf;
3830 size
= (insn
>> 6) & 3;
3833 nregs
= neon_ls_element_type
[op
].nregs
;
3834 interleave
= neon_ls_element_type
[op
].interleave
;
3835 spacing
= neon_ls_element_type
[op
].spacing
;
3836 if (size
== 3 && (interleave
| spacing
) != 1)
3838 addr
= tcg_temp_new_i32();
3839 load_reg_var(s
, addr
, rn
);
3840 stride
= (1 << size
) * interleave
;
3841 for (reg
= 0; reg
< nregs
; reg
++) {
3842 if (interleave
> 2 || (interleave
== 2 && nregs
== 2)) {
3843 load_reg_var(s
, addr
, rn
);
3844 tcg_gen_addi_i32(addr
, addr
, (1 << size
) * reg
);
3845 } else if (interleave
== 2 && nregs
== 4 && reg
== 2) {
3846 load_reg_var(s
, addr
, rn
);
3847 tcg_gen_addi_i32(addr
, addr
, 1 << size
);
3851 tmp64
= gen_ld64(addr
, IS_USER(s
));
3852 neon_store_reg64(tmp64
, rd
);
3853 tcg_temp_free_i64(tmp64
);
3855 tmp64
= tcg_temp_new_i64();
3856 neon_load_reg64(tmp64
, rd
);
3857 gen_st64(tmp64
, addr
, IS_USER(s
));
3859 tcg_gen_addi_i32(addr
, addr
, stride
);
3861 for (pass
= 0; pass
< 2; pass
++) {
3864 tmp
= gen_ld32(addr
, IS_USER(s
));
3865 neon_store_reg(rd
, pass
, tmp
);
3867 tmp
= neon_load_reg(rd
, pass
);
3868 gen_st32(tmp
, addr
, IS_USER(s
));
3870 tcg_gen_addi_i32(addr
, addr
, stride
);
3871 } else if (size
== 1) {
3873 tmp
= gen_ld16u(addr
, IS_USER(s
));
3874 tcg_gen_addi_i32(addr
, addr
, stride
);
3875 tmp2
= gen_ld16u(addr
, IS_USER(s
));
3876 tcg_gen_addi_i32(addr
, addr
, stride
);
3877 tcg_gen_shli_i32(tmp2
, tmp2
, 16);
3878 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
3879 tcg_temp_free_i32(tmp2
);
3880 neon_store_reg(rd
, pass
, tmp
);
3882 tmp
= neon_load_reg(rd
, pass
);
3883 tmp2
= tcg_temp_new_i32();
3884 tcg_gen_shri_i32(tmp2
, tmp
, 16);
3885 gen_st16(tmp
, addr
, IS_USER(s
));
3886 tcg_gen_addi_i32(addr
, addr
, stride
);
3887 gen_st16(tmp2
, addr
, IS_USER(s
));
3888 tcg_gen_addi_i32(addr
, addr
, stride
);
3890 } else /* size == 0 */ {
3893 for (n
= 0; n
< 4; n
++) {
3894 tmp
= gen_ld8u(addr
, IS_USER(s
));
3895 tcg_gen_addi_i32(addr
, addr
, stride
);
3899 tcg_gen_shli_i32(tmp
, tmp
, n
* 8);
3900 tcg_gen_or_i32(tmp2
, tmp2
, tmp
);
3901 tcg_temp_free_i32(tmp
);
3904 neon_store_reg(rd
, pass
, tmp2
);
3906 tmp2
= neon_load_reg(rd
, pass
);
3907 for (n
= 0; n
< 4; n
++) {
3908 tmp
= tcg_temp_new_i32();
3910 tcg_gen_mov_i32(tmp
, tmp2
);
3912 tcg_gen_shri_i32(tmp
, tmp2
, n
* 8);
3914 gen_st8(tmp
, addr
, IS_USER(s
));
3915 tcg_gen_addi_i32(addr
, addr
, stride
);
3917 tcg_temp_free_i32(tmp2
);
3924 tcg_temp_free_i32(addr
);
3927 size
= (insn
>> 10) & 3;
3929 /* Load single element to all lanes. */
3930 int a
= (insn
>> 4) & 1;
3934 size
= (insn
>> 6) & 3;
3935 nregs
= ((insn
>> 8) & 3) + 1;
3938 if (nregs
!= 4 || a
== 0) {
3941 /* For VLD4 size==3 a == 1 means 32 bits at 16 byte alignment */
3944 if (nregs
== 1 && a
== 1 && size
== 0) {
3947 if (nregs
== 3 && a
== 1) {
3950 addr
= tcg_temp_new_i32();
3951 load_reg_var(s
, addr
, rn
);
3953 /* VLD1 to all lanes: bit 5 indicates how many Dregs to write */
3954 tmp
= gen_load_and_replicate(s
, addr
, size
);
3955 tcg_gen_st_i32(tmp
, cpu_env
, neon_reg_offset(rd
, 0));
3956 tcg_gen_st_i32(tmp
, cpu_env
, neon_reg_offset(rd
, 1));
3957 if (insn
& (1 << 5)) {
3958 tcg_gen_st_i32(tmp
, cpu_env
, neon_reg_offset(rd
+ 1, 0));
3959 tcg_gen_st_i32(tmp
, cpu_env
, neon_reg_offset(rd
+ 1, 1));
3961 tcg_temp_free_i32(tmp
);
3963 /* VLD2/3/4 to all lanes: bit 5 indicates register stride */
3964 stride
= (insn
& (1 << 5)) ? 2 : 1;
3965 for (reg
= 0; reg
< nregs
; reg
++) {
3966 tmp
= gen_load_and_replicate(s
, addr
, size
);
3967 tcg_gen_st_i32(tmp
, cpu_env
, neon_reg_offset(rd
, 0));
3968 tcg_gen_st_i32(tmp
, cpu_env
, neon_reg_offset(rd
, 1));
3969 tcg_temp_free_i32(tmp
);
3970 tcg_gen_addi_i32(addr
, addr
, 1 << size
);
3974 tcg_temp_free_i32(addr
);
3975 stride
= (1 << size
) * nregs
;
3977 /* Single element. */
3978 pass
= (insn
>> 7) & 1;
3981 shift
= ((insn
>> 5) & 3) * 8;
3985 shift
= ((insn
>> 6) & 1) * 16;
3986 stride
= (insn
& (1 << 5)) ? 2 : 1;
3990 stride
= (insn
& (1 << 6)) ? 2 : 1;
3995 nregs
= ((insn
>> 8) & 3) + 1;
3996 addr
= tcg_temp_new_i32();
3997 load_reg_var(s
, addr
, rn
);
3998 for (reg
= 0; reg
< nregs
; reg
++) {
4002 tmp
= gen_ld8u(addr
, IS_USER(s
));
4005 tmp
= gen_ld16u(addr
, IS_USER(s
));
4008 tmp
= gen_ld32(addr
, IS_USER(s
));
4010 default: /* Avoid compiler warnings. */
4014 tmp2
= neon_load_reg(rd
, pass
);
4015 gen_bfi(tmp
, tmp2
, tmp
, shift
, size
? 0xffff : 0xff);
4016 tcg_temp_free_i32(tmp2
);
4018 neon_store_reg(rd
, pass
, tmp
);
4019 } else { /* Store */
4020 tmp
= neon_load_reg(rd
, pass
);
4022 tcg_gen_shri_i32(tmp
, tmp
, shift
);
4025 gen_st8(tmp
, addr
, IS_USER(s
));
4028 gen_st16(tmp
, addr
, IS_USER(s
));
4031 gen_st32(tmp
, addr
, IS_USER(s
));
4036 tcg_gen_addi_i32(addr
, addr
, 1 << size
);
4038 tcg_temp_free_i32(addr
);
4039 stride
= nregs
* (1 << size
);
4045 base
= load_reg(s
, rn
);
4047 tcg_gen_addi_i32(base
, base
, stride
);
4050 index
= load_reg(s
, rm
);
4051 tcg_gen_add_i32(base
, base
, index
);
4052 tcg_temp_free_i32(index
);
4054 store_reg(s
, rn
, base
);
4059 /* Bitwise select. dest = c ? t : f. Clobbers T and F. */
4060 static void gen_neon_bsl(TCGv dest
, TCGv t
, TCGv f
, TCGv c
)
4062 tcg_gen_and_i32(t
, t
, c
);
4063 tcg_gen_andc_i32(f
, f
, c
);
4064 tcg_gen_or_i32(dest
, t
, f
);
4067 static inline void gen_neon_narrow(int size
, TCGv dest
, TCGv_i64 src
)
4070 case 0: gen_helper_neon_narrow_u8(dest
, src
); break;
4071 case 1: gen_helper_neon_narrow_u16(dest
, src
); break;
4072 case 2: tcg_gen_trunc_i64_i32(dest
, src
); break;
4077 static inline void gen_neon_narrow_sats(int size
, TCGv dest
, TCGv_i64 src
)
4080 case 0: gen_helper_neon_narrow_sat_s8(dest
, src
); break;
4081 case 1: gen_helper_neon_narrow_sat_s16(dest
, src
); break;
4082 case 2: gen_helper_neon_narrow_sat_s32(dest
, src
); break;
4087 static inline void gen_neon_narrow_satu(int size
, TCGv dest
, TCGv_i64 src
)
4090 case 0: gen_helper_neon_narrow_sat_u8(dest
, src
); break;
4091 case 1: gen_helper_neon_narrow_sat_u16(dest
, src
); break;
4092 case 2: gen_helper_neon_narrow_sat_u32(dest
, src
); break;
4097 static inline void gen_neon_unarrow_sats(int size
, TCGv dest
, TCGv_i64 src
)
4100 case 0: gen_helper_neon_unarrow_sat8(dest
, src
); break;
4101 case 1: gen_helper_neon_unarrow_sat16(dest
, src
); break;
4102 case 2: gen_helper_neon_unarrow_sat32(dest
, src
); break;
4107 static inline void gen_neon_shift_narrow(int size
, TCGv var
, TCGv shift
,
4113 case 1: gen_helper_neon_rshl_u16(var
, var
, shift
); break;
4114 case 2: gen_helper_neon_rshl_u32(var
, var
, shift
); break;
4119 case 1: gen_helper_neon_rshl_s16(var
, var
, shift
); break;
4120 case 2: gen_helper_neon_rshl_s32(var
, var
, shift
); break;
4127 case 1: gen_helper_neon_shl_u16(var
, var
, shift
); break;
4128 case 2: gen_helper_neon_shl_u32(var
, var
, shift
); break;
4133 case 1: gen_helper_neon_shl_s16(var
, var
, shift
); break;
4134 case 2: gen_helper_neon_shl_s32(var
, var
, shift
); break;
4141 static inline void gen_neon_widen(TCGv_i64 dest
, TCGv src
, int size
, int u
)
4145 case 0: gen_helper_neon_widen_u8(dest
, src
); break;
4146 case 1: gen_helper_neon_widen_u16(dest
, src
); break;
4147 case 2: tcg_gen_extu_i32_i64(dest
, src
); break;
4152 case 0: gen_helper_neon_widen_s8(dest
, src
); break;
4153 case 1: gen_helper_neon_widen_s16(dest
, src
); break;
4154 case 2: tcg_gen_ext_i32_i64(dest
, src
); break;
4158 tcg_temp_free_i32(src
);
4161 static inline void gen_neon_addl(int size
)
4164 case 0: gen_helper_neon_addl_u16(CPU_V001
); break;
4165 case 1: gen_helper_neon_addl_u32(CPU_V001
); break;
4166 case 2: tcg_gen_add_i64(CPU_V001
); break;
4171 static inline void gen_neon_subl(int size
)
4174 case 0: gen_helper_neon_subl_u16(CPU_V001
); break;
4175 case 1: gen_helper_neon_subl_u32(CPU_V001
); break;
4176 case 2: tcg_gen_sub_i64(CPU_V001
); break;
4181 static inline void gen_neon_negl(TCGv_i64 var
, int size
)
4184 case 0: gen_helper_neon_negl_u16(var
, var
); break;
4185 case 1: gen_helper_neon_negl_u32(var
, var
); break;
4186 case 2: gen_helper_neon_negl_u64(var
, var
); break;
4191 static inline void gen_neon_addl_saturate(TCGv_i64 op0
, TCGv_i64 op1
, int size
)
4194 case 1: gen_helper_neon_addl_saturate_s32(op0
, op0
, op1
); break;
4195 case 2: gen_helper_neon_addl_saturate_s64(op0
, op0
, op1
); break;
4200 static inline void gen_neon_mull(TCGv_i64 dest
, TCGv a
, TCGv b
, int size
, int u
)
4204 switch ((size
<< 1) | u
) {
4205 case 0: gen_helper_neon_mull_s8(dest
, a
, b
); break;
4206 case 1: gen_helper_neon_mull_u8(dest
, a
, b
); break;
4207 case 2: gen_helper_neon_mull_s16(dest
, a
, b
); break;
4208 case 3: gen_helper_neon_mull_u16(dest
, a
, b
); break;
4210 tmp
= gen_muls_i64_i32(a
, b
);
4211 tcg_gen_mov_i64(dest
, tmp
);
4212 tcg_temp_free_i64(tmp
);
4215 tmp
= gen_mulu_i64_i32(a
, b
);
4216 tcg_gen_mov_i64(dest
, tmp
);
4217 tcg_temp_free_i64(tmp
);
4222 /* gen_helper_neon_mull_[su]{8|16} do not free their parameters.
4223 Don't forget to clean them now. */
4225 tcg_temp_free_i32(a
);
4226 tcg_temp_free_i32(b
);
4230 static void gen_neon_narrow_op(int op
, int u
, int size
, TCGv dest
, TCGv_i64 src
)
4234 gen_neon_unarrow_sats(size
, dest
, src
);
4236 gen_neon_narrow(size
, dest
, src
);
4240 gen_neon_narrow_satu(size
, dest
, src
);
4242 gen_neon_narrow_sats(size
, dest
, src
);
4247 /* Symbolic constants for op fields for Neon 3-register same-length.
4248 * The values correspond to bits [11:8,4]; see the ARM ARM DDI0406B
4251 #define NEON_3R_VHADD 0
4252 #define NEON_3R_VQADD 1
4253 #define NEON_3R_VRHADD 2
4254 #define NEON_3R_LOGIC 3 /* VAND,VBIC,VORR,VMOV,VORN,VEOR,VBIF,VBIT,VBSL */
4255 #define NEON_3R_VHSUB 4
4256 #define NEON_3R_VQSUB 5
4257 #define NEON_3R_VCGT 6
4258 #define NEON_3R_VCGE 7
4259 #define NEON_3R_VSHL 8
4260 #define NEON_3R_VQSHL 9
4261 #define NEON_3R_VRSHL 10
4262 #define NEON_3R_VQRSHL 11
4263 #define NEON_3R_VMAX 12
4264 #define NEON_3R_VMIN 13
4265 #define NEON_3R_VABD 14
4266 #define NEON_3R_VABA 15
4267 #define NEON_3R_VADD_VSUB 16
4268 #define NEON_3R_VTST_VCEQ 17
4269 #define NEON_3R_VML 18 /* VMLA, VMLAL, VMLS, VMLSL */
4270 #define NEON_3R_VMUL 19
4271 #define NEON_3R_VPMAX 20
4272 #define NEON_3R_VPMIN 21
4273 #define NEON_3R_VQDMULH_VQRDMULH 22
4274 #define NEON_3R_VPADD 23
4275 #define NEON_3R_FLOAT_ARITH 26 /* float VADD, VSUB, VPADD, VABD */
4276 #define NEON_3R_FLOAT_MULTIPLY 27 /* float VMLA, VMLS, VMUL */
4277 #define NEON_3R_FLOAT_CMP 28 /* float VCEQ, VCGE, VCGT */
4278 #define NEON_3R_FLOAT_ACMP 29 /* float VACGE, VACGT, VACLE, VACLT */
4279 #define NEON_3R_FLOAT_MINMAX 30 /* float VMIN, VMAX */
4280 #define NEON_3R_VRECPS_VRSQRTS 31 /* float VRECPS, VRSQRTS */
4282 static const uint8_t neon_3r_sizes
[] = {
4283 [NEON_3R_VHADD
] = 0x7,
4284 [NEON_3R_VQADD
] = 0xf,
4285 [NEON_3R_VRHADD
] = 0x7,
4286 [NEON_3R_LOGIC
] = 0xf, /* size field encodes op type */
4287 [NEON_3R_VHSUB
] = 0x7,
4288 [NEON_3R_VQSUB
] = 0xf,
4289 [NEON_3R_VCGT
] = 0x7,
4290 [NEON_3R_VCGE
] = 0x7,
4291 [NEON_3R_VSHL
] = 0xf,
4292 [NEON_3R_VQSHL
] = 0xf,
4293 [NEON_3R_VRSHL
] = 0xf,
4294 [NEON_3R_VQRSHL
] = 0xf,
4295 [NEON_3R_VMAX
] = 0x7,
4296 [NEON_3R_VMIN
] = 0x7,
4297 [NEON_3R_VABD
] = 0x7,
4298 [NEON_3R_VABA
] = 0x7,
4299 [NEON_3R_VADD_VSUB
] = 0xf,
4300 [NEON_3R_VTST_VCEQ
] = 0x7,
4301 [NEON_3R_VML
] = 0x7,
4302 [NEON_3R_VMUL
] = 0x7,
4303 [NEON_3R_VPMAX
] = 0x7,
4304 [NEON_3R_VPMIN
] = 0x7,
4305 [NEON_3R_VQDMULH_VQRDMULH
] = 0x6,
4306 [NEON_3R_VPADD
] = 0x7,
4307 [NEON_3R_FLOAT_ARITH
] = 0x5, /* size bit 1 encodes op */
4308 [NEON_3R_FLOAT_MULTIPLY
] = 0x5, /* size bit 1 encodes op */
4309 [NEON_3R_FLOAT_CMP
] = 0x5, /* size bit 1 encodes op */
4310 [NEON_3R_FLOAT_ACMP
] = 0x5, /* size bit 1 encodes op */
4311 [NEON_3R_FLOAT_MINMAX
] = 0x5, /* size bit 1 encodes op */
4312 [NEON_3R_VRECPS_VRSQRTS
] = 0x5, /* size bit 1 encodes op */
4315 /* Symbolic constants for op fields for Neon 2-register miscellaneous.
4316 * The values correspond to bits [17:16,10:7]; see the ARM ARM DDI0406B
4319 #define NEON_2RM_VREV64 0
4320 #define NEON_2RM_VREV32 1
4321 #define NEON_2RM_VREV16 2
4322 #define NEON_2RM_VPADDL 4
4323 #define NEON_2RM_VPADDL_U 5
4324 #define NEON_2RM_VCLS 8
4325 #define NEON_2RM_VCLZ 9
4326 #define NEON_2RM_VCNT 10
4327 #define NEON_2RM_VMVN 11
4328 #define NEON_2RM_VPADAL 12
4329 #define NEON_2RM_VPADAL_U 13
4330 #define NEON_2RM_VQABS 14
4331 #define NEON_2RM_VQNEG 15
4332 #define NEON_2RM_VCGT0 16
4333 #define NEON_2RM_VCGE0 17
4334 #define NEON_2RM_VCEQ0 18
4335 #define NEON_2RM_VCLE0 19
4336 #define NEON_2RM_VCLT0 20
4337 #define NEON_2RM_VABS 22
4338 #define NEON_2RM_VNEG 23
4339 #define NEON_2RM_VCGT0_F 24
4340 #define NEON_2RM_VCGE0_F 25
4341 #define NEON_2RM_VCEQ0_F 26
4342 #define NEON_2RM_VCLE0_F 27
4343 #define NEON_2RM_VCLT0_F 28
4344 #define NEON_2RM_VABS_F 30
4345 #define NEON_2RM_VNEG_F 31
4346 #define NEON_2RM_VSWP 32
4347 #define NEON_2RM_VTRN 33
4348 #define NEON_2RM_VUZP 34
4349 #define NEON_2RM_VZIP 35
4350 #define NEON_2RM_VMOVN 36 /* Includes VQMOVN, VQMOVUN */
4351 #define NEON_2RM_VQMOVN 37 /* Includes VQMOVUN */
4352 #define NEON_2RM_VSHLL 38
4353 #define NEON_2RM_VCVT_F16_F32 44
4354 #define NEON_2RM_VCVT_F32_F16 46
4355 #define NEON_2RM_VRECPE 56
4356 #define NEON_2RM_VRSQRTE 57
4357 #define NEON_2RM_VRECPE_F 58
4358 #define NEON_2RM_VRSQRTE_F 59
4359 #define NEON_2RM_VCVT_FS 60
4360 #define NEON_2RM_VCVT_FU 61
4361 #define NEON_2RM_VCVT_SF 62
4362 #define NEON_2RM_VCVT_UF 63
4364 static int neon_2rm_is_float_op(int op
)
4366 /* Return true if this neon 2reg-misc op is float-to-float */
4367 return (op
== NEON_2RM_VABS_F
|| op
== NEON_2RM_VNEG_F
||
4368 op
>= NEON_2RM_VRECPE_F
);
4371 /* Each entry in this array has bit n set if the insn allows
4372 * size value n (otherwise it will UNDEF). Since unallocated
4373 * op values will have no bits set they always UNDEF.
4375 static const uint8_t neon_2rm_sizes
[] = {
4376 [NEON_2RM_VREV64
] = 0x7,
4377 [NEON_2RM_VREV32
] = 0x3,
4378 [NEON_2RM_VREV16
] = 0x1,
4379 [NEON_2RM_VPADDL
] = 0x7,
4380 [NEON_2RM_VPADDL_U
] = 0x7,
4381 [NEON_2RM_VCLS
] = 0x7,
4382 [NEON_2RM_VCLZ
] = 0x7,
4383 [NEON_2RM_VCNT
] = 0x1,
4384 [NEON_2RM_VMVN
] = 0x1,
4385 [NEON_2RM_VPADAL
] = 0x7,
4386 [NEON_2RM_VPADAL_U
] = 0x7,
4387 [NEON_2RM_VQABS
] = 0x7,
4388 [NEON_2RM_VQNEG
] = 0x7,
4389 [NEON_2RM_VCGT0
] = 0x7,
4390 [NEON_2RM_VCGE0
] = 0x7,
4391 [NEON_2RM_VCEQ0
] = 0x7,
4392 [NEON_2RM_VCLE0
] = 0x7,
4393 [NEON_2RM_VCLT0
] = 0x7,
4394 [NEON_2RM_VABS
] = 0x7,
4395 [NEON_2RM_VNEG
] = 0x7,
4396 [NEON_2RM_VCGT0_F
] = 0x4,
4397 [NEON_2RM_VCGE0_F
] = 0x4,
4398 [NEON_2RM_VCEQ0_F
] = 0x4,
4399 [NEON_2RM_VCLE0_F
] = 0x4,
4400 [NEON_2RM_VCLT0_F
] = 0x4,
4401 [NEON_2RM_VABS_F
] = 0x4,
4402 [NEON_2RM_VNEG_F
] = 0x4,
4403 [NEON_2RM_VSWP
] = 0x1,
4404 [NEON_2RM_VTRN
] = 0x7,
4405 [NEON_2RM_VUZP
] = 0x7,
4406 [NEON_2RM_VZIP
] = 0x7,
4407 [NEON_2RM_VMOVN
] = 0x7,
4408 [NEON_2RM_VQMOVN
] = 0x7,
4409 [NEON_2RM_VSHLL
] = 0x7,
4410 [NEON_2RM_VCVT_F16_F32
] = 0x2,
4411 [NEON_2RM_VCVT_F32_F16
] = 0x2,
4412 [NEON_2RM_VRECPE
] = 0x4,
4413 [NEON_2RM_VRSQRTE
] = 0x4,
4414 [NEON_2RM_VRECPE_F
] = 0x4,
4415 [NEON_2RM_VRSQRTE_F
] = 0x4,
4416 [NEON_2RM_VCVT_FS
] = 0x4,
4417 [NEON_2RM_VCVT_FU
] = 0x4,
4418 [NEON_2RM_VCVT_SF
] = 0x4,
4419 [NEON_2RM_VCVT_UF
] = 0x4,
4422 /* Translate a NEON data processing instruction. Return nonzero if the
4423 instruction is invalid.
4424 We process data in a mixture of 32-bit and 64-bit chunks.
4425 Mostly we use 32-bit chunks so we can use normal scalar instructions. */
4427 static int disas_neon_data_insn(CPUState
* env
, DisasContext
*s
, uint32_t insn
)
4439 TCGv tmp
, tmp2
, tmp3
, tmp4
, tmp5
;
4442 if (!s
->vfp_enabled
)
4444 q
= (insn
& (1 << 6)) != 0;
4445 u
= (insn
>> 24) & 1;
4446 VFP_DREG_D(rd
, insn
);
4447 VFP_DREG_N(rn
, insn
);
4448 VFP_DREG_M(rm
, insn
);
4449 size
= (insn
>> 20) & 3;
4450 if ((insn
& (1 << 23)) == 0) {
4451 /* Three register same length. */
4452 op
= ((insn
>> 7) & 0x1e) | ((insn
>> 4) & 1);
4453 /* Catch invalid op and bad size combinations: UNDEF */
4454 if ((neon_3r_sizes
[op
] & (1 << size
)) == 0) {
4457 /* All insns of this form UNDEF for either this condition or the
4458 * superset of cases "Q==1"; we catch the latter later.
4460 if (q
&& ((rd
| rn
| rm
) & 1)) {
4463 if (size
== 3 && op
!= NEON_3R_LOGIC
) {
4464 /* 64-bit element instructions. */
4465 for (pass
= 0; pass
< (q
? 2 : 1); pass
++) {
4466 neon_load_reg64(cpu_V0
, rn
+ pass
);
4467 neon_load_reg64(cpu_V1
, rm
+ pass
);
4471 gen_helper_neon_qadd_u64(cpu_V0
, cpu_V0
, cpu_V1
);
4473 gen_helper_neon_qadd_s64(cpu_V0
, cpu_V0
, cpu_V1
);
4478 gen_helper_neon_qsub_u64(cpu_V0
, cpu_V0
, cpu_V1
);
4480 gen_helper_neon_qsub_s64(cpu_V0
, cpu_V0
, cpu_V1
);
4485 gen_helper_neon_shl_u64(cpu_V0
, cpu_V1
, cpu_V0
);
4487 gen_helper_neon_shl_s64(cpu_V0
, cpu_V1
, cpu_V0
);
4492 gen_helper_neon_qshl_u64(cpu_V0
, cpu_V1
, cpu_V0
);
4494 gen_helper_neon_qshl_s64(cpu_V0
, cpu_V1
, cpu_V0
);
4499 gen_helper_neon_rshl_u64(cpu_V0
, cpu_V1
, cpu_V0
);
4501 gen_helper_neon_rshl_s64(cpu_V0
, cpu_V1
, cpu_V0
);
4504 case NEON_3R_VQRSHL
:
4506 gen_helper_neon_qrshl_u64(cpu_V0
, cpu_V1
, cpu_V0
);
4508 gen_helper_neon_qrshl_s64(cpu_V0
, cpu_V1
, cpu_V0
);
4511 case NEON_3R_VADD_VSUB
:
4513 tcg_gen_sub_i64(CPU_V001
);
4515 tcg_gen_add_i64(CPU_V001
);
4521 neon_store_reg64(cpu_V0
, rd
+ pass
);
4530 case NEON_3R_VQRSHL
:
4533 /* Shift instruction operands are reversed. */
4548 case NEON_3R_FLOAT_ARITH
:
4549 pairwise
= (u
&& size
< 2); /* if VPADD (float) */
4551 case NEON_3R_FLOAT_MINMAX
:
4552 pairwise
= u
; /* if VPMIN/VPMAX (float) */
4554 case NEON_3R_FLOAT_CMP
:
4556 /* no encoding for U=0 C=1x */
4560 case NEON_3R_FLOAT_ACMP
:
4565 case NEON_3R_VRECPS_VRSQRTS
:
4571 if (u
&& (size
!= 0)) {
4572 /* UNDEF on invalid size for polynomial subcase */
4580 if (pairwise
&& q
) {
4581 /* All the pairwise insns UNDEF if Q is set */
4585 for (pass
= 0; pass
< (q
? 4 : 2); pass
++) {
4590 tmp
= neon_load_reg(rn
, 0);
4591 tmp2
= neon_load_reg(rn
, 1);
4593 tmp
= neon_load_reg(rm
, 0);
4594 tmp2
= neon_load_reg(rm
, 1);
4598 tmp
= neon_load_reg(rn
, pass
);
4599 tmp2
= neon_load_reg(rm
, pass
);
4603 GEN_NEON_INTEGER_OP(hadd
);
4606 GEN_NEON_INTEGER_OP(qadd
);
4608 case NEON_3R_VRHADD
:
4609 GEN_NEON_INTEGER_OP(rhadd
);
4611 case NEON_3R_LOGIC
: /* Logic ops. */
4612 switch ((u
<< 2) | size
) {
4614 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
4617 tcg_gen_andc_i32(tmp
, tmp
, tmp2
);
4620 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
4623 tcg_gen_orc_i32(tmp
, tmp
, tmp2
);
4626 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
4629 tmp3
= neon_load_reg(rd
, pass
);
4630 gen_neon_bsl(tmp
, tmp
, tmp2
, tmp3
);
4631 tcg_temp_free_i32(tmp3
);
4634 tmp3
= neon_load_reg(rd
, pass
);
4635 gen_neon_bsl(tmp
, tmp
, tmp3
, tmp2
);
4636 tcg_temp_free_i32(tmp3
);
4639 tmp3
= neon_load_reg(rd
, pass
);
4640 gen_neon_bsl(tmp
, tmp3
, tmp
, tmp2
);
4641 tcg_temp_free_i32(tmp3
);
4646 GEN_NEON_INTEGER_OP(hsub
);
4649 GEN_NEON_INTEGER_OP(qsub
);
4652 GEN_NEON_INTEGER_OP(cgt
);
4655 GEN_NEON_INTEGER_OP(cge
);
4658 GEN_NEON_INTEGER_OP(shl
);
4661 GEN_NEON_INTEGER_OP(qshl
);
4664 GEN_NEON_INTEGER_OP(rshl
);
4666 case NEON_3R_VQRSHL
:
4667 GEN_NEON_INTEGER_OP(qrshl
);
4670 GEN_NEON_INTEGER_OP(max
);
4673 GEN_NEON_INTEGER_OP(min
);
4676 GEN_NEON_INTEGER_OP(abd
);
4679 GEN_NEON_INTEGER_OP(abd
);
4680 tcg_temp_free_i32(tmp2
);
4681 tmp2
= neon_load_reg(rd
, pass
);
4682 gen_neon_add(size
, tmp
, tmp2
);
4684 case NEON_3R_VADD_VSUB
:
4685 if (!u
) { /* VADD */
4686 gen_neon_add(size
, tmp
, tmp2
);
4689 case 0: gen_helper_neon_sub_u8(tmp
, tmp
, tmp2
); break;
4690 case 1: gen_helper_neon_sub_u16(tmp
, tmp
, tmp2
); break;
4691 case 2: tcg_gen_sub_i32(tmp
, tmp
, tmp2
); break;
4696 case NEON_3R_VTST_VCEQ
:
4697 if (!u
) { /* VTST */
4699 case 0: gen_helper_neon_tst_u8(tmp
, tmp
, tmp2
); break;
4700 case 1: gen_helper_neon_tst_u16(tmp
, tmp
, tmp2
); break;
4701 case 2: gen_helper_neon_tst_u32(tmp
, tmp
, tmp2
); break;
4706 case 0: gen_helper_neon_ceq_u8(tmp
, tmp
, tmp2
); break;
4707 case 1: gen_helper_neon_ceq_u16(tmp
, tmp
, tmp2
); break;
4708 case 2: gen_helper_neon_ceq_u32(tmp
, tmp
, tmp2
); break;
4713 case NEON_3R_VML
: /* VMLA, VMLAL, VMLS,VMLSL */
4715 case 0: gen_helper_neon_mul_u8(tmp
, tmp
, tmp2
); break;
4716 case 1: gen_helper_neon_mul_u16(tmp
, tmp
, tmp2
); break;
4717 case 2: tcg_gen_mul_i32(tmp
, tmp
, tmp2
); break;
4720 tcg_temp_free_i32(tmp2
);
4721 tmp2
= neon_load_reg(rd
, pass
);
4723 gen_neon_rsb(size
, tmp
, tmp2
);
4725 gen_neon_add(size
, tmp
, tmp2
);
4729 if (u
) { /* polynomial */
4730 gen_helper_neon_mul_p8(tmp
, tmp
, tmp2
);
4731 } else { /* Integer */
4733 case 0: gen_helper_neon_mul_u8(tmp
, tmp
, tmp2
); break;
4734 case 1: gen_helper_neon_mul_u16(tmp
, tmp
, tmp2
); break;
4735 case 2: tcg_gen_mul_i32(tmp
, tmp
, tmp2
); break;
4741 GEN_NEON_INTEGER_OP(pmax
);
4744 GEN_NEON_INTEGER_OP(pmin
);
4746 case NEON_3R_VQDMULH_VQRDMULH
: /* Multiply high. */
4747 if (!u
) { /* VQDMULH */
4749 case 1: gen_helper_neon_qdmulh_s16(tmp
, tmp
, tmp2
); break;
4750 case 2: gen_helper_neon_qdmulh_s32(tmp
, tmp
, tmp2
); break;
4753 } else { /* VQRDMULH */
4755 case 1: gen_helper_neon_qrdmulh_s16(tmp
, tmp
, tmp2
); break;
4756 case 2: gen_helper_neon_qrdmulh_s32(tmp
, tmp
, tmp2
); break;
4763 case 0: gen_helper_neon_padd_u8(tmp
, tmp
, tmp2
); break;
4764 case 1: gen_helper_neon_padd_u16(tmp
, tmp
, tmp2
); break;
4765 case 2: tcg_gen_add_i32(tmp
, tmp
, tmp2
); break;
4769 case NEON_3R_FLOAT_ARITH
: /* Floating point arithmetic. */
4770 switch ((u
<< 2) | size
) {
4772 gen_helper_neon_add_f32(tmp
, tmp
, tmp2
);
4775 gen_helper_neon_sub_f32(tmp
, tmp
, tmp2
);
4778 gen_helper_neon_add_f32(tmp
, tmp
, tmp2
);
4781 gen_helper_neon_abd_f32(tmp
, tmp
, tmp2
);
4787 case NEON_3R_FLOAT_MULTIPLY
:
4788 gen_helper_neon_mul_f32(tmp
, tmp
, tmp2
);
4790 tcg_temp_free_i32(tmp2
);
4791 tmp2
= neon_load_reg(rd
, pass
);
4793 gen_helper_neon_add_f32(tmp
, tmp
, tmp2
);
4795 gen_helper_neon_sub_f32(tmp
, tmp2
, tmp
);
4799 case NEON_3R_FLOAT_CMP
:
4801 gen_helper_neon_ceq_f32(tmp
, tmp
, tmp2
);
4804 gen_helper_neon_cge_f32(tmp
, tmp
, tmp2
);
4806 gen_helper_neon_cgt_f32(tmp
, tmp
, tmp2
);
4809 case NEON_3R_FLOAT_ACMP
:
4811 gen_helper_neon_acge_f32(tmp
, tmp
, tmp2
);
4813 gen_helper_neon_acgt_f32(tmp
, tmp
, tmp2
);
4815 case NEON_3R_FLOAT_MINMAX
:
4817 gen_helper_neon_max_f32(tmp
, tmp
, tmp2
);
4819 gen_helper_neon_min_f32(tmp
, tmp
, tmp2
);
4821 case NEON_3R_VRECPS_VRSQRTS
:
4823 gen_helper_recps_f32(tmp
, tmp
, tmp2
, cpu_env
);
4825 gen_helper_rsqrts_f32(tmp
, tmp
, tmp2
, cpu_env
);
4830 tcg_temp_free_i32(tmp2
);
4832 /* Save the result. For elementwise operations we can put it
4833 straight into the destination register. For pairwise operations
4834 we have to be careful to avoid clobbering the source operands. */
4835 if (pairwise
&& rd
== rm
) {
4836 neon_store_scratch(pass
, tmp
);
4838 neon_store_reg(rd
, pass
, tmp
);
4842 if (pairwise
&& rd
== rm
) {
4843 for (pass
= 0; pass
< (q
? 4 : 2); pass
++) {
4844 tmp
= neon_load_scratch(pass
);
4845 neon_store_reg(rd
, pass
, tmp
);
4848 /* End of 3 register same size operations. */
4849 } else if (insn
& (1 << 4)) {
4850 if ((insn
& 0x00380080) != 0) {
4851 /* Two registers and shift. */
4852 op
= (insn
>> 8) & 0xf;
4853 if (insn
& (1 << 7)) {
4861 while ((insn
& (1 << (size
+ 19))) == 0)
4864 shift
= (insn
>> 16) & ((1 << (3 + size
)) - 1);
4865 /* To avoid excessive dumplication of ops we implement shift
4866 by immediate using the variable shift operations. */
4868 /* Shift by immediate:
4869 VSHR, VSRA, VRSHR, VRSRA, VSRI, VSHL, VQSHL, VQSHLU. */
4870 if (q
&& ((rd
| rm
) & 1)) {
4873 if (!u
&& (op
== 4 || op
== 6)) {
4876 /* Right shifts are encoded as N - shift, where N is the
4877 element size in bits. */
4879 shift
= shift
- (1 << (size
+ 3));
4887 imm
= (uint8_t) shift
;
4892 imm
= (uint16_t) shift
;
4903 for (pass
= 0; pass
< count
; pass
++) {
4905 neon_load_reg64(cpu_V0
, rm
+ pass
);
4906 tcg_gen_movi_i64(cpu_V1
, imm
);
4911 gen_helper_neon_shl_u64(cpu_V0
, cpu_V0
, cpu_V1
);
4913 gen_helper_neon_shl_s64(cpu_V0
, cpu_V0
, cpu_V1
);
4918 gen_helper_neon_rshl_u64(cpu_V0
, cpu_V0
, cpu_V1
);
4920 gen_helper_neon_rshl_s64(cpu_V0
, cpu_V0
, cpu_V1
);
4923 case 5: /* VSHL, VSLI */
4924 gen_helper_neon_shl_u64(cpu_V0
, cpu_V0
, cpu_V1
);
4926 case 6: /* VQSHLU */
4927 gen_helper_neon_qshlu_s64(cpu_V0
, cpu_V0
, cpu_V1
);
4931 gen_helper_neon_qshl_u64(cpu_V0
,
4934 gen_helper_neon_qshl_s64(cpu_V0
,
4939 if (op
== 1 || op
== 3) {
4941 neon_load_reg64(cpu_V1
, rd
+ pass
);
4942 tcg_gen_add_i64(cpu_V0
, cpu_V0
, cpu_V1
);
4943 } else if (op
== 4 || (op
== 5 && u
)) {
4945 neon_load_reg64(cpu_V1
, rd
+ pass
);
4947 if (shift
< -63 || shift
> 63) {
4951 mask
= 0xffffffffffffffffull
>> -shift
;
4953 mask
= 0xffffffffffffffffull
<< shift
;
4956 tcg_gen_andi_i64(cpu_V1
, cpu_V1
, ~mask
);
4957 tcg_gen_or_i64(cpu_V0
, cpu_V0
, cpu_V1
);
4959 neon_store_reg64(cpu_V0
, rd
+ pass
);
4960 } else { /* size < 3 */
4961 /* Operands in T0 and T1. */
4962 tmp
= neon_load_reg(rm
, pass
);
4963 tmp2
= tcg_temp_new_i32();
4964 tcg_gen_movi_i32(tmp2
, imm
);
4968 GEN_NEON_INTEGER_OP(shl
);
4972 GEN_NEON_INTEGER_OP(rshl
);
4975 case 5: /* VSHL, VSLI */
4977 case 0: gen_helper_neon_shl_u8(tmp
, tmp
, tmp2
); break;
4978 case 1: gen_helper_neon_shl_u16(tmp
, tmp
, tmp2
); break;
4979 case 2: gen_helper_neon_shl_u32(tmp
, tmp
, tmp2
); break;
4983 case 6: /* VQSHLU */
4986 gen_helper_neon_qshlu_s8(tmp
, tmp
, tmp2
);
4989 gen_helper_neon_qshlu_s16(tmp
, tmp
, tmp2
);
4992 gen_helper_neon_qshlu_s32(tmp
, tmp
, tmp2
);
4999 GEN_NEON_INTEGER_OP(qshl
);
5002 tcg_temp_free_i32(tmp2
);
5004 if (op
== 1 || op
== 3) {
5006 tmp2
= neon_load_reg(rd
, pass
);
5007 gen_neon_add(size
, tmp
, tmp2
);
5008 tcg_temp_free_i32(tmp2
);
5009 } else if (op
== 4 || (op
== 5 && u
)) {
5014 mask
= 0xff >> -shift
;
5016 mask
= (uint8_t)(0xff << shift
);
5022 mask
= 0xffff >> -shift
;
5024 mask
= (uint16_t)(0xffff << shift
);
5028 if (shift
< -31 || shift
> 31) {
5032 mask
= 0xffffffffu
>> -shift
;
5034 mask
= 0xffffffffu
<< shift
;
5040 tmp2
= neon_load_reg(rd
, pass
);
5041 tcg_gen_andi_i32(tmp
, tmp
, mask
);
5042 tcg_gen_andi_i32(tmp2
, tmp2
, ~mask
);
5043 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
5044 tcg_temp_free_i32(tmp2
);
5046 neon_store_reg(rd
, pass
, tmp
);
5049 } else if (op
< 10) {
5050 /* Shift by immediate and narrow:
5051 VSHRN, VRSHRN, VQSHRN, VQRSHRN. */
5052 int input_unsigned
= (op
== 8) ? !u
: u
;
5056 shift
= shift
- (1 << (size
+ 3));
5059 tmp64
= tcg_const_i64(shift
);
5060 neon_load_reg64(cpu_V0
, rm
);
5061 neon_load_reg64(cpu_V1
, rm
+ 1);
5062 for (pass
= 0; pass
< 2; pass
++) {
5070 if (input_unsigned
) {
5071 gen_helper_neon_rshl_u64(cpu_V0
, in
, tmp64
);
5073 gen_helper_neon_rshl_s64(cpu_V0
, in
, tmp64
);
5076 if (input_unsigned
) {
5077 gen_helper_neon_shl_u64(cpu_V0
, in
, tmp64
);
5079 gen_helper_neon_shl_s64(cpu_V0
, in
, tmp64
);
5082 tmp
= tcg_temp_new_i32();
5083 gen_neon_narrow_op(op
== 8, u
, size
- 1, tmp
, cpu_V0
);
5084 neon_store_reg(rd
, pass
, tmp
);
5086 tcg_temp_free_i64(tmp64
);
5089 imm
= (uint16_t)shift
;
5093 imm
= (uint32_t)shift
;
5095 tmp2
= tcg_const_i32(imm
);
5096 tmp4
= neon_load_reg(rm
+ 1, 0);
5097 tmp5
= neon_load_reg(rm
+ 1, 1);
5098 for (pass
= 0; pass
< 2; pass
++) {
5100 tmp
= neon_load_reg(rm
, 0);
5104 gen_neon_shift_narrow(size
, tmp
, tmp2
, q
,
5107 tmp3
= neon_load_reg(rm
, 1);
5111 gen_neon_shift_narrow(size
, tmp3
, tmp2
, q
,
5113 tcg_gen_concat_i32_i64(cpu_V0
, tmp
, tmp3
);
5114 tcg_temp_free_i32(tmp
);
5115 tcg_temp_free_i32(tmp3
);
5116 tmp
= tcg_temp_new_i32();
5117 gen_neon_narrow_op(op
== 8, u
, size
- 1, tmp
, cpu_V0
);
5118 neon_store_reg(rd
, pass
, tmp
);
5120 tcg_temp_free_i32(tmp2
);
5122 } else if (op
== 10) {
5124 if (q
|| (rd
& 1)) {
5127 tmp
= neon_load_reg(rm
, 0);
5128 tmp2
= neon_load_reg(rm
, 1);
5129 for (pass
= 0; pass
< 2; pass
++) {
5133 gen_neon_widen(cpu_V0
, tmp
, size
, u
);
5136 /* The shift is less than the width of the source
5137 type, so we can just shift the whole register. */
5138 tcg_gen_shli_i64(cpu_V0
, cpu_V0
, shift
);
5139 /* Widen the result of shift: we need to clear
5140 * the potential overflow bits resulting from
5141 * left bits of the narrow input appearing as
5142 * right bits of left the neighbour narrow
5144 if (size
< 2 || !u
) {
5147 imm
= (0xffu
>> (8 - shift
));
5149 } else if (size
== 1) {
5150 imm
= 0xffff >> (16 - shift
);
5153 imm
= 0xffffffff >> (32 - shift
);
5156 imm64
= imm
| (((uint64_t)imm
) << 32);
5160 tcg_gen_andi_i64(cpu_V0
, cpu_V0
, ~imm64
);
5163 neon_store_reg64(cpu_V0
, rd
+ pass
);
5165 } else if (op
>= 14) {
5166 /* VCVT fixed-point. */
5167 if (!(insn
& (1 << 21)) || (q
&& ((rd
| rm
) & 1))) {
5170 /* We have already masked out the must-be-1 top bit of imm6,
5171 * hence this 32-shift where the ARM ARM has 64-imm6.
5174 for (pass
= 0; pass
< (q
? 4 : 2); pass
++) {
5175 tcg_gen_ld_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rm
, pass
));
5178 gen_vfp_ulto(0, shift
);
5180 gen_vfp_slto(0, shift
);
5183 gen_vfp_toul(0, shift
);
5185 gen_vfp_tosl(0, shift
);
5187 tcg_gen_st_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rd
, pass
));
5192 } else { /* (insn & 0x00380080) == 0 */
5194 if (q
&& (rd
& 1)) {
5198 op
= (insn
>> 8) & 0xf;
5199 /* One register and immediate. */
5200 imm
= (u
<< 7) | ((insn
>> 12) & 0x70) | (insn
& 0xf);
5201 invert
= (insn
& (1 << 5)) != 0;
5202 /* Note that op = 2,3,4,5,6,7,10,11,12,13 imm=0 is UNPREDICTABLE.
5203 * We choose to not special-case this and will behave as if a
5204 * valid constant encoding of 0 had been given.
5223 imm
= (imm
<< 8) | (imm
<< 24);
5226 imm
= (imm
<< 8) | 0xff;
5229 imm
= (imm
<< 16) | 0xffff;
5232 imm
|= (imm
<< 8) | (imm
<< 16) | (imm
<< 24);
5240 imm
= ((imm
& 0x80) << 24) | ((imm
& 0x3f) << 19)
5241 | ((imm
& 0x40) ? (0x1f << 25) : (1 << 30));
5247 for (pass
= 0; pass
< (q
? 4 : 2); pass
++) {
5248 if (op
& 1 && op
< 12) {
5249 tmp
= neon_load_reg(rd
, pass
);
5251 /* The immediate value has already been inverted, so
5253 tcg_gen_andi_i32(tmp
, tmp
, imm
);
5255 tcg_gen_ori_i32(tmp
, tmp
, imm
);
5259 tmp
= tcg_temp_new_i32();
5260 if (op
== 14 && invert
) {
5264 for (n
= 0; n
< 4; n
++) {
5265 if (imm
& (1 << (n
+ (pass
& 1) * 4)))
5266 val
|= 0xff << (n
* 8);
5268 tcg_gen_movi_i32(tmp
, val
);
5270 tcg_gen_movi_i32(tmp
, imm
);
5273 neon_store_reg(rd
, pass
, tmp
);
5276 } else { /* (insn & 0x00800010 == 0x00800000) */
5278 op
= (insn
>> 8) & 0xf;
5279 if ((insn
& (1 << 6)) == 0) {
5280 /* Three registers of different lengths. */
5284 /* undefreq: bit 0 : UNDEF if size != 0
5285 * bit 1 : UNDEF if size == 0
5286 * bit 2 : UNDEF if U == 1
5287 * Note that [1:0] set implies 'always UNDEF'
5290 /* prewiden, src1_wide, src2_wide, undefreq */
5291 static const int neon_3reg_wide
[16][4] = {
5292 {1, 0, 0, 0}, /* VADDL */
5293 {1, 1, 0, 0}, /* VADDW */
5294 {1, 0, 0, 0}, /* VSUBL */
5295 {1, 1, 0, 0}, /* VSUBW */
5296 {0, 1, 1, 0}, /* VADDHN */
5297 {0, 0, 0, 0}, /* VABAL */
5298 {0, 1, 1, 0}, /* VSUBHN */
5299 {0, 0, 0, 0}, /* VABDL */
5300 {0, 0, 0, 0}, /* VMLAL */
5301 {0, 0, 0, 6}, /* VQDMLAL */
5302 {0, 0, 0, 0}, /* VMLSL */
5303 {0, 0, 0, 6}, /* VQDMLSL */
5304 {0, 0, 0, 0}, /* Integer VMULL */
5305 {0, 0, 0, 2}, /* VQDMULL */
5306 {0, 0, 0, 5}, /* Polynomial VMULL */
5307 {0, 0, 0, 3}, /* Reserved: always UNDEF */
5310 prewiden
= neon_3reg_wide
[op
][0];
5311 src1_wide
= neon_3reg_wide
[op
][1];
5312 src2_wide
= neon_3reg_wide
[op
][2];
5313 undefreq
= neon_3reg_wide
[op
][3];
5315 if (((undefreq
& 1) && (size
!= 0)) ||
5316 ((undefreq
& 2) && (size
== 0)) ||
5317 ((undefreq
& 4) && u
)) {
5320 if ((src1_wide
&& (rn
& 1)) ||
5321 (src2_wide
&& (rm
& 1)) ||
5322 (!src2_wide
&& (rd
& 1))) {
5326 /* Avoid overlapping operands. Wide source operands are
5327 always aligned so will never overlap with wide
5328 destinations in problematic ways. */
5329 if (rd
== rm
&& !src2_wide
) {
5330 tmp
= neon_load_reg(rm
, 1);
5331 neon_store_scratch(2, tmp
);
5332 } else if (rd
== rn
&& !src1_wide
) {
5333 tmp
= neon_load_reg(rn
, 1);
5334 neon_store_scratch(2, tmp
);
5337 for (pass
= 0; pass
< 2; pass
++) {
5339 neon_load_reg64(cpu_V0
, rn
+ pass
);
5342 if (pass
== 1 && rd
== rn
) {
5343 tmp
= neon_load_scratch(2);
5345 tmp
= neon_load_reg(rn
, pass
);
5348 gen_neon_widen(cpu_V0
, tmp
, size
, u
);
5352 neon_load_reg64(cpu_V1
, rm
+ pass
);
5355 if (pass
== 1 && rd
== rm
) {
5356 tmp2
= neon_load_scratch(2);
5358 tmp2
= neon_load_reg(rm
, pass
);
5361 gen_neon_widen(cpu_V1
, tmp2
, size
, u
);
5365 case 0: case 1: case 4: /* VADDL, VADDW, VADDHN, VRADDHN */
5366 gen_neon_addl(size
);
5368 case 2: case 3: case 6: /* VSUBL, VSUBW, VSUBHN, VRSUBHN */
5369 gen_neon_subl(size
);
5371 case 5: case 7: /* VABAL, VABDL */
5372 switch ((size
<< 1) | u
) {
5374 gen_helper_neon_abdl_s16(cpu_V0
, tmp
, tmp2
);
5377 gen_helper_neon_abdl_u16(cpu_V0
, tmp
, tmp2
);
5380 gen_helper_neon_abdl_s32(cpu_V0
, tmp
, tmp2
);
5383 gen_helper_neon_abdl_u32(cpu_V0
, tmp
, tmp2
);
5386 gen_helper_neon_abdl_s64(cpu_V0
, tmp
, tmp2
);
5389 gen_helper_neon_abdl_u64(cpu_V0
, tmp
, tmp2
);
5393 tcg_temp_free_i32(tmp2
);
5394 tcg_temp_free_i32(tmp
);
5396 case 8: case 9: case 10: case 11: case 12: case 13:
5397 /* VMLAL, VQDMLAL, VMLSL, VQDMLSL, VMULL, VQDMULL */
5398 gen_neon_mull(cpu_V0
, tmp
, tmp2
, size
, u
);
5400 case 14: /* Polynomial VMULL */
5401 gen_helper_neon_mull_p8(cpu_V0
, tmp
, tmp2
);
5402 tcg_temp_free_i32(tmp2
);
5403 tcg_temp_free_i32(tmp
);
5405 default: /* 15 is RESERVED: caught earlier */
5410 gen_neon_addl_saturate(cpu_V0
, cpu_V0
, size
);
5411 neon_store_reg64(cpu_V0
, rd
+ pass
);
5412 } else if (op
== 5 || (op
>= 8 && op
<= 11)) {
5414 neon_load_reg64(cpu_V1
, rd
+ pass
);
5416 case 10: /* VMLSL */
5417 gen_neon_negl(cpu_V0
, size
);
5419 case 5: case 8: /* VABAL, VMLAL */
5420 gen_neon_addl(size
);
5422 case 9: case 11: /* VQDMLAL, VQDMLSL */
5423 gen_neon_addl_saturate(cpu_V0
, cpu_V0
, size
);
5425 gen_neon_negl(cpu_V0
, size
);
5427 gen_neon_addl_saturate(cpu_V0
, cpu_V1
, size
);
5432 neon_store_reg64(cpu_V0
, rd
+ pass
);
5433 } else if (op
== 4 || op
== 6) {
5434 /* Narrowing operation. */
5435 tmp
= tcg_temp_new_i32();
5439 gen_helper_neon_narrow_high_u8(tmp
, cpu_V0
);
5442 gen_helper_neon_narrow_high_u16(tmp
, cpu_V0
);
5445 tcg_gen_shri_i64(cpu_V0
, cpu_V0
, 32);
5446 tcg_gen_trunc_i64_i32(tmp
, cpu_V0
);
5453 gen_helper_neon_narrow_round_high_u8(tmp
, cpu_V0
);
5456 gen_helper_neon_narrow_round_high_u16(tmp
, cpu_V0
);
5459 tcg_gen_addi_i64(cpu_V0
, cpu_V0
, 1u << 31);
5460 tcg_gen_shri_i64(cpu_V0
, cpu_V0
, 32);
5461 tcg_gen_trunc_i64_i32(tmp
, cpu_V0
);
5469 neon_store_reg(rd
, 0, tmp3
);
5470 neon_store_reg(rd
, 1, tmp
);
5473 /* Write back the result. */
5474 neon_store_reg64(cpu_V0
, rd
+ pass
);
5478 /* Two registers and a scalar. NB that for ops of this form
5479 * the ARM ARM labels bit 24 as Q, but it is in our variable
5486 case 1: /* Float VMLA scalar */
5487 case 5: /* Floating point VMLS scalar */
5488 case 9: /* Floating point VMUL scalar */
5493 case 0: /* Integer VMLA scalar */
5494 case 4: /* Integer VMLS scalar */
5495 case 8: /* Integer VMUL scalar */
5496 case 12: /* VQDMULH scalar */
5497 case 13: /* VQRDMULH scalar */
5498 if (u
&& ((rd
| rn
) & 1)) {
5501 tmp
= neon_get_scalar(size
, rm
);
5502 neon_store_scratch(0, tmp
);
5503 for (pass
= 0; pass
< (u
? 4 : 2); pass
++) {
5504 tmp
= neon_load_scratch(0);
5505 tmp2
= neon_load_reg(rn
, pass
);
5508 gen_helper_neon_qdmulh_s16(tmp
, tmp
, tmp2
);
5510 gen_helper_neon_qdmulh_s32(tmp
, tmp
, tmp2
);
5512 } else if (op
== 13) {
5514 gen_helper_neon_qrdmulh_s16(tmp
, tmp
, tmp2
);
5516 gen_helper_neon_qrdmulh_s32(tmp
, tmp
, tmp2
);
5518 } else if (op
& 1) {
5519 gen_helper_neon_mul_f32(tmp
, tmp
, tmp2
);
5522 case 0: gen_helper_neon_mul_u8(tmp
, tmp
, tmp2
); break;
5523 case 1: gen_helper_neon_mul_u16(tmp
, tmp
, tmp2
); break;
5524 case 2: tcg_gen_mul_i32(tmp
, tmp
, tmp2
); break;
5528 tcg_temp_free_i32(tmp2
);
5531 tmp2
= neon_load_reg(rd
, pass
);
5534 gen_neon_add(size
, tmp
, tmp2
);
5537 gen_helper_neon_add_f32(tmp
, tmp
, tmp2
);
5540 gen_neon_rsb(size
, tmp
, tmp2
);
5543 gen_helper_neon_sub_f32(tmp
, tmp2
, tmp
);
5548 tcg_temp_free_i32(tmp2
);
5550 neon_store_reg(rd
, pass
, tmp
);
5553 case 3: /* VQDMLAL scalar */
5554 case 7: /* VQDMLSL scalar */
5555 case 11: /* VQDMULL scalar */
5560 case 2: /* VMLAL sclar */
5561 case 6: /* VMLSL scalar */
5562 case 10: /* VMULL scalar */
5566 tmp2
= neon_get_scalar(size
, rm
);
5567 /* We need a copy of tmp2 because gen_neon_mull
5568 * deletes it during pass 0. */
5569 tmp4
= tcg_temp_new_i32();
5570 tcg_gen_mov_i32(tmp4
, tmp2
);
5571 tmp3
= neon_load_reg(rn
, 1);
5573 for (pass
= 0; pass
< 2; pass
++) {
5575 tmp
= neon_load_reg(rn
, 0);
5580 gen_neon_mull(cpu_V0
, tmp
, tmp2
, size
, u
);
5582 neon_load_reg64(cpu_V1
, rd
+ pass
);
5586 gen_neon_negl(cpu_V0
, size
);
5589 gen_neon_addl(size
);
5592 gen_neon_addl_saturate(cpu_V0
, cpu_V0
, size
);
5594 gen_neon_negl(cpu_V0
, size
);
5596 gen_neon_addl_saturate(cpu_V0
, cpu_V1
, size
);
5602 gen_neon_addl_saturate(cpu_V0
, cpu_V0
, size
);
5607 neon_store_reg64(cpu_V0
, rd
+ pass
);
5612 default: /* 14 and 15 are RESERVED */
5616 } else { /* size == 3 */
5619 imm
= (insn
>> 8) & 0xf;
5624 if (q
&& ((rd
| rn
| rm
) & 1)) {
5629 neon_load_reg64(cpu_V0
, rn
);
5631 neon_load_reg64(cpu_V1
, rn
+ 1);
5633 } else if (imm
== 8) {
5634 neon_load_reg64(cpu_V0
, rn
+ 1);
5636 neon_load_reg64(cpu_V1
, rm
);
5639 tmp64
= tcg_temp_new_i64();
5641 neon_load_reg64(cpu_V0
, rn
);
5642 neon_load_reg64(tmp64
, rn
+ 1);
5644 neon_load_reg64(cpu_V0
, rn
+ 1);
5645 neon_load_reg64(tmp64
, rm
);
5647 tcg_gen_shri_i64(cpu_V0
, cpu_V0
, (imm
& 7) * 8);
5648 tcg_gen_shli_i64(cpu_V1
, tmp64
, 64 - ((imm
& 7) * 8));
5649 tcg_gen_or_i64(cpu_V0
, cpu_V0
, cpu_V1
);
5651 neon_load_reg64(cpu_V1
, rm
);
5653 neon_load_reg64(cpu_V1
, rm
+ 1);
5656 tcg_gen_shli_i64(cpu_V1
, cpu_V1
, 64 - (imm
* 8));
5657 tcg_gen_shri_i64(tmp64
, tmp64
, imm
* 8);
5658 tcg_gen_or_i64(cpu_V1
, cpu_V1
, tmp64
);
5659 tcg_temp_free_i64(tmp64
);
5662 neon_load_reg64(cpu_V0
, rn
);
5663 tcg_gen_shri_i64(cpu_V0
, cpu_V0
, imm
* 8);
5664 neon_load_reg64(cpu_V1
, rm
);
5665 tcg_gen_shli_i64(cpu_V1
, cpu_V1
, 64 - (imm
* 8));
5666 tcg_gen_or_i64(cpu_V0
, cpu_V0
, cpu_V1
);
5668 neon_store_reg64(cpu_V0
, rd
);
5670 neon_store_reg64(cpu_V1
, rd
+ 1);
5672 } else if ((insn
& (1 << 11)) == 0) {
5673 /* Two register misc. */
5674 op
= ((insn
>> 12) & 0x30) | ((insn
>> 7) & 0xf);
5675 size
= (insn
>> 18) & 3;
5676 /* UNDEF for unknown op values and bad op-size combinations */
5677 if ((neon_2rm_sizes
[op
] & (1 << size
)) == 0) {
5680 if ((op
!= NEON_2RM_VMOVN
&& op
!= NEON_2RM_VQMOVN
) &&
5681 q
&& ((rm
| rd
) & 1)) {
5685 case NEON_2RM_VREV64
:
5686 for (pass
= 0; pass
< (q
? 2 : 1); pass
++) {
5687 tmp
= neon_load_reg(rm
, pass
* 2);
5688 tmp2
= neon_load_reg(rm
, pass
* 2 + 1);
5690 case 0: tcg_gen_bswap32_i32(tmp
, tmp
); break;
5691 case 1: gen_swap_half(tmp
); break;
5692 case 2: /* no-op */ break;
5695 neon_store_reg(rd
, pass
* 2 + 1, tmp
);
5697 neon_store_reg(rd
, pass
* 2, tmp2
);
5700 case 0: tcg_gen_bswap32_i32(tmp2
, tmp2
); break;
5701 case 1: gen_swap_half(tmp2
); break;
5704 neon_store_reg(rd
, pass
* 2, tmp2
);
5708 case NEON_2RM_VPADDL
: case NEON_2RM_VPADDL_U
:
5709 case NEON_2RM_VPADAL
: case NEON_2RM_VPADAL_U
:
5710 for (pass
= 0; pass
< q
+ 1; pass
++) {
5711 tmp
= neon_load_reg(rm
, pass
* 2);
5712 gen_neon_widen(cpu_V0
, tmp
, size
, op
& 1);
5713 tmp
= neon_load_reg(rm
, pass
* 2 + 1);
5714 gen_neon_widen(cpu_V1
, tmp
, size
, op
& 1);
5716 case 0: gen_helper_neon_paddl_u16(CPU_V001
); break;
5717 case 1: gen_helper_neon_paddl_u32(CPU_V001
); break;
5718 case 2: tcg_gen_add_i64(CPU_V001
); break;
5721 if (op
>= NEON_2RM_VPADAL
) {
5723 neon_load_reg64(cpu_V1
, rd
+ pass
);
5724 gen_neon_addl(size
);
5726 neon_store_reg64(cpu_V0
, rd
+ pass
);
5732 for (n
= 0; n
< (q
? 4 : 2); n
+= 2) {
5733 tmp
= neon_load_reg(rm
, n
);
5734 tmp2
= neon_load_reg(rd
, n
+ 1);
5735 neon_store_reg(rm
, n
, tmp2
);
5736 neon_store_reg(rd
, n
+ 1, tmp
);
5743 if (gen_neon_unzip(rd
, rm
, size
, q
)) {
5748 if (gen_neon_zip(rd
, rm
, size
, q
)) {
5752 case NEON_2RM_VMOVN
: case NEON_2RM_VQMOVN
:
5753 /* also VQMOVUN; op field and mnemonics don't line up */
5758 for (pass
= 0; pass
< 2; pass
++) {
5759 neon_load_reg64(cpu_V0
, rm
+ pass
);
5760 tmp
= tcg_temp_new_i32();
5761 gen_neon_narrow_op(op
== NEON_2RM_VMOVN
, q
, size
,
5766 neon_store_reg(rd
, 0, tmp2
);
5767 neon_store_reg(rd
, 1, tmp
);
5771 case NEON_2RM_VSHLL
:
5772 if (q
|| (rd
& 1)) {
5775 tmp
= neon_load_reg(rm
, 0);
5776 tmp2
= neon_load_reg(rm
, 1);
5777 for (pass
= 0; pass
< 2; pass
++) {
5780 gen_neon_widen(cpu_V0
, tmp
, size
, 1);
5781 tcg_gen_shli_i64(cpu_V0
, cpu_V0
, 8 << size
);
5782 neon_store_reg64(cpu_V0
, rd
+ pass
);
5785 case NEON_2RM_VCVT_F16_F32
:
5786 if (!arm_feature(env
, ARM_FEATURE_VFP_FP16
) ||
5790 tmp
= tcg_temp_new_i32();
5791 tmp2
= tcg_temp_new_i32();
5792 tcg_gen_ld_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rm
, 0));
5793 gen_helper_neon_fcvt_f32_to_f16(tmp
, cpu_F0s
, cpu_env
);
5794 tcg_gen_ld_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rm
, 1));
5795 gen_helper_neon_fcvt_f32_to_f16(tmp2
, cpu_F0s
, cpu_env
);
5796 tcg_gen_shli_i32(tmp2
, tmp2
, 16);
5797 tcg_gen_or_i32(tmp2
, tmp2
, tmp
);
5798 tcg_gen_ld_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rm
, 2));
5799 gen_helper_neon_fcvt_f32_to_f16(tmp
, cpu_F0s
, cpu_env
);
5800 tcg_gen_ld_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rm
, 3));
5801 neon_store_reg(rd
, 0, tmp2
);
5802 tmp2
= tcg_temp_new_i32();
5803 gen_helper_neon_fcvt_f32_to_f16(tmp2
, cpu_F0s
, cpu_env
);
5804 tcg_gen_shli_i32(tmp2
, tmp2
, 16);
5805 tcg_gen_or_i32(tmp2
, tmp2
, tmp
);
5806 neon_store_reg(rd
, 1, tmp2
);
5807 tcg_temp_free_i32(tmp
);
5809 case NEON_2RM_VCVT_F32_F16
:
5810 if (!arm_feature(env
, ARM_FEATURE_VFP_FP16
) ||
5814 tmp3
= tcg_temp_new_i32();
5815 tmp
= neon_load_reg(rm
, 0);
5816 tmp2
= neon_load_reg(rm
, 1);
5817 tcg_gen_ext16u_i32(tmp3
, tmp
);
5818 gen_helper_neon_fcvt_f16_to_f32(cpu_F0s
, tmp3
, cpu_env
);
5819 tcg_gen_st_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rd
, 0));
5820 tcg_gen_shri_i32(tmp3
, tmp
, 16);
5821 gen_helper_neon_fcvt_f16_to_f32(cpu_F0s
, tmp3
, cpu_env
);
5822 tcg_gen_st_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rd
, 1));
5823 tcg_temp_free_i32(tmp
);
5824 tcg_gen_ext16u_i32(tmp3
, tmp2
);
5825 gen_helper_neon_fcvt_f16_to_f32(cpu_F0s
, tmp3
, cpu_env
);
5826 tcg_gen_st_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rd
, 2));
5827 tcg_gen_shri_i32(tmp3
, tmp2
, 16);
5828 gen_helper_neon_fcvt_f16_to_f32(cpu_F0s
, tmp3
, cpu_env
);
5829 tcg_gen_st_f32(cpu_F0s
, cpu_env
, neon_reg_offset(rd
, 3));
5830 tcg_temp_free_i32(tmp2
);
5831 tcg_temp_free_i32(tmp3
);
5835 for (pass
= 0; pass
< (q
? 4 : 2); pass
++) {
5836 if (neon_2rm_is_float_op(op
)) {
5837 tcg_gen_ld_f32(cpu_F0s
, cpu_env
,
5838 neon_reg_offset(rm
, pass
));
5841 tmp
= neon_load_reg(rm
, pass
);
5844 case NEON_2RM_VREV32
:
5846 case 0: tcg_gen_bswap32_i32(tmp
, tmp
); break;
5847 case 1: gen_swap_half(tmp
); break;
5851 case NEON_2RM_VREV16
:
5856 case 0: gen_helper_neon_cls_s8(tmp
, tmp
); break;
5857 case 1: gen_helper_neon_cls_s16(tmp
, tmp
); break;
5858 case 2: gen_helper_neon_cls_s32(tmp
, tmp
); break;
5864 case 0: gen_helper_neon_clz_u8(tmp
, tmp
); break;
5865 case 1: gen_helper_neon_clz_u16(tmp
, tmp
); break;
5866 case 2: gen_helper_clz(tmp
, tmp
); break;
5871 gen_helper_neon_cnt_u8(tmp
, tmp
);
5874 tcg_gen_not_i32(tmp
, tmp
);
5876 case NEON_2RM_VQABS
:
5878 case 0: gen_helper_neon_qabs_s8(tmp
, tmp
); break;
5879 case 1: gen_helper_neon_qabs_s16(tmp
, tmp
); break;
5880 case 2: gen_helper_neon_qabs_s32(tmp
, tmp
); break;
5884 case NEON_2RM_VQNEG
:
5886 case 0: gen_helper_neon_qneg_s8(tmp
, tmp
); break;
5887 case 1: gen_helper_neon_qneg_s16(tmp
, tmp
); break;
5888 case 2: gen_helper_neon_qneg_s32(tmp
, tmp
); break;
5892 case NEON_2RM_VCGT0
: case NEON_2RM_VCLE0
:
5893 tmp2
= tcg_const_i32(0);
5895 case 0: gen_helper_neon_cgt_s8(tmp
, tmp
, tmp2
); break;
5896 case 1: gen_helper_neon_cgt_s16(tmp
, tmp
, tmp2
); break;
5897 case 2: gen_helper_neon_cgt_s32(tmp
, tmp
, tmp2
); break;
5900 tcg_temp_free(tmp2
);
5901 if (op
== NEON_2RM_VCLE0
) {
5902 tcg_gen_not_i32(tmp
, tmp
);
5905 case NEON_2RM_VCGE0
: case NEON_2RM_VCLT0
:
5906 tmp2
= tcg_const_i32(0);
5908 case 0: gen_helper_neon_cge_s8(tmp
, tmp
, tmp2
); break;
5909 case 1: gen_helper_neon_cge_s16(tmp
, tmp
, tmp2
); break;
5910 case 2: gen_helper_neon_cge_s32(tmp
, tmp
, tmp2
); break;
5913 tcg_temp_free(tmp2
);
5914 if (op
== NEON_2RM_VCLT0
) {
5915 tcg_gen_not_i32(tmp
, tmp
);
5918 case NEON_2RM_VCEQ0
:
5919 tmp2
= tcg_const_i32(0);
5921 case 0: gen_helper_neon_ceq_u8(tmp
, tmp
, tmp2
); break;
5922 case 1: gen_helper_neon_ceq_u16(tmp
, tmp
, tmp2
); break;
5923 case 2: gen_helper_neon_ceq_u32(tmp
, tmp
, tmp2
); break;
5926 tcg_temp_free(tmp2
);
5930 case 0: gen_helper_neon_abs_s8(tmp
, tmp
); break;
5931 case 1: gen_helper_neon_abs_s16(tmp
, tmp
); break;
5932 case 2: tcg_gen_abs_i32(tmp
, tmp
); break;
5937 tmp2
= tcg_const_i32(0);
5938 gen_neon_rsb(size
, tmp
, tmp2
);
5939 tcg_temp_free(tmp2
);
5941 case NEON_2RM_VCGT0_F
:
5942 tmp2
= tcg_const_i32(0);
5943 gen_helper_neon_cgt_f32(tmp
, tmp
, tmp2
);
5944 tcg_temp_free(tmp2
);
5946 case NEON_2RM_VCGE0_F
:
5947 tmp2
= tcg_const_i32(0);
5948 gen_helper_neon_cge_f32(tmp
, tmp
, tmp2
);
5949 tcg_temp_free(tmp2
);
5951 case NEON_2RM_VCEQ0_F
:
5952 tmp2
= tcg_const_i32(0);
5953 gen_helper_neon_ceq_f32(tmp
, tmp
, tmp2
);
5954 tcg_temp_free(tmp2
);
5956 case NEON_2RM_VCLE0_F
:
5957 tmp2
= tcg_const_i32(0);
5958 gen_helper_neon_cge_f32(tmp
, tmp2
, tmp
);
5959 tcg_temp_free(tmp2
);
5961 case NEON_2RM_VCLT0_F
:
5962 tmp2
= tcg_const_i32(0);
5963 gen_helper_neon_cgt_f32(tmp
, tmp2
, tmp
);
5964 tcg_temp_free(tmp2
);
5966 case NEON_2RM_VABS_F
:
5969 case NEON_2RM_VNEG_F
:
5973 tmp2
= neon_load_reg(rd
, pass
);
5974 neon_store_reg(rm
, pass
, tmp2
);
5977 tmp2
= neon_load_reg(rd
, pass
);
5979 case 0: gen_neon_trn_u8(tmp
, tmp2
); break;
5980 case 1: gen_neon_trn_u16(tmp
, tmp2
); break;
5983 neon_store_reg(rm
, pass
, tmp2
);
5985 case NEON_2RM_VRECPE
:
5986 gen_helper_recpe_u32(tmp
, tmp
, cpu_env
);
5988 case NEON_2RM_VRSQRTE
:
5989 gen_helper_rsqrte_u32(tmp
, tmp
, cpu_env
);
5991 case NEON_2RM_VRECPE_F
:
5992 gen_helper_recpe_f32(cpu_F0s
, cpu_F0s
, cpu_env
);
5994 case NEON_2RM_VRSQRTE_F
:
5995 gen_helper_rsqrte_f32(cpu_F0s
, cpu_F0s
, cpu_env
);
5997 case NEON_2RM_VCVT_FS
: /* VCVT.F32.S32 */
6000 case NEON_2RM_VCVT_FU
: /* VCVT.F32.U32 */
6003 case NEON_2RM_VCVT_SF
: /* VCVT.S32.F32 */
6006 case NEON_2RM_VCVT_UF
: /* VCVT.U32.F32 */
6010 /* Reserved op values were caught by the
6011 * neon_2rm_sizes[] check earlier.
6015 if (neon_2rm_is_float_op(op
)) {
6016 tcg_gen_st_f32(cpu_F0s
, cpu_env
,
6017 neon_reg_offset(rd
, pass
));
6019 neon_store_reg(rd
, pass
, tmp
);
6024 } else if ((insn
& (1 << 10)) == 0) {
6026 int n
= ((insn
>> 8) & 3) + 1;
6027 if ((rn
+ n
) > 32) {
6028 /* This is UNPREDICTABLE; we choose to UNDEF to avoid the
6029 * helper function running off the end of the register file.
6034 if (insn
& (1 << 6)) {
6035 tmp
= neon_load_reg(rd
, 0);
6037 tmp
= tcg_temp_new_i32();
6038 tcg_gen_movi_i32(tmp
, 0);
6040 tmp2
= neon_load_reg(rm
, 0);
6041 tmp4
= tcg_const_i32(rn
);
6042 tmp5
= tcg_const_i32(n
);
6043 gen_helper_neon_tbl(tmp2
, tmp2
, tmp
, tmp4
, tmp5
);
6044 tcg_temp_free_i32(tmp
);
6045 if (insn
& (1 << 6)) {
6046 tmp
= neon_load_reg(rd
, 1);
6048 tmp
= tcg_temp_new_i32();
6049 tcg_gen_movi_i32(tmp
, 0);
6051 tmp3
= neon_load_reg(rm
, 1);
6052 gen_helper_neon_tbl(tmp3
, tmp3
, tmp
, tmp4
, tmp5
);
6053 tcg_temp_free_i32(tmp5
);
6054 tcg_temp_free_i32(tmp4
);
6055 neon_store_reg(rd
, 0, tmp2
);
6056 neon_store_reg(rd
, 1, tmp3
);
6057 tcg_temp_free_i32(tmp
);
6058 } else if ((insn
& 0x380) == 0) {
6060 if (insn
& (1 << 19)) {
6061 tmp
= neon_load_reg(rm
, 1);
6063 tmp
= neon_load_reg(rm
, 0);
6065 if (insn
& (1 << 16)) {
6066 gen_neon_dup_u8(tmp
, ((insn
>> 17) & 3) * 8);
6067 } else if (insn
& (1 << 17)) {
6068 if ((insn
>> 18) & 1)
6069 gen_neon_dup_high16(tmp
);
6071 gen_neon_dup_low16(tmp
);
6073 for (pass
= 0; pass
< (q
? 4 : 2); pass
++) {
6074 tmp2
= tcg_temp_new_i32();
6075 tcg_gen_mov_i32(tmp2
, tmp
);
6076 neon_store_reg(rd
, pass
, tmp2
);
6078 tcg_temp_free_i32(tmp
);
6087 static int disas_cp14_read(CPUState
* env
, DisasContext
*s
, uint32_t insn
)
6089 int crn
= (insn
>> 16) & 0xf;
6090 int crm
= insn
& 0xf;
6091 int op1
= (insn
>> 21) & 7;
6092 int op2
= (insn
>> 5) & 7;
6093 int rt
= (insn
>> 12) & 0xf;
6096 /* Minimal set of debug registers, since we don't support debug */
6097 if (op1
== 0 && crn
== 0 && op2
== 0) {
6100 /* DBGDIDR: just RAZ. In particular this means the
6101 * "debug architecture version" bits will read as
6102 * a reserved value, which should cause Linux to
6103 * not try to use the debug hardware.
6105 tmp
= tcg_const_i32(0);
6106 store_reg(s
, rt
, tmp
);
6110 /* DBGDRAR and DBGDSAR: v7 only. Always RAZ since we
6111 * don't implement memory mapped debug components
6113 if (ENABLE_ARCH_7
) {
6114 tmp
= tcg_const_i32(0);
6115 store_reg(s
, rt
, tmp
);
6124 if (arm_feature(env
, ARM_FEATURE_THUMB2EE
)) {
6125 if (op1
== 6 && crn
== 0 && crm
== 0 && op2
== 0) {
6129 tmp
= load_cpu_field(teecr
);
6130 store_reg(s
, rt
, tmp
);
6133 if (op1
== 6 && crn
== 1 && crm
== 0 && op2
== 0) {
6135 if (IS_USER(s
) && (env
->teecr
& 1))
6137 tmp
= load_cpu_field(teehbr
);
6138 store_reg(s
, rt
, tmp
);
6142 fprintf(stderr
, "Unknown cp14 read op1:%d crn:%d crm:%d op2:%d\n",
6143 op1
, crn
, crm
, op2
);
6147 static int disas_cp14_write(CPUState
* env
, DisasContext
*s
, uint32_t insn
)
6149 int crn
= (insn
>> 16) & 0xf;
6150 int crm
= insn
& 0xf;
6151 int op1
= (insn
>> 21) & 7;
6152 int op2
= (insn
>> 5) & 7;
6153 int rt
= (insn
>> 12) & 0xf;
6156 if (arm_feature(env
, ARM_FEATURE_THUMB2EE
)) {
6157 if (op1
== 6 && crn
== 0 && crm
== 0 && op2
== 0) {
6161 tmp
= load_reg(s
, rt
);
6162 gen_helper_set_teecr(cpu_env
, tmp
);
6163 tcg_temp_free_i32(tmp
);
6166 if (op1
== 6 && crn
== 1 && crm
== 0 && op2
== 0) {
6168 if (IS_USER(s
) && (env
->teecr
& 1))
6170 tmp
= load_reg(s
, rt
);
6171 store_cpu_field(tmp
, teehbr
);
6175 fprintf(stderr
, "Unknown cp14 write op1:%d crn:%d crm:%d op2:%d\n",
6176 op1
, crn
, crm
, op2
);
6180 static int disas_coproc_insn(CPUState
* env
, DisasContext
*s
, uint32_t insn
)
6184 cpnum
= (insn
>> 8) & 0xf;
6185 if (arm_feature(env
, ARM_FEATURE_XSCALE
)
6186 && ((env
->cp15
.c15_cpar
^ 0x3fff) & (1 << cpnum
)))
6192 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
6193 return disas_iwmmxt_insn(env
, s
, insn
);
6194 } else if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
6195 return disas_dsp_insn(env
, s
, insn
);
6200 return disas_vfp_insn (env
, s
, insn
);
6202 /* Coprocessors 7-15 are architecturally reserved by ARM.
6203 Unfortunately Intel decided to ignore this. */
6204 if (arm_feature(env
, ARM_FEATURE_XSCALE
))
6206 if (insn
& (1 << 20))
6207 return disas_cp14_read(env
, s
, insn
);
6209 return disas_cp14_write(env
, s
, insn
);
6211 return disas_cp15_insn (env
, s
, insn
);
6214 /* Unknown coprocessor. See if the board has hooked it. */
6215 return disas_cp_insn (env
, s
, insn
);
6220 /* Store a 64-bit value to a register pair. Clobbers val. */
6221 static void gen_storeq_reg(DisasContext
*s
, int rlow
, int rhigh
, TCGv_i64 val
)
6224 tmp
= tcg_temp_new_i32();
6225 tcg_gen_trunc_i64_i32(tmp
, val
);
6226 store_reg(s
, rlow
, tmp
);
6227 tmp
= tcg_temp_new_i32();
6228 tcg_gen_shri_i64(val
, val
, 32);
6229 tcg_gen_trunc_i64_i32(tmp
, val
);
6230 store_reg(s
, rhigh
, tmp
);
6233 /* load a 32-bit value from a register and perform a 64-bit accumulate. */
6234 static void gen_addq_lo(DisasContext
*s
, TCGv_i64 val
, int rlow
)
6239 /* Load value and extend to 64 bits. */
6240 tmp
= tcg_temp_new_i64();
6241 tmp2
= load_reg(s
, rlow
);
6242 tcg_gen_extu_i32_i64(tmp
, tmp2
);
6243 tcg_temp_free_i32(tmp2
);
6244 tcg_gen_add_i64(val
, val
, tmp
);
6245 tcg_temp_free_i64(tmp
);
6248 /* load and add a 64-bit value from a register pair. */
6249 static void gen_addq(DisasContext
*s
, TCGv_i64 val
, int rlow
, int rhigh
)
6255 /* Load 64-bit value rd:rn. */
6256 tmpl
= load_reg(s
, rlow
);
6257 tmph
= load_reg(s
, rhigh
);
6258 tmp
= tcg_temp_new_i64();
6259 tcg_gen_concat_i32_i64(tmp
, tmpl
, tmph
);
6260 tcg_temp_free_i32(tmpl
);
6261 tcg_temp_free_i32(tmph
);
6262 tcg_gen_add_i64(val
, val
, tmp
);
6263 tcg_temp_free_i64(tmp
);
6266 /* Set N and Z flags from a 64-bit value. */
6267 static void gen_logicq_cc(TCGv_i64 val
)
6269 TCGv tmp
= tcg_temp_new_i32();
6270 gen_helper_logicq_cc(tmp
, val
);
6272 tcg_temp_free_i32(tmp
);
6275 /* Load/Store exclusive instructions are implemented by remembering
6276 the value/address loaded, and seeing if these are the same
6277 when the store is performed. This should be is sufficient to implement
6278 the architecturally mandated semantics, and avoids having to monitor
6281 In system emulation mode only one CPU will be running at once, so
6282 this sequence is effectively atomic. In user emulation mode we
6283 throw an exception and handle the atomic operation elsewhere. */
6284 static void gen_load_exclusive(DisasContext
*s
, int rt
, int rt2
,
6285 TCGv addr
, int size
)
6291 tmp
= gen_ld8u(addr
, IS_USER(s
));
6294 tmp
= gen_ld16u(addr
, IS_USER(s
));
6298 tmp
= gen_ld32(addr
, IS_USER(s
));
6303 tcg_gen_mov_i32(cpu_exclusive_val
, tmp
);
6304 store_reg(s
, rt
, tmp
);
6306 TCGv tmp2
= tcg_temp_new_i32();
6307 tcg_gen_addi_i32(tmp2
, addr
, 4);
6308 tmp
= gen_ld32(tmp2
, IS_USER(s
));
6309 tcg_temp_free_i32(tmp2
);
6310 tcg_gen_mov_i32(cpu_exclusive_high
, tmp
);
6311 store_reg(s
, rt2
, tmp
);
6313 tcg_gen_mov_i32(cpu_exclusive_addr
, addr
);
6316 static void gen_clrex(DisasContext
*s
)
6318 tcg_gen_movi_i32(cpu_exclusive_addr
, -1);
6321 #ifdef CONFIG_USER_ONLY
6322 static void gen_store_exclusive(DisasContext
*s
, int rd
, int rt
, int rt2
,
6323 TCGv addr
, int size
)
6325 tcg_gen_mov_i32(cpu_exclusive_test
, addr
);
6326 tcg_gen_movi_i32(cpu_exclusive_info
,
6327 size
| (rd
<< 4) | (rt
<< 8) | (rt2
<< 12));
6328 gen_exception_insn(s
, 4, EXCP_STREX
);
6331 static void gen_store_exclusive(DisasContext
*s
, int rd
, int rt
, int rt2
,
6332 TCGv addr
, int size
)
6338 /* if (env->exclusive_addr == addr && env->exclusive_val == [addr]) {
6344 fail_label
= gen_new_label();
6345 done_label
= gen_new_label();
6346 tcg_gen_brcond_i32(TCG_COND_NE
, addr
, cpu_exclusive_addr
, fail_label
);
6349 tmp
= gen_ld8u(addr
, IS_USER(s
));
6352 tmp
= gen_ld16u(addr
, IS_USER(s
));
6356 tmp
= gen_ld32(addr
, IS_USER(s
));
6361 tcg_gen_brcond_i32(TCG_COND_NE
, tmp
, cpu_exclusive_val
, fail_label
);
6362 tcg_temp_free_i32(tmp
);
6364 TCGv tmp2
= tcg_temp_new_i32();
6365 tcg_gen_addi_i32(tmp2
, addr
, 4);
6366 tmp
= gen_ld32(tmp2
, IS_USER(s
));
6367 tcg_temp_free_i32(tmp2
);
6368 tcg_gen_brcond_i32(TCG_COND_NE
, tmp
, cpu_exclusive_high
, fail_label
);
6369 tcg_temp_free_i32(tmp
);
6371 tmp
= load_reg(s
, rt
);
6374 gen_st8(tmp
, addr
, IS_USER(s
));
6377 gen_st16(tmp
, addr
, IS_USER(s
));
6381 gen_st32(tmp
, addr
, IS_USER(s
));
6387 tcg_gen_addi_i32(addr
, addr
, 4);
6388 tmp
= load_reg(s
, rt2
);
6389 gen_st32(tmp
, addr
, IS_USER(s
));
6391 tcg_gen_movi_i32(cpu_R
[rd
], 0);
6392 tcg_gen_br(done_label
);
6393 gen_set_label(fail_label
);
6394 tcg_gen_movi_i32(cpu_R
[rd
], 1);
6395 gen_set_label(done_label
);
6396 tcg_gen_movi_i32(cpu_exclusive_addr
, -1);
6400 static void disas_arm_insn(CPUState
* env
, DisasContext
*s
)
6402 unsigned int cond
, insn
, val
, op1
, i
, shift
, rm
, rs
, rn
, rd
, sh
;
6409 insn
= ldl_code(s
->pc
);
6412 /* M variants do not implement ARM mode. */
6417 /* In ARMv3 and v4 the NV condition is UNPREDICTABLE; we
6418 * choose to UNDEF. In ARMv5 and above the space is used
6419 * for miscellaneous unconditional instructions.
6423 /* Unconditional instructions. */
6424 if (((insn
>> 25) & 7) == 1) {
6425 /* NEON Data processing. */
6426 if (!arm_feature(env
, ARM_FEATURE_NEON
))
6429 if (disas_neon_data_insn(env
, s
, insn
))
6433 if ((insn
& 0x0f100000) == 0x04000000) {
6434 /* NEON load/store. */
6435 if (!arm_feature(env
, ARM_FEATURE_NEON
))
6438 if (disas_neon_ls_insn(env
, s
, insn
))
6442 if (((insn
& 0x0f30f000) == 0x0510f000) ||
6443 ((insn
& 0x0f30f010) == 0x0710f000)) {
6444 if ((insn
& (1 << 22)) == 0) {
6446 if (!arm_feature(env
, ARM_FEATURE_V7MP
)) {
6450 /* Otherwise PLD; v5TE+ */
6454 if (((insn
& 0x0f70f000) == 0x0450f000) ||
6455 ((insn
& 0x0f70f010) == 0x0650f000)) {
6457 return; /* PLI; V7 */
6459 if (((insn
& 0x0f700000) == 0x04100000) ||
6460 ((insn
& 0x0f700010) == 0x06100000)) {
6461 if (!arm_feature(env
, ARM_FEATURE_V7MP
)) {
6464 return; /* v7MP: Unallocated memory hint: must NOP */
6467 if ((insn
& 0x0ffffdff) == 0x01010000) {
6470 if (insn
& (1 << 9)) {
6471 /* BE8 mode not implemented. */
6475 } else if ((insn
& 0x0fffff00) == 0x057ff000) {
6476 switch ((insn
>> 4) & 0xf) {
6485 /* We don't emulate caches so these are a no-op. */
6490 } else if ((insn
& 0x0e5fffe0) == 0x084d0500) {
6496 op1
= (insn
& 0x1f);
6497 addr
= tcg_temp_new_i32();
6498 tmp
= tcg_const_i32(op1
);
6499 gen_helper_get_r13_banked(addr
, cpu_env
, tmp
);
6500 tcg_temp_free_i32(tmp
);
6501 i
= (insn
>> 23) & 3;
6503 case 0: offset
= -4; break; /* DA */
6504 case 1: offset
= 0; break; /* IA */
6505 case 2: offset
= -8; break; /* DB */
6506 case 3: offset
= 4; break; /* IB */
6510 tcg_gen_addi_i32(addr
, addr
, offset
);
6511 tmp
= load_reg(s
, 14);
6512 gen_st32(tmp
, addr
, 0);
6513 tmp
= load_cpu_field(spsr
);
6514 tcg_gen_addi_i32(addr
, addr
, 4);
6515 gen_st32(tmp
, addr
, 0);
6516 if (insn
& (1 << 21)) {
6517 /* Base writeback. */
6519 case 0: offset
= -8; break;
6520 case 1: offset
= 4; break;
6521 case 2: offset
= -4; break;
6522 case 3: offset
= 0; break;
6526 tcg_gen_addi_i32(addr
, addr
, offset
);
6527 tmp
= tcg_const_i32(op1
);
6528 gen_helper_set_r13_banked(cpu_env
, tmp
, addr
);
6529 tcg_temp_free_i32(tmp
);
6530 tcg_temp_free_i32(addr
);
6532 tcg_temp_free_i32(addr
);
6535 } else if ((insn
& 0x0e50ffe0) == 0x08100a00) {
6541 rn
= (insn
>> 16) & 0xf;
6542 addr
= load_reg(s
, rn
);
6543 i
= (insn
>> 23) & 3;
6545 case 0: offset
= -4; break; /* DA */
6546 case 1: offset
= 0; break; /* IA */
6547 case 2: offset
= -8; break; /* DB */
6548 case 3: offset
= 4; break; /* IB */
6552 tcg_gen_addi_i32(addr
, addr
, offset
);
6553 /* Load PC into tmp and CPSR into tmp2. */
6554 tmp
= gen_ld32(addr
, 0);
6555 tcg_gen_addi_i32(addr
, addr
, 4);
6556 tmp2
= gen_ld32(addr
, 0);
6557 if (insn
& (1 << 21)) {
6558 /* Base writeback. */
6560 case 0: offset
= -8; break;
6561 case 1: offset
= 4; break;
6562 case 2: offset
= -4; break;
6563 case 3: offset
= 0; break;
6567 tcg_gen_addi_i32(addr
, addr
, offset
);
6568 store_reg(s
, rn
, addr
);
6570 tcg_temp_free_i32(addr
);
6572 gen_rfe(s
, tmp
, tmp2
);
6574 } else if ((insn
& 0x0e000000) == 0x0a000000) {
6575 /* branch link and change to thumb (blx <offset>) */
6578 val
= (uint32_t)s
->pc
;
6579 tmp
= tcg_temp_new_i32();
6580 tcg_gen_movi_i32(tmp
, val
);
6581 store_reg(s
, 14, tmp
);
6582 /* Sign-extend the 24-bit offset */
6583 offset
= (((int32_t)insn
) << 8) >> 8;
6584 /* offset * 4 + bit24 * 2 + (thumb bit) */
6585 val
+= (offset
<< 2) | ((insn
>> 23) & 2) | 1;
6586 /* pipeline offset */
6588 /* protected by ARCH(5); above, near the start of uncond block */
6591 } else if ((insn
& 0x0e000f00) == 0x0c000100) {
6592 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
6593 /* iWMMXt register transfer. */
6594 if (env
->cp15
.c15_cpar
& (1 << 1))
6595 if (!disas_iwmmxt_insn(env
, s
, insn
))
6598 } else if ((insn
& 0x0fe00000) == 0x0c400000) {
6599 /* Coprocessor double register transfer. */
6601 } else if ((insn
& 0x0f000010) == 0x0e000010) {
6602 /* Additional coprocessor register transfer. */
6603 } else if ((insn
& 0x0ff10020) == 0x01000000) {
6606 /* cps (privileged) */
6610 if (insn
& (1 << 19)) {
6611 if (insn
& (1 << 8))
6613 if (insn
& (1 << 7))
6615 if (insn
& (1 << 6))
6617 if (insn
& (1 << 18))
6620 if (insn
& (1 << 17)) {
6622 val
|= (insn
& 0x1f);
6625 gen_set_psr_im(s
, mask
, 0, val
);
6632 /* if not always execute, we generate a conditional jump to
6634 s
->condlabel
= gen_new_label();
6635 gen_test_cc(cond
^ 1, s
->condlabel
);
6638 if ((insn
& 0x0f900000) == 0x03000000) {
6639 if ((insn
& (1 << 21)) == 0) {
6641 rd
= (insn
>> 12) & 0xf;
6642 val
= ((insn
>> 4) & 0xf000) | (insn
& 0xfff);
6643 if ((insn
& (1 << 22)) == 0) {
6645 tmp
= tcg_temp_new_i32();
6646 tcg_gen_movi_i32(tmp
, val
);
6649 tmp
= load_reg(s
, rd
);
6650 tcg_gen_ext16u_i32(tmp
, tmp
);
6651 tcg_gen_ori_i32(tmp
, tmp
, val
<< 16);
6653 store_reg(s
, rd
, tmp
);
6655 if (((insn
>> 12) & 0xf) != 0xf)
6657 if (((insn
>> 16) & 0xf) == 0) {
6658 gen_nop_hint(s
, insn
& 0xff);
6660 /* CPSR = immediate */
6662 shift
= ((insn
>> 8) & 0xf) * 2;
6664 val
= (val
>> shift
) | (val
<< (32 - shift
));
6665 i
= ((insn
& (1 << 22)) != 0);
6666 if (gen_set_psr_im(s
, msr_mask(env
, s
, (insn
>> 16) & 0xf, i
), i
, val
))
6670 } else if ((insn
& 0x0f900000) == 0x01000000
6671 && (insn
& 0x00000090) != 0x00000090) {
6672 /* miscellaneous instructions */
6673 op1
= (insn
>> 21) & 3;
6674 sh
= (insn
>> 4) & 0xf;
6677 case 0x0: /* move program status register */
6680 tmp
= load_reg(s
, rm
);
6681 i
= ((op1
& 2) != 0);
6682 if (gen_set_psr(s
, msr_mask(env
, s
, (insn
>> 16) & 0xf, i
), i
, tmp
))
6686 rd
= (insn
>> 12) & 0xf;
6690 tmp
= load_cpu_field(spsr
);
6692 tmp
= tcg_temp_new_i32();
6693 gen_helper_cpsr_read(tmp
);
6695 store_reg(s
, rd
, tmp
);
6700 /* branch/exchange thumb (bx). */
6702 tmp
= load_reg(s
, rm
);
6704 } else if (op1
== 3) {
6707 rd
= (insn
>> 12) & 0xf;
6708 tmp
= load_reg(s
, rm
);
6709 gen_helper_clz(tmp
, tmp
);
6710 store_reg(s
, rd
, tmp
);
6718 /* Trivial implementation equivalent to bx. */
6719 tmp
= load_reg(s
, rm
);
6730 /* branch link/exchange thumb (blx) */
6731 tmp
= load_reg(s
, rm
);
6732 tmp2
= tcg_temp_new_i32();
6733 tcg_gen_movi_i32(tmp2
, s
->pc
);
6734 store_reg(s
, 14, tmp2
);
6737 case 0x5: /* saturating add/subtract */
6739 rd
= (insn
>> 12) & 0xf;
6740 rn
= (insn
>> 16) & 0xf;
6741 tmp
= load_reg(s
, rm
);
6742 tmp2
= load_reg(s
, rn
);
6744 gen_helper_double_saturate(tmp2
, tmp2
);
6746 gen_helper_sub_saturate(tmp
, tmp
, tmp2
);
6748 gen_helper_add_saturate(tmp
, tmp
, tmp2
);
6749 tcg_temp_free_i32(tmp2
);
6750 store_reg(s
, rd
, tmp
);
6753 /* SMC instruction (op1 == 3)
6754 and undefined instructions (op1 == 0 || op1 == 2)
6761 gen_exception_insn(s
, 4, EXCP_BKPT
);
6763 case 0x8: /* signed multiply */
6768 rs
= (insn
>> 8) & 0xf;
6769 rn
= (insn
>> 12) & 0xf;
6770 rd
= (insn
>> 16) & 0xf;
6772 /* (32 * 16) >> 16 */
6773 tmp
= load_reg(s
, rm
);
6774 tmp2
= load_reg(s
, rs
);
6776 tcg_gen_sari_i32(tmp2
, tmp2
, 16);
6779 tmp64
= gen_muls_i64_i32(tmp
, tmp2
);
6780 tcg_gen_shri_i64(tmp64
, tmp64
, 16);
6781 tmp
= tcg_temp_new_i32();
6782 tcg_gen_trunc_i64_i32(tmp
, tmp64
);
6783 tcg_temp_free_i64(tmp64
);
6784 if ((sh
& 2) == 0) {
6785 tmp2
= load_reg(s
, rn
);
6786 gen_helper_add_setq(tmp
, tmp
, tmp2
);
6787 tcg_temp_free_i32(tmp2
);
6789 store_reg(s
, rd
, tmp
);
6792 tmp
= load_reg(s
, rm
);
6793 tmp2
= load_reg(s
, rs
);
6794 gen_mulxy(tmp
, tmp2
, sh
& 2, sh
& 4);
6795 tcg_temp_free_i32(tmp2
);
6797 tmp64
= tcg_temp_new_i64();
6798 tcg_gen_ext_i32_i64(tmp64
, tmp
);
6799 tcg_temp_free_i32(tmp
);
6800 gen_addq(s
, tmp64
, rn
, rd
);
6801 gen_storeq_reg(s
, rn
, rd
, tmp64
);
6802 tcg_temp_free_i64(tmp64
);
6805 tmp2
= load_reg(s
, rn
);
6806 gen_helper_add_setq(tmp
, tmp
, tmp2
);
6807 tcg_temp_free_i32(tmp2
);
6809 store_reg(s
, rd
, tmp
);
6816 } else if (((insn
& 0x0e000000) == 0 &&
6817 (insn
& 0x00000090) != 0x90) ||
6818 ((insn
& 0x0e000000) == (1 << 25))) {
6819 int set_cc
, logic_cc
, shiftop
;
6821 op1
= (insn
>> 21) & 0xf;
6822 set_cc
= (insn
>> 20) & 1;
6823 logic_cc
= table_logic_cc
[op1
] & set_cc
;
6825 /* data processing instruction */
6826 if (insn
& (1 << 25)) {
6827 /* immediate operand */
6829 shift
= ((insn
>> 8) & 0xf) * 2;
6831 val
= (val
>> shift
) | (val
<< (32 - shift
));
6833 tmp2
= tcg_temp_new_i32();
6834 tcg_gen_movi_i32(tmp2
, val
);
6835 if (logic_cc
&& shift
) {
6836 gen_set_CF_bit31(tmp2
);
6841 tmp2
= load_reg(s
, rm
);
6842 shiftop
= (insn
>> 5) & 3;
6843 if (!(insn
& (1 << 4))) {
6844 shift
= (insn
>> 7) & 0x1f;
6845 gen_arm_shift_im(tmp2
, shiftop
, shift
, logic_cc
);
6847 rs
= (insn
>> 8) & 0xf;
6848 tmp
= load_reg(s
, rs
);
6849 gen_arm_shift_reg(tmp2
, shiftop
, tmp
, logic_cc
);
6852 if (op1
!= 0x0f && op1
!= 0x0d) {
6853 rn
= (insn
>> 16) & 0xf;
6854 tmp
= load_reg(s
, rn
);
6858 rd
= (insn
>> 12) & 0xf;
6861 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
6865 store_reg_bx(env
, s
, rd
, tmp
);
6868 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
6872 store_reg_bx(env
, s
, rd
, tmp
);
6875 if (set_cc
&& rd
== 15) {
6876 /* SUBS r15, ... is used for exception return. */
6880 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
6881 gen_exception_return(s
, tmp
);
6884 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
6886 tcg_gen_sub_i32(tmp
, tmp
, tmp2
);
6888 store_reg_bx(env
, s
, rd
, tmp
);
6893 gen_helper_sub_cc(tmp
, tmp2
, tmp
);
6895 tcg_gen_sub_i32(tmp
, tmp2
, tmp
);
6897 store_reg_bx(env
, s
, rd
, tmp
);
6901 gen_helper_add_cc(tmp
, tmp
, tmp2
);
6903 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
6905 store_reg_bx(env
, s
, rd
, tmp
);
6909 gen_helper_adc_cc(tmp
, tmp
, tmp2
);
6911 gen_add_carry(tmp
, tmp
, tmp2
);
6913 store_reg_bx(env
, s
, rd
, tmp
);
6917 gen_helper_sbc_cc(tmp
, tmp
, tmp2
);
6919 gen_sub_carry(tmp
, tmp
, tmp2
);
6921 store_reg_bx(env
, s
, rd
, tmp
);
6925 gen_helper_sbc_cc(tmp
, tmp2
, tmp
);
6927 gen_sub_carry(tmp
, tmp2
, tmp
);
6929 store_reg_bx(env
, s
, rd
, tmp
);
6933 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
6936 tcg_temp_free_i32(tmp
);
6940 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
6943 tcg_temp_free_i32(tmp
);
6947 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
6949 tcg_temp_free_i32(tmp
);
6953 gen_helper_add_cc(tmp
, tmp
, tmp2
);
6955 tcg_temp_free_i32(tmp
);
6958 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
6962 store_reg_bx(env
, s
, rd
, tmp
);
6965 if (logic_cc
&& rd
== 15) {
6966 /* MOVS r15, ... is used for exception return. */
6970 gen_exception_return(s
, tmp2
);
6975 store_reg_bx(env
, s
, rd
, tmp2
);
6979 tcg_gen_andc_i32(tmp
, tmp
, tmp2
);
6983 store_reg_bx(env
, s
, rd
, tmp
);
6987 tcg_gen_not_i32(tmp2
, tmp2
);
6991 store_reg_bx(env
, s
, rd
, tmp2
);
6994 if (op1
!= 0x0f && op1
!= 0x0d) {
6995 tcg_temp_free_i32(tmp2
);
6998 /* other instructions */
6999 op1
= (insn
>> 24) & 0xf;
7003 /* multiplies, extra load/stores */
7004 sh
= (insn
>> 5) & 3;
7007 rd
= (insn
>> 16) & 0xf;
7008 rn
= (insn
>> 12) & 0xf;
7009 rs
= (insn
>> 8) & 0xf;
7011 op1
= (insn
>> 20) & 0xf;
7013 case 0: case 1: case 2: case 3: case 6:
7015 tmp
= load_reg(s
, rs
);
7016 tmp2
= load_reg(s
, rm
);
7017 tcg_gen_mul_i32(tmp
, tmp
, tmp2
);
7018 tcg_temp_free_i32(tmp2
);
7019 if (insn
& (1 << 22)) {
7020 /* Subtract (mls) */
7022 tmp2
= load_reg(s
, rn
);
7023 tcg_gen_sub_i32(tmp
, tmp2
, tmp
);
7024 tcg_temp_free_i32(tmp2
);
7025 } else if (insn
& (1 << 21)) {
7027 tmp2
= load_reg(s
, rn
);
7028 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
7029 tcg_temp_free_i32(tmp2
);
7031 if (insn
& (1 << 20))
7033 store_reg(s
, rd
, tmp
);
7036 /* 64 bit mul double accumulate (UMAAL) */
7038 tmp
= load_reg(s
, rs
);
7039 tmp2
= load_reg(s
, rm
);
7040 tmp64
= gen_mulu_i64_i32(tmp
, tmp2
);
7041 gen_addq_lo(s
, tmp64
, rn
);
7042 gen_addq_lo(s
, tmp64
, rd
);
7043 gen_storeq_reg(s
, rn
, rd
, tmp64
);
7044 tcg_temp_free_i64(tmp64
);
7046 case 8: case 9: case 10: case 11:
7047 case 12: case 13: case 14: case 15:
7048 /* 64 bit mul: UMULL, UMLAL, SMULL, SMLAL. */
7049 tmp
= load_reg(s
, rs
);
7050 tmp2
= load_reg(s
, rm
);
7051 if (insn
& (1 << 22)) {
7052 tmp64
= gen_muls_i64_i32(tmp
, tmp2
);
7054 tmp64
= gen_mulu_i64_i32(tmp
, tmp2
);
7056 if (insn
& (1 << 21)) { /* mult accumulate */
7057 gen_addq(s
, tmp64
, rn
, rd
);
7059 if (insn
& (1 << 20)) {
7060 gen_logicq_cc(tmp64
);
7062 gen_storeq_reg(s
, rn
, rd
, tmp64
);
7063 tcg_temp_free_i64(tmp64
);
7069 rn
= (insn
>> 16) & 0xf;
7070 rd
= (insn
>> 12) & 0xf;
7071 if (insn
& (1 << 23)) {
7072 /* load/store exclusive */
7073 op1
= (insn
>> 21) & 0x3;
7078 addr
= tcg_temp_local_new_i32();
7079 load_reg_var(s
, addr
, rn
);
7080 if (insn
& (1 << 20)) {
7083 gen_load_exclusive(s
, rd
, 15, addr
, 2);
7085 case 1: /* ldrexd */
7086 gen_load_exclusive(s
, rd
, rd
+ 1, addr
, 3);
7088 case 2: /* ldrexb */
7089 gen_load_exclusive(s
, rd
, 15, addr
, 0);
7091 case 3: /* ldrexh */
7092 gen_load_exclusive(s
, rd
, 15, addr
, 1);
7101 gen_store_exclusive(s
, rd
, rm
, 15, addr
, 2);
7103 case 1: /* strexd */
7104 gen_store_exclusive(s
, rd
, rm
, rm
+ 1, addr
, 3);
7106 case 2: /* strexb */
7107 gen_store_exclusive(s
, rd
, rm
, 15, addr
, 0);
7109 case 3: /* strexh */
7110 gen_store_exclusive(s
, rd
, rm
, 15, addr
, 1);
7116 tcg_temp_free(addr
);
7118 /* SWP instruction */
7121 /* ??? This is not really atomic. However we know
7122 we never have multiple CPUs running in parallel,
7123 so it is good enough. */
7124 addr
= load_reg(s
, rn
);
7125 tmp
= load_reg(s
, rm
);
7126 if (insn
& (1 << 22)) {
7127 tmp2
= gen_ld8u(addr
, IS_USER(s
));
7128 gen_st8(tmp
, addr
, IS_USER(s
));
7130 tmp2
= gen_ld32(addr
, IS_USER(s
));
7131 gen_st32(tmp
, addr
, IS_USER(s
));
7133 tcg_temp_free_i32(addr
);
7134 store_reg(s
, rd
, tmp2
);
7140 /* Misc load/store */
7141 rn
= (insn
>> 16) & 0xf;
7142 rd
= (insn
>> 12) & 0xf;
7143 addr
= load_reg(s
, rn
);
7144 if (insn
& (1 << 24))
7145 gen_add_datah_offset(s
, insn
, 0, addr
);
7147 if (insn
& (1 << 20)) {
7151 tmp
= gen_ld16u(addr
, IS_USER(s
));
7154 tmp
= gen_ld8s(addr
, IS_USER(s
));
7158 tmp
= gen_ld16s(addr
, IS_USER(s
));
7162 } else if (sh
& 2) {
7167 tmp
= load_reg(s
, rd
);
7168 gen_st32(tmp
, addr
, IS_USER(s
));
7169 tcg_gen_addi_i32(addr
, addr
, 4);
7170 tmp
= load_reg(s
, rd
+ 1);
7171 gen_st32(tmp
, addr
, IS_USER(s
));
7175 tmp
= gen_ld32(addr
, IS_USER(s
));
7176 store_reg(s
, rd
, tmp
);
7177 tcg_gen_addi_i32(addr
, addr
, 4);
7178 tmp
= gen_ld32(addr
, IS_USER(s
));
7182 address_offset
= -4;
7185 tmp
= load_reg(s
, rd
);
7186 gen_st16(tmp
, addr
, IS_USER(s
));
7189 /* Perform base writeback before the loaded value to
7190 ensure correct behavior with overlapping index registers.
7191 ldrd with base writeback is is undefined if the
7192 destination and index registers overlap. */
7193 if (!(insn
& (1 << 24))) {
7194 gen_add_datah_offset(s
, insn
, address_offset
, addr
);
7195 store_reg(s
, rn
, addr
);
7196 } else if (insn
& (1 << 21)) {
7198 tcg_gen_addi_i32(addr
, addr
, address_offset
);
7199 store_reg(s
, rn
, addr
);
7201 tcg_temp_free_i32(addr
);
7204 /* Complete the load. */
7205 store_reg(s
, rd
, tmp
);
7214 if (insn
& (1 << 4)) {
7216 /* Armv6 Media instructions. */
7218 rn
= (insn
>> 16) & 0xf;
7219 rd
= (insn
>> 12) & 0xf;
7220 rs
= (insn
>> 8) & 0xf;
7221 switch ((insn
>> 23) & 3) {
7222 case 0: /* Parallel add/subtract. */
7223 op1
= (insn
>> 20) & 7;
7224 tmp
= load_reg(s
, rn
);
7225 tmp2
= load_reg(s
, rm
);
7226 sh
= (insn
>> 5) & 7;
7227 if ((op1
& 3) == 0 || sh
== 5 || sh
== 6)
7229 gen_arm_parallel_addsub(op1
, sh
, tmp
, tmp2
);
7230 tcg_temp_free_i32(tmp2
);
7231 store_reg(s
, rd
, tmp
);
7234 if ((insn
& 0x00700020) == 0) {
7235 /* Halfword pack. */
7236 tmp
= load_reg(s
, rn
);
7237 tmp2
= load_reg(s
, rm
);
7238 shift
= (insn
>> 7) & 0x1f;
7239 if (insn
& (1 << 6)) {
7243 tcg_gen_sari_i32(tmp2
, tmp2
, shift
);
7244 tcg_gen_andi_i32(tmp
, tmp
, 0xffff0000);
7245 tcg_gen_ext16u_i32(tmp2
, tmp2
);
7249 tcg_gen_shli_i32(tmp2
, tmp2
, shift
);
7250 tcg_gen_ext16u_i32(tmp
, tmp
);
7251 tcg_gen_andi_i32(tmp2
, tmp2
, 0xffff0000);
7253 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
7254 tcg_temp_free_i32(tmp2
);
7255 store_reg(s
, rd
, tmp
);
7256 } else if ((insn
& 0x00200020) == 0x00200000) {
7258 tmp
= load_reg(s
, rm
);
7259 shift
= (insn
>> 7) & 0x1f;
7260 if (insn
& (1 << 6)) {
7263 tcg_gen_sari_i32(tmp
, tmp
, shift
);
7265 tcg_gen_shli_i32(tmp
, tmp
, shift
);
7267 sh
= (insn
>> 16) & 0x1f;
7268 tmp2
= tcg_const_i32(sh
);
7269 if (insn
& (1 << 22))
7270 gen_helper_usat(tmp
, tmp
, tmp2
);
7272 gen_helper_ssat(tmp
, tmp
, tmp2
);
7273 tcg_temp_free_i32(tmp2
);
7274 store_reg(s
, rd
, tmp
);
7275 } else if ((insn
& 0x00300fe0) == 0x00200f20) {
7277 tmp
= load_reg(s
, rm
);
7278 sh
= (insn
>> 16) & 0x1f;
7279 tmp2
= tcg_const_i32(sh
);
7280 if (insn
& (1 << 22))
7281 gen_helper_usat16(tmp
, tmp
, tmp2
);
7283 gen_helper_ssat16(tmp
, tmp
, tmp2
);
7284 tcg_temp_free_i32(tmp2
);
7285 store_reg(s
, rd
, tmp
);
7286 } else if ((insn
& 0x00700fe0) == 0x00000fa0) {
7288 tmp
= load_reg(s
, rn
);
7289 tmp2
= load_reg(s
, rm
);
7290 tmp3
= tcg_temp_new_i32();
7291 tcg_gen_ld_i32(tmp3
, cpu_env
, offsetof(CPUState
, GE
));
7292 gen_helper_sel_flags(tmp
, tmp3
, tmp
, tmp2
);
7293 tcg_temp_free_i32(tmp3
);
7294 tcg_temp_free_i32(tmp2
);
7295 store_reg(s
, rd
, tmp
);
7296 } else if ((insn
& 0x000003e0) == 0x00000060) {
7297 tmp
= load_reg(s
, rm
);
7298 shift
= (insn
>> 10) & 3;
7299 /* ??? In many cases it's not neccessary to do a
7300 rotate, a shift is sufficient. */
7302 tcg_gen_rotri_i32(tmp
, tmp
, shift
* 8);
7303 op1
= (insn
>> 20) & 7;
7305 case 0: gen_sxtb16(tmp
); break;
7306 case 2: gen_sxtb(tmp
); break;
7307 case 3: gen_sxth(tmp
); break;
7308 case 4: gen_uxtb16(tmp
); break;
7309 case 6: gen_uxtb(tmp
); break;
7310 case 7: gen_uxth(tmp
); break;
7311 default: goto illegal_op
;
7314 tmp2
= load_reg(s
, rn
);
7315 if ((op1
& 3) == 0) {
7316 gen_add16(tmp
, tmp2
);
7318 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
7319 tcg_temp_free_i32(tmp2
);
7322 store_reg(s
, rd
, tmp
);
7323 } else if ((insn
& 0x003f0f60) == 0x003f0f20) {
7325 tmp
= load_reg(s
, rm
);
7326 if (insn
& (1 << 22)) {
7327 if (insn
& (1 << 7)) {
7331 gen_helper_rbit(tmp
, tmp
);
7334 if (insn
& (1 << 7))
7337 tcg_gen_bswap32_i32(tmp
, tmp
);
7339 store_reg(s
, rd
, tmp
);
7344 case 2: /* Multiplies (Type 3). */
7345 tmp
= load_reg(s
, rm
);
7346 tmp2
= load_reg(s
, rs
);
7347 if (insn
& (1 << 20)) {
7348 /* Signed multiply most significant [accumulate].
7349 (SMMUL, SMMLA, SMMLS) */
7350 tmp64
= gen_muls_i64_i32(tmp
, tmp2
);
7353 tmp
= load_reg(s
, rd
);
7354 if (insn
& (1 << 6)) {
7355 tmp64
= gen_subq_msw(tmp64
, tmp
);
7357 tmp64
= gen_addq_msw(tmp64
, tmp
);
7360 if (insn
& (1 << 5)) {
7361 tcg_gen_addi_i64(tmp64
, tmp64
, 0x80000000u
);
7363 tcg_gen_shri_i64(tmp64
, tmp64
, 32);
7364 tmp
= tcg_temp_new_i32();
7365 tcg_gen_trunc_i64_i32(tmp
, tmp64
);
7366 tcg_temp_free_i64(tmp64
);
7367 store_reg(s
, rn
, tmp
);
7369 if (insn
& (1 << 5))
7370 gen_swap_half(tmp2
);
7371 gen_smul_dual(tmp
, tmp2
);
7372 if (insn
& (1 << 6)) {
7373 /* This subtraction cannot overflow. */
7374 tcg_gen_sub_i32(tmp
, tmp
, tmp2
);
7376 /* This addition cannot overflow 32 bits;
7377 * however it may overflow considered as a signed
7378 * operation, in which case we must set the Q flag.
7380 gen_helper_add_setq(tmp
, tmp
, tmp2
);
7382 tcg_temp_free_i32(tmp2
);
7383 if (insn
& (1 << 22)) {
7384 /* smlald, smlsld */
7385 tmp64
= tcg_temp_new_i64();
7386 tcg_gen_ext_i32_i64(tmp64
, tmp
);
7387 tcg_temp_free_i32(tmp
);
7388 gen_addq(s
, tmp64
, rd
, rn
);
7389 gen_storeq_reg(s
, rd
, rn
, tmp64
);
7390 tcg_temp_free_i64(tmp64
);
7392 /* smuad, smusd, smlad, smlsd */
7395 tmp2
= load_reg(s
, rd
);
7396 gen_helper_add_setq(tmp
, tmp
, tmp2
);
7397 tcg_temp_free_i32(tmp2
);
7399 store_reg(s
, rn
, tmp
);
7404 op1
= ((insn
>> 17) & 0x38) | ((insn
>> 5) & 7);
7406 case 0: /* Unsigned sum of absolute differences. */
7408 tmp
= load_reg(s
, rm
);
7409 tmp2
= load_reg(s
, rs
);
7410 gen_helper_usad8(tmp
, tmp
, tmp2
);
7411 tcg_temp_free_i32(tmp2
);
7413 tmp2
= load_reg(s
, rd
);
7414 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
7415 tcg_temp_free_i32(tmp2
);
7417 store_reg(s
, rn
, tmp
);
7419 case 0x20: case 0x24: case 0x28: case 0x2c:
7420 /* Bitfield insert/clear. */
7422 shift
= (insn
>> 7) & 0x1f;
7423 i
= (insn
>> 16) & 0x1f;
7426 tmp
= tcg_temp_new_i32();
7427 tcg_gen_movi_i32(tmp
, 0);
7429 tmp
= load_reg(s
, rm
);
7432 tmp2
= load_reg(s
, rd
);
7433 gen_bfi(tmp
, tmp2
, tmp
, shift
, (1u << i
) - 1);
7434 tcg_temp_free_i32(tmp2
);
7436 store_reg(s
, rd
, tmp
);
7438 case 0x12: case 0x16: case 0x1a: case 0x1e: /* sbfx */
7439 case 0x32: case 0x36: case 0x3a: case 0x3e: /* ubfx */
7441 tmp
= load_reg(s
, rm
);
7442 shift
= (insn
>> 7) & 0x1f;
7443 i
= ((insn
>> 16) & 0x1f) + 1;
7448 gen_ubfx(tmp
, shift
, (1u << i
) - 1);
7450 gen_sbfx(tmp
, shift
, i
);
7453 store_reg(s
, rd
, tmp
);
7463 /* Check for undefined extension instructions
7464 * per the ARM Bible IE:
7465 * xxxx 0111 1111 xxxx xxxx xxxx 1111 xxxx
7467 sh
= (0xf << 20) | (0xf << 4);
7468 if (op1
== 0x7 && ((insn
& sh
) == sh
))
7472 /* load/store byte/word */
7473 rn
= (insn
>> 16) & 0xf;
7474 rd
= (insn
>> 12) & 0xf;
7475 tmp2
= load_reg(s
, rn
);
7476 i
= (IS_USER(s
) || (insn
& 0x01200000) == 0x00200000);
7477 if (insn
& (1 << 24))
7478 gen_add_data_offset(s
, insn
, tmp2
);
7479 if (insn
& (1 << 20)) {
7481 if (insn
& (1 << 22)) {
7482 tmp
= gen_ld8u(tmp2
, i
);
7484 tmp
= gen_ld32(tmp2
, i
);
7488 tmp
= load_reg(s
, rd
);
7489 if (insn
& (1 << 22))
7490 gen_st8(tmp
, tmp2
, i
);
7492 gen_st32(tmp
, tmp2
, i
);
7494 if (!(insn
& (1 << 24))) {
7495 gen_add_data_offset(s
, insn
, tmp2
);
7496 store_reg(s
, rn
, tmp2
);
7497 } else if (insn
& (1 << 21)) {
7498 store_reg(s
, rn
, tmp2
);
7500 tcg_temp_free_i32(tmp2
);
7502 if (insn
& (1 << 20)) {
7503 /* Complete the load. */
7504 store_reg_from_load(env
, s
, rd
, tmp
);
7510 int j
, n
, user
, loaded_base
;
7512 /* load/store multiple words */
7513 /* XXX: store correct base if write back */
7515 if (insn
& (1 << 22)) {
7517 goto illegal_op
; /* only usable in supervisor mode */
7519 if ((insn
& (1 << 15)) == 0)
7522 rn
= (insn
>> 16) & 0xf;
7523 addr
= load_reg(s
, rn
);
7525 /* compute total size */
7527 TCGV_UNUSED(loaded_var
);
7530 if (insn
& (1 << i
))
7533 /* XXX: test invalid n == 0 case ? */
7534 if (insn
& (1 << 23)) {
7535 if (insn
& (1 << 24)) {
7537 tcg_gen_addi_i32(addr
, addr
, 4);
7539 /* post increment */
7542 if (insn
& (1 << 24)) {
7544 tcg_gen_addi_i32(addr
, addr
, -(n
* 4));
7546 /* post decrement */
7548 tcg_gen_addi_i32(addr
, addr
, -((n
- 1) * 4));
7553 if (insn
& (1 << i
)) {
7554 if (insn
& (1 << 20)) {
7556 tmp
= gen_ld32(addr
, IS_USER(s
));
7558 tmp2
= tcg_const_i32(i
);
7559 gen_helper_set_user_reg(tmp2
, tmp
);
7560 tcg_temp_free_i32(tmp2
);
7561 tcg_temp_free_i32(tmp
);
7562 } else if (i
== rn
) {
7566 store_reg_from_load(env
, s
, i
, tmp
);
7571 /* special case: r15 = PC + 8 */
7572 val
= (long)s
->pc
+ 4;
7573 tmp
= tcg_temp_new_i32();
7574 tcg_gen_movi_i32(tmp
, val
);
7576 tmp
= tcg_temp_new_i32();
7577 tmp2
= tcg_const_i32(i
);
7578 gen_helper_get_user_reg(tmp
, tmp2
);
7579 tcg_temp_free_i32(tmp2
);
7581 tmp
= load_reg(s
, i
);
7583 gen_st32(tmp
, addr
, IS_USER(s
));
7586 /* no need to add after the last transfer */
7588 tcg_gen_addi_i32(addr
, addr
, 4);
7591 if (insn
& (1 << 21)) {
7593 if (insn
& (1 << 23)) {
7594 if (insn
& (1 << 24)) {
7597 /* post increment */
7598 tcg_gen_addi_i32(addr
, addr
, 4);
7601 if (insn
& (1 << 24)) {
7604 tcg_gen_addi_i32(addr
, addr
, -((n
- 1) * 4));
7606 /* post decrement */
7607 tcg_gen_addi_i32(addr
, addr
, -(n
* 4));
7610 store_reg(s
, rn
, addr
);
7612 tcg_temp_free_i32(addr
);
7615 store_reg(s
, rn
, loaded_var
);
7617 if ((insn
& (1 << 22)) && !user
) {
7618 /* Restore CPSR from SPSR. */
7619 tmp
= load_cpu_field(spsr
);
7620 gen_set_cpsr(tmp
, 0xffffffff);
7621 tcg_temp_free_i32(tmp
);
7622 s
->is_jmp
= DISAS_UPDATE
;
7631 /* branch (and link) */
7632 val
= (int32_t)s
->pc
;
7633 if (insn
& (1 << 24)) {
7634 tmp
= tcg_temp_new_i32();
7635 tcg_gen_movi_i32(tmp
, val
);
7636 store_reg(s
, 14, tmp
);
7638 offset
= (((int32_t)insn
<< 8) >> 8);
7639 val
+= (offset
<< 2) + 4;
7647 if (disas_coproc_insn(env
, s
, insn
))
7652 gen_set_pc_im(s
->pc
);
7653 s
->is_jmp
= DISAS_SWI
;
7657 gen_exception_insn(s
, 4, EXCP_UDEF
);
7663 /* Return true if this is a Thumb-2 logical op. */
7665 thumb2_logic_op(int op
)
7670 /* Generate code for a Thumb-2 data processing operation. If CONDS is nonzero
7671 then set condition code flags based on the result of the operation.
7672 If SHIFTER_OUT is nonzero then set the carry flag for logical operations
7673 to the high bit of T1.
7674 Returns zero if the opcode is valid. */
7677 gen_thumb2_data_op(DisasContext
*s
, int op
, int conds
, uint32_t shifter_out
, TCGv t0
, TCGv t1
)
7684 tcg_gen_and_i32(t0
, t0
, t1
);
7688 tcg_gen_andc_i32(t0
, t0
, t1
);
7692 tcg_gen_or_i32(t0
, t0
, t1
);
7696 tcg_gen_orc_i32(t0
, t0
, t1
);
7700 tcg_gen_xor_i32(t0
, t0
, t1
);
7705 gen_helper_add_cc(t0
, t0
, t1
);
7707 tcg_gen_add_i32(t0
, t0
, t1
);
7711 gen_helper_adc_cc(t0
, t0
, t1
);
7717 gen_helper_sbc_cc(t0
, t0
, t1
);
7719 gen_sub_carry(t0
, t0
, t1
);
7723 gen_helper_sub_cc(t0
, t0
, t1
);
7725 tcg_gen_sub_i32(t0
, t0
, t1
);
7729 gen_helper_sub_cc(t0
, t1
, t0
);
7731 tcg_gen_sub_i32(t0
, t1
, t0
);
7733 default: /* 5, 6, 7, 9, 12, 15. */
7739 gen_set_CF_bit31(t1
);
7744 /* Translate a 32-bit thumb instruction. Returns nonzero if the instruction
7746 static int disas_thumb2_insn(CPUState
*env
, DisasContext
*s
, uint16_t insn_hw1
)
7748 uint32_t insn
, imm
, shift
, offset
;
7749 uint32_t rd
, rn
, rm
, rs
;
7760 if (!(arm_feature(env
, ARM_FEATURE_THUMB2
)
7761 || arm_feature (env
, ARM_FEATURE_M
))) {
7762 /* Thumb-1 cores may need to treat bl and blx as a pair of
7763 16-bit instructions to get correct prefetch abort behavior. */
7765 if ((insn
& (1 << 12)) == 0) {
7767 /* Second half of blx. */
7768 offset
= ((insn
& 0x7ff) << 1);
7769 tmp
= load_reg(s
, 14);
7770 tcg_gen_addi_i32(tmp
, tmp
, offset
);
7771 tcg_gen_andi_i32(tmp
, tmp
, 0xfffffffc);
7773 tmp2
= tcg_temp_new_i32();
7774 tcg_gen_movi_i32(tmp2
, s
->pc
| 1);
7775 store_reg(s
, 14, tmp2
);
7779 if (insn
& (1 << 11)) {
7780 /* Second half of bl. */
7781 offset
= ((insn
& 0x7ff) << 1) | 1;
7782 tmp
= load_reg(s
, 14);
7783 tcg_gen_addi_i32(tmp
, tmp
, offset
);
7785 tmp2
= tcg_temp_new_i32();
7786 tcg_gen_movi_i32(tmp2
, s
->pc
| 1);
7787 store_reg(s
, 14, tmp2
);
7791 if ((s
->pc
& ~TARGET_PAGE_MASK
) == 0) {
7792 /* Instruction spans a page boundary. Implement it as two
7793 16-bit instructions in case the second half causes an
7795 offset
= ((int32_t)insn
<< 21) >> 9;
7796 tcg_gen_movi_i32(cpu_R
[14], s
->pc
+ 2 + offset
);
7799 /* Fall through to 32-bit decode. */
7802 insn
= lduw_code(s
->pc
);
7804 insn
|= (uint32_t)insn_hw1
<< 16;
7806 if ((insn
& 0xf800e800) != 0xf000e800) {
7810 rn
= (insn
>> 16) & 0xf;
7811 rs
= (insn
>> 12) & 0xf;
7812 rd
= (insn
>> 8) & 0xf;
7814 switch ((insn
>> 25) & 0xf) {
7815 case 0: case 1: case 2: case 3:
7816 /* 16-bit instructions. Should never happen. */
7819 if (insn
& (1 << 22)) {
7820 /* Other load/store, table branch. */
7821 if (insn
& 0x01200000) {
7822 /* Load/store doubleword. */
7824 addr
= tcg_temp_new_i32();
7825 tcg_gen_movi_i32(addr
, s
->pc
& ~3);
7827 addr
= load_reg(s
, rn
);
7829 offset
= (insn
& 0xff) * 4;
7830 if ((insn
& (1 << 23)) == 0)
7832 if (insn
& (1 << 24)) {
7833 tcg_gen_addi_i32(addr
, addr
, offset
);
7836 if (insn
& (1 << 20)) {
7838 tmp
= gen_ld32(addr
, IS_USER(s
));
7839 store_reg(s
, rs
, tmp
);
7840 tcg_gen_addi_i32(addr
, addr
, 4);
7841 tmp
= gen_ld32(addr
, IS_USER(s
));
7842 store_reg(s
, rd
, tmp
);
7845 tmp
= load_reg(s
, rs
);
7846 gen_st32(tmp
, addr
, IS_USER(s
));
7847 tcg_gen_addi_i32(addr
, addr
, 4);
7848 tmp
= load_reg(s
, rd
);
7849 gen_st32(tmp
, addr
, IS_USER(s
));
7851 if (insn
& (1 << 21)) {
7852 /* Base writeback. */
7855 tcg_gen_addi_i32(addr
, addr
, offset
- 4);
7856 store_reg(s
, rn
, addr
);
7858 tcg_temp_free_i32(addr
);
7860 } else if ((insn
& (1 << 23)) == 0) {
7861 /* Load/store exclusive word. */
7862 addr
= tcg_temp_local_new();
7863 load_reg_var(s
, addr
, rn
);
7864 tcg_gen_addi_i32(addr
, addr
, (insn
& 0xff) << 2);
7865 if (insn
& (1 << 20)) {
7866 gen_load_exclusive(s
, rs
, 15, addr
, 2);
7868 gen_store_exclusive(s
, rd
, rs
, 15, addr
, 2);
7870 tcg_temp_free(addr
);
7871 } else if ((insn
& (1 << 6)) == 0) {
7874 addr
= tcg_temp_new_i32();
7875 tcg_gen_movi_i32(addr
, s
->pc
);
7877 addr
= load_reg(s
, rn
);
7879 tmp
= load_reg(s
, rm
);
7880 tcg_gen_add_i32(addr
, addr
, tmp
);
7881 if (insn
& (1 << 4)) {
7883 tcg_gen_add_i32(addr
, addr
, tmp
);
7884 tcg_temp_free_i32(tmp
);
7885 tmp
= gen_ld16u(addr
, IS_USER(s
));
7887 tcg_temp_free_i32(tmp
);
7888 tmp
= gen_ld8u(addr
, IS_USER(s
));
7890 tcg_temp_free_i32(addr
);
7891 tcg_gen_shli_i32(tmp
, tmp
, 1);
7892 tcg_gen_addi_i32(tmp
, tmp
, s
->pc
);
7893 store_reg(s
, 15, tmp
);
7895 /* Load/store exclusive byte/halfword/doubleword. */
7897 op
= (insn
>> 4) & 0x3;
7901 addr
= tcg_temp_local_new();
7902 load_reg_var(s
, addr
, rn
);
7903 if (insn
& (1 << 20)) {
7904 gen_load_exclusive(s
, rs
, rd
, addr
, op
);
7906 gen_store_exclusive(s
, rm
, rs
, rd
, addr
, op
);
7908 tcg_temp_free(addr
);
7911 /* Load/store multiple, RFE, SRS. */
7912 if (((insn
>> 23) & 1) == ((insn
>> 24) & 1)) {
7913 /* Not available in user mode. */
7916 if (insn
& (1 << 20)) {
7918 addr
= load_reg(s
, rn
);
7919 if ((insn
& (1 << 24)) == 0)
7920 tcg_gen_addi_i32(addr
, addr
, -8);
7921 /* Load PC into tmp and CPSR into tmp2. */
7922 tmp
= gen_ld32(addr
, 0);
7923 tcg_gen_addi_i32(addr
, addr
, 4);
7924 tmp2
= gen_ld32(addr
, 0);
7925 if (insn
& (1 << 21)) {
7926 /* Base writeback. */
7927 if (insn
& (1 << 24)) {
7928 tcg_gen_addi_i32(addr
, addr
, 4);
7930 tcg_gen_addi_i32(addr
, addr
, -4);
7932 store_reg(s
, rn
, addr
);
7934 tcg_temp_free_i32(addr
);
7936 gen_rfe(s
, tmp
, tmp2
);
7940 addr
= tcg_temp_new_i32();
7941 tmp
= tcg_const_i32(op
);
7942 gen_helper_get_r13_banked(addr
, cpu_env
, tmp
);
7943 tcg_temp_free_i32(tmp
);
7944 if ((insn
& (1 << 24)) == 0) {
7945 tcg_gen_addi_i32(addr
, addr
, -8);
7947 tmp
= load_reg(s
, 14);
7948 gen_st32(tmp
, addr
, 0);
7949 tcg_gen_addi_i32(addr
, addr
, 4);
7950 tmp
= tcg_temp_new_i32();
7951 gen_helper_cpsr_read(tmp
);
7952 gen_st32(tmp
, addr
, 0);
7953 if (insn
& (1 << 21)) {
7954 if ((insn
& (1 << 24)) == 0) {
7955 tcg_gen_addi_i32(addr
, addr
, -4);
7957 tcg_gen_addi_i32(addr
, addr
, 4);
7959 tmp
= tcg_const_i32(op
);
7960 gen_helper_set_r13_banked(cpu_env
, tmp
, addr
);
7961 tcg_temp_free_i32(tmp
);
7963 tcg_temp_free_i32(addr
);
7968 /* Load/store multiple. */
7969 addr
= load_reg(s
, rn
);
7971 for (i
= 0; i
< 16; i
++) {
7972 if (insn
& (1 << i
))
7975 if (insn
& (1 << 24)) {
7976 tcg_gen_addi_i32(addr
, addr
, -offset
);
7979 for (i
= 0; i
< 16; i
++) {
7980 if ((insn
& (1 << i
)) == 0)
7982 if (insn
& (1 << 20)) {
7984 tmp
= gen_ld32(addr
, IS_USER(s
));
7988 store_reg(s
, i
, tmp
);
7992 tmp
= load_reg(s
, i
);
7993 gen_st32(tmp
, addr
, IS_USER(s
));
7995 tcg_gen_addi_i32(addr
, addr
, 4);
7997 if (insn
& (1 << 21)) {
7998 /* Base register writeback. */
7999 if (insn
& (1 << 24)) {
8000 tcg_gen_addi_i32(addr
, addr
, -offset
);
8002 /* Fault if writeback register is in register list. */
8003 if (insn
& (1 << rn
))
8005 store_reg(s
, rn
, addr
);
8007 tcg_temp_free_i32(addr
);
8014 op
= (insn
>> 21) & 0xf;
8016 /* Halfword pack. */
8017 tmp
= load_reg(s
, rn
);
8018 tmp2
= load_reg(s
, rm
);
8019 shift
= ((insn
>> 10) & 0x1c) | ((insn
>> 6) & 0x3);
8020 if (insn
& (1 << 5)) {
8024 tcg_gen_sari_i32(tmp2
, tmp2
, shift
);
8025 tcg_gen_andi_i32(tmp
, tmp
, 0xffff0000);
8026 tcg_gen_ext16u_i32(tmp2
, tmp2
);
8030 tcg_gen_shli_i32(tmp2
, tmp2
, shift
);
8031 tcg_gen_ext16u_i32(tmp
, tmp
);
8032 tcg_gen_andi_i32(tmp2
, tmp2
, 0xffff0000);
8034 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
8035 tcg_temp_free_i32(tmp2
);
8036 store_reg(s
, rd
, tmp
);
8038 /* Data processing register constant shift. */
8040 tmp
= tcg_temp_new_i32();
8041 tcg_gen_movi_i32(tmp
, 0);
8043 tmp
= load_reg(s
, rn
);
8045 tmp2
= load_reg(s
, rm
);
8047 shiftop
= (insn
>> 4) & 3;
8048 shift
= ((insn
>> 6) & 3) | ((insn
>> 10) & 0x1c);
8049 conds
= (insn
& (1 << 20)) != 0;
8050 logic_cc
= (conds
&& thumb2_logic_op(op
));
8051 gen_arm_shift_im(tmp2
, shiftop
, shift
, logic_cc
);
8052 if (gen_thumb2_data_op(s
, op
, conds
, 0, tmp
, tmp2
))
8054 tcg_temp_free_i32(tmp2
);
8056 store_reg(s
, rd
, tmp
);
8058 tcg_temp_free_i32(tmp
);
8062 case 13: /* Misc data processing. */
8063 op
= ((insn
>> 22) & 6) | ((insn
>> 7) & 1);
8064 if (op
< 4 && (insn
& 0xf000) != 0xf000)
8067 case 0: /* Register controlled shift. */
8068 tmp
= load_reg(s
, rn
);
8069 tmp2
= load_reg(s
, rm
);
8070 if ((insn
& 0x70) != 0)
8072 op
= (insn
>> 21) & 3;
8073 logic_cc
= (insn
& (1 << 20)) != 0;
8074 gen_arm_shift_reg(tmp
, op
, tmp2
, logic_cc
);
8077 store_reg_bx(env
, s
, rd
, tmp
);
8079 case 1: /* Sign/zero extend. */
8080 tmp
= load_reg(s
, rm
);
8081 shift
= (insn
>> 4) & 3;
8082 /* ??? In many cases it's not neccessary to do a
8083 rotate, a shift is sufficient. */
8085 tcg_gen_rotri_i32(tmp
, tmp
, shift
* 8);
8086 op
= (insn
>> 20) & 7;
8088 case 0: gen_sxth(tmp
); break;
8089 case 1: gen_uxth(tmp
); break;
8090 case 2: gen_sxtb16(tmp
); break;
8091 case 3: gen_uxtb16(tmp
); break;
8092 case 4: gen_sxtb(tmp
); break;
8093 case 5: gen_uxtb(tmp
); break;
8094 default: goto illegal_op
;
8097 tmp2
= load_reg(s
, rn
);
8098 if ((op
>> 1) == 1) {
8099 gen_add16(tmp
, tmp2
);
8101 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8102 tcg_temp_free_i32(tmp2
);
8105 store_reg(s
, rd
, tmp
);
8107 case 2: /* SIMD add/subtract. */
8108 op
= (insn
>> 20) & 7;
8109 shift
= (insn
>> 4) & 7;
8110 if ((op
& 3) == 3 || (shift
& 3) == 3)
8112 tmp
= load_reg(s
, rn
);
8113 tmp2
= load_reg(s
, rm
);
8114 gen_thumb2_parallel_addsub(op
, shift
, tmp
, tmp2
);
8115 tcg_temp_free_i32(tmp2
);
8116 store_reg(s
, rd
, tmp
);
8118 case 3: /* Other data processing. */
8119 op
= ((insn
>> 17) & 0x38) | ((insn
>> 4) & 7);
8121 /* Saturating add/subtract. */
8122 tmp
= load_reg(s
, rn
);
8123 tmp2
= load_reg(s
, rm
);
8125 gen_helper_double_saturate(tmp
, tmp
);
8127 gen_helper_sub_saturate(tmp
, tmp2
, tmp
);
8129 gen_helper_add_saturate(tmp
, tmp
, tmp2
);
8130 tcg_temp_free_i32(tmp2
);
8132 tmp
= load_reg(s
, rn
);
8134 case 0x0a: /* rbit */
8135 gen_helper_rbit(tmp
, tmp
);
8137 case 0x08: /* rev */
8138 tcg_gen_bswap32_i32(tmp
, tmp
);
8140 case 0x09: /* rev16 */
8143 case 0x0b: /* revsh */
8146 case 0x10: /* sel */
8147 tmp2
= load_reg(s
, rm
);
8148 tmp3
= tcg_temp_new_i32();
8149 tcg_gen_ld_i32(tmp3
, cpu_env
, offsetof(CPUState
, GE
));
8150 gen_helper_sel_flags(tmp
, tmp3
, tmp
, tmp2
);
8151 tcg_temp_free_i32(tmp3
);
8152 tcg_temp_free_i32(tmp2
);
8154 case 0x18: /* clz */
8155 gen_helper_clz(tmp
, tmp
);
8161 store_reg(s
, rd
, tmp
);
8163 case 4: case 5: /* 32-bit multiply. Sum of absolute differences. */
8164 op
= (insn
>> 4) & 0xf;
8165 tmp
= load_reg(s
, rn
);
8166 tmp2
= load_reg(s
, rm
);
8167 switch ((insn
>> 20) & 7) {
8168 case 0: /* 32 x 32 -> 32 */
8169 tcg_gen_mul_i32(tmp
, tmp
, tmp2
);
8170 tcg_temp_free_i32(tmp2
);
8172 tmp2
= load_reg(s
, rs
);
8174 tcg_gen_sub_i32(tmp
, tmp2
, tmp
);
8176 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8177 tcg_temp_free_i32(tmp2
);
8180 case 1: /* 16 x 16 -> 32 */
8181 gen_mulxy(tmp
, tmp2
, op
& 2, op
& 1);
8182 tcg_temp_free_i32(tmp2
);
8184 tmp2
= load_reg(s
, rs
);
8185 gen_helper_add_setq(tmp
, tmp
, tmp2
);
8186 tcg_temp_free_i32(tmp2
);
8189 case 2: /* Dual multiply add. */
8190 case 4: /* Dual multiply subtract. */
8192 gen_swap_half(tmp2
);
8193 gen_smul_dual(tmp
, tmp2
);
8194 if (insn
& (1 << 22)) {
8195 /* This subtraction cannot overflow. */
8196 tcg_gen_sub_i32(tmp
, tmp
, tmp2
);
8198 /* This addition cannot overflow 32 bits;
8199 * however it may overflow considered as a signed
8200 * operation, in which case we must set the Q flag.
8202 gen_helper_add_setq(tmp
, tmp
, tmp2
);
8204 tcg_temp_free_i32(tmp2
);
8207 tmp2
= load_reg(s
, rs
);
8208 gen_helper_add_setq(tmp
, tmp
, tmp2
);
8209 tcg_temp_free_i32(tmp2
);
8212 case 3: /* 32 * 16 -> 32msb */
8214 tcg_gen_sari_i32(tmp2
, tmp2
, 16);
8217 tmp64
= gen_muls_i64_i32(tmp
, tmp2
);
8218 tcg_gen_shri_i64(tmp64
, tmp64
, 16);
8219 tmp
= tcg_temp_new_i32();
8220 tcg_gen_trunc_i64_i32(tmp
, tmp64
);
8221 tcg_temp_free_i64(tmp64
);
8224 tmp2
= load_reg(s
, rs
);
8225 gen_helper_add_setq(tmp
, tmp
, tmp2
);
8226 tcg_temp_free_i32(tmp2
);
8229 case 5: case 6: /* 32 * 32 -> 32msb (SMMUL, SMMLA, SMMLS) */
8230 tmp64
= gen_muls_i64_i32(tmp
, tmp2
);
8232 tmp
= load_reg(s
, rs
);
8233 if (insn
& (1 << 20)) {
8234 tmp64
= gen_addq_msw(tmp64
, tmp
);
8236 tmp64
= gen_subq_msw(tmp64
, tmp
);
8239 if (insn
& (1 << 4)) {
8240 tcg_gen_addi_i64(tmp64
, tmp64
, 0x80000000u
);
8242 tcg_gen_shri_i64(tmp64
, tmp64
, 32);
8243 tmp
= tcg_temp_new_i32();
8244 tcg_gen_trunc_i64_i32(tmp
, tmp64
);
8245 tcg_temp_free_i64(tmp64
);
8247 case 7: /* Unsigned sum of absolute differences. */
8248 gen_helper_usad8(tmp
, tmp
, tmp2
);
8249 tcg_temp_free_i32(tmp2
);
8251 tmp2
= load_reg(s
, rs
);
8252 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8253 tcg_temp_free_i32(tmp2
);
8257 store_reg(s
, rd
, tmp
);
8259 case 6: case 7: /* 64-bit multiply, Divide. */
8260 op
= ((insn
>> 4) & 0xf) | ((insn
>> 16) & 0x70);
8261 tmp
= load_reg(s
, rn
);
8262 tmp2
= load_reg(s
, rm
);
8263 if ((op
& 0x50) == 0x10) {
8265 if (!arm_feature(env
, ARM_FEATURE_DIV
))
8268 gen_helper_udiv(tmp
, tmp
, tmp2
);
8270 gen_helper_sdiv(tmp
, tmp
, tmp2
);
8271 tcg_temp_free_i32(tmp2
);
8272 store_reg(s
, rd
, tmp
);
8273 } else if ((op
& 0xe) == 0xc) {
8274 /* Dual multiply accumulate long. */
8276 gen_swap_half(tmp2
);
8277 gen_smul_dual(tmp
, tmp2
);
8279 tcg_gen_sub_i32(tmp
, tmp
, tmp2
);
8281 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8283 tcg_temp_free_i32(tmp2
);
8285 tmp64
= tcg_temp_new_i64();
8286 tcg_gen_ext_i32_i64(tmp64
, tmp
);
8287 tcg_temp_free_i32(tmp
);
8288 gen_addq(s
, tmp64
, rs
, rd
);
8289 gen_storeq_reg(s
, rs
, rd
, tmp64
);
8290 tcg_temp_free_i64(tmp64
);
8293 /* Unsigned 64-bit multiply */
8294 tmp64
= gen_mulu_i64_i32(tmp
, tmp2
);
8298 gen_mulxy(tmp
, tmp2
, op
& 2, op
& 1);
8299 tcg_temp_free_i32(tmp2
);
8300 tmp64
= tcg_temp_new_i64();
8301 tcg_gen_ext_i32_i64(tmp64
, tmp
);
8302 tcg_temp_free_i32(tmp
);
8304 /* Signed 64-bit multiply */
8305 tmp64
= gen_muls_i64_i32(tmp
, tmp2
);
8310 gen_addq_lo(s
, tmp64
, rs
);
8311 gen_addq_lo(s
, tmp64
, rd
);
8312 } else if (op
& 0x40) {
8313 /* 64-bit accumulate. */
8314 gen_addq(s
, tmp64
, rs
, rd
);
8316 gen_storeq_reg(s
, rs
, rd
, tmp64
);
8317 tcg_temp_free_i64(tmp64
);
8322 case 6: case 7: case 14: case 15:
8324 if (((insn
>> 24) & 3) == 3) {
8325 /* Translate into the equivalent ARM encoding. */
8326 insn
= (insn
& 0xe2ffffff) | ((insn
& (1 << 28)) >> 4) | (1 << 28);
8327 if (disas_neon_data_insn(env
, s
, insn
))
8330 if (insn
& (1 << 28))
8332 if (disas_coproc_insn (env
, s
, insn
))
8336 case 8: case 9: case 10: case 11:
8337 if (insn
& (1 << 15)) {
8338 /* Branches, misc control. */
8339 if (insn
& 0x5000) {
8340 /* Unconditional branch. */
8341 /* signextend(hw1[10:0]) -> offset[:12]. */
8342 offset
= ((int32_t)insn
<< 5) >> 9 & ~(int32_t)0xfff;
8343 /* hw1[10:0] -> offset[11:1]. */
8344 offset
|= (insn
& 0x7ff) << 1;
8345 /* (~hw2[13, 11] ^ offset[24]) -> offset[23,22]
8346 offset[24:22] already have the same value because of the
8347 sign extension above. */
8348 offset
^= ((~insn
) & (1 << 13)) << 10;
8349 offset
^= ((~insn
) & (1 << 11)) << 11;
8351 if (insn
& (1 << 14)) {
8352 /* Branch and link. */
8353 tcg_gen_movi_i32(cpu_R
[14], s
->pc
| 1);
8357 if (insn
& (1 << 12)) {
8362 offset
&= ~(uint32_t)2;
8363 /* thumb2 bx, no need to check */
8364 gen_bx_im(s
, offset
);
8366 } else if (((insn
>> 23) & 7) == 7) {
8368 if (insn
& (1 << 13))
8371 if (insn
& (1 << 26)) {
8372 /* Secure monitor call (v6Z) */
8373 goto illegal_op
; /* not implemented. */
8375 op
= (insn
>> 20) & 7;
8377 case 0: /* msr cpsr. */
8379 tmp
= load_reg(s
, rn
);
8380 addr
= tcg_const_i32(insn
& 0xff);
8381 gen_helper_v7m_msr(cpu_env
, addr
, tmp
);
8382 tcg_temp_free_i32(addr
);
8383 tcg_temp_free_i32(tmp
);
8388 case 1: /* msr spsr. */
8391 tmp
= load_reg(s
, rn
);
8393 msr_mask(env
, s
, (insn
>> 8) & 0xf, op
== 1),
8397 case 2: /* cps, nop-hint. */
8398 if (((insn
>> 8) & 7) == 0) {
8399 gen_nop_hint(s
, insn
& 0xff);
8401 /* Implemented as NOP in user mode. */
8406 if (insn
& (1 << 10)) {
8407 if (insn
& (1 << 7))
8409 if (insn
& (1 << 6))
8411 if (insn
& (1 << 5))
8413 if (insn
& (1 << 9))
8414 imm
= CPSR_A
| CPSR_I
| CPSR_F
;
8416 if (insn
& (1 << 8)) {
8418 imm
|= (insn
& 0x1f);
8421 gen_set_psr_im(s
, offset
, 0, imm
);
8424 case 3: /* Special control operations. */
8426 op
= (insn
>> 4) & 0xf;
8434 /* These execute as NOPs. */
8441 /* Trivial implementation equivalent to bx. */
8442 tmp
= load_reg(s
, rn
);
8445 case 5: /* Exception return. */
8449 if (rn
!= 14 || rd
!= 15) {
8452 tmp
= load_reg(s
, rn
);
8453 tcg_gen_subi_i32(tmp
, tmp
, insn
& 0xff);
8454 gen_exception_return(s
, tmp
);
8456 case 6: /* mrs cpsr. */
8457 tmp
= tcg_temp_new_i32();
8459 addr
= tcg_const_i32(insn
& 0xff);
8460 gen_helper_v7m_mrs(tmp
, cpu_env
, addr
);
8461 tcg_temp_free_i32(addr
);
8463 gen_helper_cpsr_read(tmp
);
8465 store_reg(s
, rd
, tmp
);
8467 case 7: /* mrs spsr. */
8468 /* Not accessible in user mode. */
8469 if (IS_USER(s
) || IS_M(env
))
8471 tmp
= load_cpu_field(spsr
);
8472 store_reg(s
, rd
, tmp
);
8477 /* Conditional branch. */
8478 op
= (insn
>> 22) & 0xf;
8479 /* Generate a conditional jump to next instruction. */
8480 s
->condlabel
= gen_new_label();
8481 gen_test_cc(op
^ 1, s
->condlabel
);
8484 /* offset[11:1] = insn[10:0] */
8485 offset
= (insn
& 0x7ff) << 1;
8486 /* offset[17:12] = insn[21:16]. */
8487 offset
|= (insn
& 0x003f0000) >> 4;
8488 /* offset[31:20] = insn[26]. */
8489 offset
|= ((int32_t)((insn
<< 5) & 0x80000000)) >> 11;
8490 /* offset[18] = insn[13]. */
8491 offset
|= (insn
& (1 << 13)) << 5;
8492 /* offset[19] = insn[11]. */
8493 offset
|= (insn
& (1 << 11)) << 8;
8495 /* jump to the offset */
8496 gen_jmp(s
, s
->pc
+ offset
);
8499 /* Data processing immediate. */
8500 if (insn
& (1 << 25)) {
8501 if (insn
& (1 << 24)) {
8502 if (insn
& (1 << 20))
8504 /* Bitfield/Saturate. */
8505 op
= (insn
>> 21) & 7;
8507 shift
= ((insn
>> 6) & 3) | ((insn
>> 10) & 0x1c);
8509 tmp
= tcg_temp_new_i32();
8510 tcg_gen_movi_i32(tmp
, 0);
8512 tmp
= load_reg(s
, rn
);
8515 case 2: /* Signed bitfield extract. */
8517 if (shift
+ imm
> 32)
8520 gen_sbfx(tmp
, shift
, imm
);
8522 case 6: /* Unsigned bitfield extract. */
8524 if (shift
+ imm
> 32)
8527 gen_ubfx(tmp
, shift
, (1u << imm
) - 1);
8529 case 3: /* Bitfield insert/clear. */
8532 imm
= imm
+ 1 - shift
;
8534 tmp2
= load_reg(s
, rd
);
8535 gen_bfi(tmp
, tmp2
, tmp
, shift
, (1u << imm
) - 1);
8536 tcg_temp_free_i32(tmp2
);
8541 default: /* Saturate. */
8544 tcg_gen_sari_i32(tmp
, tmp
, shift
);
8546 tcg_gen_shli_i32(tmp
, tmp
, shift
);
8548 tmp2
= tcg_const_i32(imm
);
8551 if ((op
& 1) && shift
== 0)
8552 gen_helper_usat16(tmp
, tmp
, tmp2
);
8554 gen_helper_usat(tmp
, tmp
, tmp2
);
8557 if ((op
& 1) && shift
== 0)
8558 gen_helper_ssat16(tmp
, tmp
, tmp2
);
8560 gen_helper_ssat(tmp
, tmp
, tmp2
);
8562 tcg_temp_free_i32(tmp2
);
8565 store_reg(s
, rd
, tmp
);
8567 imm
= ((insn
& 0x04000000) >> 15)
8568 | ((insn
& 0x7000) >> 4) | (insn
& 0xff);
8569 if (insn
& (1 << 22)) {
8570 /* 16-bit immediate. */
8571 imm
|= (insn
>> 4) & 0xf000;
8572 if (insn
& (1 << 23)) {
8574 tmp
= load_reg(s
, rd
);
8575 tcg_gen_ext16u_i32(tmp
, tmp
);
8576 tcg_gen_ori_i32(tmp
, tmp
, imm
<< 16);
8579 tmp
= tcg_temp_new_i32();
8580 tcg_gen_movi_i32(tmp
, imm
);
8583 /* Add/sub 12-bit immediate. */
8585 offset
= s
->pc
& ~(uint32_t)3;
8586 if (insn
& (1 << 23))
8590 tmp
= tcg_temp_new_i32();
8591 tcg_gen_movi_i32(tmp
, offset
);
8593 tmp
= load_reg(s
, rn
);
8594 if (insn
& (1 << 23))
8595 tcg_gen_subi_i32(tmp
, tmp
, imm
);
8597 tcg_gen_addi_i32(tmp
, tmp
, imm
);
8600 store_reg(s
, rd
, tmp
);
8603 int shifter_out
= 0;
8604 /* modified 12-bit immediate. */
8605 shift
= ((insn
& 0x04000000) >> 23) | ((insn
& 0x7000) >> 12);
8606 imm
= (insn
& 0xff);
8609 /* Nothing to do. */
8611 case 1: /* 00XY00XY */
8614 case 2: /* XY00XY00 */
8618 case 3: /* XYXYXYXY */
8622 default: /* Rotated constant. */
8623 shift
= (shift
<< 1) | (imm
>> 7);
8625 imm
= imm
<< (32 - shift
);
8629 tmp2
= tcg_temp_new_i32();
8630 tcg_gen_movi_i32(tmp2
, imm
);
8631 rn
= (insn
>> 16) & 0xf;
8633 tmp
= tcg_temp_new_i32();
8634 tcg_gen_movi_i32(tmp
, 0);
8636 tmp
= load_reg(s
, rn
);
8638 op
= (insn
>> 21) & 0xf;
8639 if (gen_thumb2_data_op(s
, op
, (insn
& (1 << 20)) != 0,
8640 shifter_out
, tmp
, tmp2
))
8642 tcg_temp_free_i32(tmp2
);
8643 rd
= (insn
>> 8) & 0xf;
8645 store_reg(s
, rd
, tmp
);
8647 tcg_temp_free_i32(tmp
);
8652 case 12: /* Load/store single data item. */
8657 if ((insn
& 0x01100000) == 0x01000000) {
8658 if (disas_neon_ls_insn(env
, s
, insn
))
8662 op
= ((insn
>> 21) & 3) | ((insn
>> 22) & 4);
8664 if (!(insn
& (1 << 20))) {
8668 /* Byte or halfword load space with dest == r15 : memory hints.
8669 * Catch them early so we don't emit pointless addressing code.
8670 * This space is a mix of:
8671 * PLD/PLDW/PLI, which we implement as NOPs (note that unlike
8672 * the ARM encodings, PLDW space doesn't UNDEF for non-v7MP
8674 * unallocated hints, which must be treated as NOPs
8675 * UNPREDICTABLE space, which we NOP or UNDEF depending on
8676 * which is easiest for the decoding logic
8677 * Some space which must UNDEF
8679 int op1
= (insn
>> 23) & 3;
8680 int op2
= (insn
>> 6) & 0x3f;
8685 /* UNPREDICTABLE or unallocated hint */
8689 return 0; /* PLD* or unallocated hint */
8691 if ((op2
== 0) || ((op2
& 0x3c) == 0x30)) {
8692 return 0; /* PLD* or unallocated hint */
8694 /* UNDEF space, or an UNPREDICTABLE */
8700 addr
= tcg_temp_new_i32();
8702 /* s->pc has already been incremented by 4. */
8703 imm
= s
->pc
& 0xfffffffc;
8704 if (insn
& (1 << 23))
8705 imm
+= insn
& 0xfff;
8707 imm
-= insn
& 0xfff;
8708 tcg_gen_movi_i32(addr
, imm
);
8710 addr
= load_reg(s
, rn
);
8711 if (insn
& (1 << 23)) {
8712 /* Positive offset. */
8714 tcg_gen_addi_i32(addr
, addr
, imm
);
8717 switch ((insn
>> 8) & 0xf) {
8718 case 0x0: /* Shifted Register. */
8719 shift
= (insn
>> 4) & 0xf;
8721 tcg_temp_free_i32(addr
);
8724 tmp
= load_reg(s
, rm
);
8726 tcg_gen_shli_i32(tmp
, tmp
, shift
);
8727 tcg_gen_add_i32(addr
, addr
, tmp
);
8728 tcg_temp_free_i32(tmp
);
8730 case 0xc: /* Negative offset. */
8731 tcg_gen_addi_i32(addr
, addr
, -imm
);
8733 case 0xe: /* User privilege. */
8734 tcg_gen_addi_i32(addr
, addr
, imm
);
8737 case 0x9: /* Post-decrement. */
8740 case 0xb: /* Post-increment. */
8744 case 0xd: /* Pre-decrement. */
8747 case 0xf: /* Pre-increment. */
8748 tcg_gen_addi_i32(addr
, addr
, imm
);
8752 tcg_temp_free_i32(addr
);
8757 if (insn
& (1 << 20)) {
8760 case 0: tmp
= gen_ld8u(addr
, user
); break;
8761 case 4: tmp
= gen_ld8s(addr
, user
); break;
8762 case 1: tmp
= gen_ld16u(addr
, user
); break;
8763 case 5: tmp
= gen_ld16s(addr
, user
); break;
8764 case 2: tmp
= gen_ld32(addr
, user
); break;
8766 tcg_temp_free_i32(addr
);
8772 store_reg(s
, rs
, tmp
);
8776 tmp
= load_reg(s
, rs
);
8778 case 0: gen_st8(tmp
, addr
, user
); break;
8779 case 1: gen_st16(tmp
, addr
, user
); break;
8780 case 2: gen_st32(tmp
, addr
, user
); break;
8782 tcg_temp_free_i32(addr
);
8787 tcg_gen_addi_i32(addr
, addr
, imm
);
8789 store_reg(s
, rn
, addr
);
8791 tcg_temp_free_i32(addr
);
8803 static void disas_thumb_insn(CPUState
*env
, DisasContext
*s
)
8805 uint32_t val
, insn
, op
, rm
, rn
, rd
, shift
, cond
;
8812 if (s
->condexec_mask
) {
8813 cond
= s
->condexec_cond
;
8814 if (cond
!= 0x0e) { /* Skip conditional when condition is AL. */
8815 s
->condlabel
= gen_new_label();
8816 gen_test_cc(cond
^ 1, s
->condlabel
);
8821 insn
= lduw_code(s
->pc
);
8824 switch (insn
>> 12) {
8828 op
= (insn
>> 11) & 3;
8831 rn
= (insn
>> 3) & 7;
8832 tmp
= load_reg(s
, rn
);
8833 if (insn
& (1 << 10)) {
8835 tmp2
= tcg_temp_new_i32();
8836 tcg_gen_movi_i32(tmp2
, (insn
>> 6) & 7);
8839 rm
= (insn
>> 6) & 7;
8840 tmp2
= load_reg(s
, rm
);
8842 if (insn
& (1 << 9)) {
8843 if (s
->condexec_mask
)
8844 tcg_gen_sub_i32(tmp
, tmp
, tmp2
);
8846 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
8848 if (s
->condexec_mask
)
8849 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8851 gen_helper_add_cc(tmp
, tmp
, tmp2
);
8853 tcg_temp_free_i32(tmp2
);
8854 store_reg(s
, rd
, tmp
);
8856 /* shift immediate */
8857 rm
= (insn
>> 3) & 7;
8858 shift
= (insn
>> 6) & 0x1f;
8859 tmp
= load_reg(s
, rm
);
8860 gen_arm_shift_im(tmp
, op
, shift
, s
->condexec_mask
== 0);
8861 if (!s
->condexec_mask
)
8863 store_reg(s
, rd
, tmp
);
8867 /* arithmetic large immediate */
8868 op
= (insn
>> 11) & 3;
8869 rd
= (insn
>> 8) & 0x7;
8870 if (op
== 0) { /* mov */
8871 tmp
= tcg_temp_new_i32();
8872 tcg_gen_movi_i32(tmp
, insn
& 0xff);
8873 if (!s
->condexec_mask
)
8875 store_reg(s
, rd
, tmp
);
8877 tmp
= load_reg(s
, rd
);
8878 tmp2
= tcg_temp_new_i32();
8879 tcg_gen_movi_i32(tmp2
, insn
& 0xff);
8882 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
8883 tcg_temp_free_i32(tmp
);
8884 tcg_temp_free_i32(tmp2
);
8887 if (s
->condexec_mask
)
8888 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8890 gen_helper_add_cc(tmp
, tmp
, tmp2
);
8891 tcg_temp_free_i32(tmp2
);
8892 store_reg(s
, rd
, tmp
);
8895 if (s
->condexec_mask
)
8896 tcg_gen_sub_i32(tmp
, tmp
, tmp2
);
8898 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
8899 tcg_temp_free_i32(tmp2
);
8900 store_reg(s
, rd
, tmp
);
8906 if (insn
& (1 << 11)) {
8907 rd
= (insn
>> 8) & 7;
8908 /* load pc-relative. Bit 1 of PC is ignored. */
8909 val
= s
->pc
+ 2 + ((insn
& 0xff) * 4);
8910 val
&= ~(uint32_t)2;
8911 addr
= tcg_temp_new_i32();
8912 tcg_gen_movi_i32(addr
, val
);
8913 tmp
= gen_ld32(addr
, IS_USER(s
));
8914 tcg_temp_free_i32(addr
);
8915 store_reg(s
, rd
, tmp
);
8918 if (insn
& (1 << 10)) {
8919 /* data processing extended or blx */
8920 rd
= (insn
& 7) | ((insn
>> 4) & 8);
8921 rm
= (insn
>> 3) & 0xf;
8922 op
= (insn
>> 8) & 3;
8925 tmp
= load_reg(s
, rd
);
8926 tmp2
= load_reg(s
, rm
);
8927 tcg_gen_add_i32(tmp
, tmp
, tmp2
);
8928 tcg_temp_free_i32(tmp2
);
8929 store_reg(s
, rd
, tmp
);
8932 tmp
= load_reg(s
, rd
);
8933 tmp2
= load_reg(s
, rm
);
8934 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
8935 tcg_temp_free_i32(tmp2
);
8936 tcg_temp_free_i32(tmp
);
8938 case 2: /* mov/cpy */
8939 tmp
= load_reg(s
, rm
);
8940 store_reg(s
, rd
, tmp
);
8942 case 3:/* branch [and link] exchange thumb register */
8943 tmp
= load_reg(s
, rm
);
8944 if (insn
& (1 << 7)) {
8946 val
= (uint32_t)s
->pc
| 1;
8947 tmp2
= tcg_temp_new_i32();
8948 tcg_gen_movi_i32(tmp2
, val
);
8949 store_reg(s
, 14, tmp2
);
8951 /* already thumb, no need to check */
8958 /* data processing register */
8960 rm
= (insn
>> 3) & 7;
8961 op
= (insn
>> 6) & 0xf;
8962 if (op
== 2 || op
== 3 || op
== 4 || op
== 7) {
8963 /* the shift/rotate ops want the operands backwards */
8972 if (op
== 9) { /* neg */
8973 tmp
= tcg_temp_new_i32();
8974 tcg_gen_movi_i32(tmp
, 0);
8975 } else if (op
!= 0xf) { /* mvn doesn't read its first operand */
8976 tmp
= load_reg(s
, rd
);
8981 tmp2
= load_reg(s
, rm
);
8984 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
8985 if (!s
->condexec_mask
)
8989 tcg_gen_xor_i32(tmp
, tmp
, tmp2
);
8990 if (!s
->condexec_mask
)
8994 if (s
->condexec_mask
) {
8995 gen_helper_shl(tmp2
, tmp2
, tmp
);
8997 gen_helper_shl_cc(tmp2
, tmp2
, tmp
);
9002 if (s
->condexec_mask
) {
9003 gen_helper_shr(tmp2
, tmp2
, tmp
);
9005 gen_helper_shr_cc(tmp2
, tmp2
, tmp
);
9010 if (s
->condexec_mask
) {
9011 gen_helper_sar(tmp2
, tmp2
, tmp
);
9013 gen_helper_sar_cc(tmp2
, tmp2
, tmp
);
9018 if (s
->condexec_mask
)
9021 gen_helper_adc_cc(tmp
, tmp
, tmp2
);
9024 if (s
->condexec_mask
)
9025 gen_sub_carry(tmp
, tmp
, tmp2
);
9027 gen_helper_sbc_cc(tmp
, tmp
, tmp2
);
9030 if (s
->condexec_mask
) {
9031 tcg_gen_andi_i32(tmp
, tmp
, 0x1f);
9032 tcg_gen_rotr_i32(tmp2
, tmp2
, tmp
);
9034 gen_helper_ror_cc(tmp2
, tmp2
, tmp
);
9039 tcg_gen_and_i32(tmp
, tmp
, tmp2
);
9044 if (s
->condexec_mask
)
9045 tcg_gen_neg_i32(tmp
, tmp2
);
9047 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
9050 gen_helper_sub_cc(tmp
, tmp
, tmp2
);
9054 gen_helper_add_cc(tmp
, tmp
, tmp2
);
9058 tcg_gen_or_i32(tmp
, tmp
, tmp2
);
9059 if (!s
->condexec_mask
)
9063 tcg_gen_mul_i32(tmp
, tmp
, tmp2
);
9064 if (!s
->condexec_mask
)
9068 tcg_gen_andc_i32(tmp
, tmp
, tmp2
);
9069 if (!s
->condexec_mask
)
9073 tcg_gen_not_i32(tmp2
, tmp2
);
9074 if (!s
->condexec_mask
)
9082 store_reg(s
, rm
, tmp2
);
9084 tcg_temp_free_i32(tmp
);
9086 store_reg(s
, rd
, tmp
);
9087 tcg_temp_free_i32(tmp2
);
9090 tcg_temp_free_i32(tmp
);
9091 tcg_temp_free_i32(tmp2
);
9096 /* load/store register offset. */
9098 rn
= (insn
>> 3) & 7;
9099 rm
= (insn
>> 6) & 7;
9100 op
= (insn
>> 9) & 7;
9101 addr
= load_reg(s
, rn
);
9102 tmp
= load_reg(s
, rm
);
9103 tcg_gen_add_i32(addr
, addr
, tmp
);
9104 tcg_temp_free_i32(tmp
);
9106 if (op
< 3) /* store */
9107 tmp
= load_reg(s
, rd
);
9111 gen_st32(tmp
, addr
, IS_USER(s
));
9114 gen_st16(tmp
, addr
, IS_USER(s
));
9117 gen_st8(tmp
, addr
, IS_USER(s
));
9120 tmp
= gen_ld8s(addr
, IS_USER(s
));
9123 tmp
= gen_ld32(addr
, IS_USER(s
));
9126 tmp
= gen_ld16u(addr
, IS_USER(s
));
9129 tmp
= gen_ld8u(addr
, IS_USER(s
));
9132 tmp
= gen_ld16s(addr
, IS_USER(s
));
9135 if (op
>= 3) /* load */
9136 store_reg(s
, rd
, tmp
);
9137 tcg_temp_free_i32(addr
);
9141 /* load/store word immediate offset */
9143 rn
= (insn
>> 3) & 7;
9144 addr
= load_reg(s
, rn
);
9145 val
= (insn
>> 4) & 0x7c;
9146 tcg_gen_addi_i32(addr
, addr
, val
);
9148 if (insn
& (1 << 11)) {
9150 tmp
= gen_ld32(addr
, IS_USER(s
));
9151 store_reg(s
, rd
, tmp
);
9154 tmp
= load_reg(s
, rd
);
9155 gen_st32(tmp
, addr
, IS_USER(s
));
9157 tcg_temp_free_i32(addr
);
9161 /* load/store byte immediate offset */
9163 rn
= (insn
>> 3) & 7;
9164 addr
= load_reg(s
, rn
);
9165 val
= (insn
>> 6) & 0x1f;
9166 tcg_gen_addi_i32(addr
, addr
, val
);
9168 if (insn
& (1 << 11)) {
9170 tmp
= gen_ld8u(addr
, IS_USER(s
));
9171 store_reg(s
, rd
, tmp
);
9174 tmp
= load_reg(s
, rd
);
9175 gen_st8(tmp
, addr
, IS_USER(s
));
9177 tcg_temp_free_i32(addr
);
9181 /* load/store halfword immediate offset */
9183 rn
= (insn
>> 3) & 7;
9184 addr
= load_reg(s
, rn
);
9185 val
= (insn
>> 5) & 0x3e;
9186 tcg_gen_addi_i32(addr
, addr
, val
);
9188 if (insn
& (1 << 11)) {
9190 tmp
= gen_ld16u(addr
, IS_USER(s
));
9191 store_reg(s
, rd
, tmp
);
9194 tmp
= load_reg(s
, rd
);
9195 gen_st16(tmp
, addr
, IS_USER(s
));
9197 tcg_temp_free_i32(addr
);
9201 /* load/store from stack */
9202 rd
= (insn
>> 8) & 7;
9203 addr
= load_reg(s
, 13);
9204 val
= (insn
& 0xff) * 4;
9205 tcg_gen_addi_i32(addr
, addr
, val
);
9207 if (insn
& (1 << 11)) {
9209 tmp
= gen_ld32(addr
, IS_USER(s
));
9210 store_reg(s
, rd
, tmp
);
9213 tmp
= load_reg(s
, rd
);
9214 gen_st32(tmp
, addr
, IS_USER(s
));
9216 tcg_temp_free_i32(addr
);
9220 /* add to high reg */
9221 rd
= (insn
>> 8) & 7;
9222 if (insn
& (1 << 11)) {
9224 tmp
= load_reg(s
, 13);
9226 /* PC. bit 1 is ignored. */
9227 tmp
= tcg_temp_new_i32();
9228 tcg_gen_movi_i32(tmp
, (s
->pc
+ 2) & ~(uint32_t)2);
9230 val
= (insn
& 0xff) * 4;
9231 tcg_gen_addi_i32(tmp
, tmp
, val
);
9232 store_reg(s
, rd
, tmp
);
9237 op
= (insn
>> 8) & 0xf;
9240 /* adjust stack pointer */
9241 tmp
= load_reg(s
, 13);
9242 val
= (insn
& 0x7f) * 4;
9243 if (insn
& (1 << 7))
9244 val
= -(int32_t)val
;
9245 tcg_gen_addi_i32(tmp
, tmp
, val
);
9246 store_reg(s
, 13, tmp
);
9249 case 2: /* sign/zero extend. */
9252 rm
= (insn
>> 3) & 7;
9253 tmp
= load_reg(s
, rm
);
9254 switch ((insn
>> 6) & 3) {
9255 case 0: gen_sxth(tmp
); break;
9256 case 1: gen_sxtb(tmp
); break;
9257 case 2: gen_uxth(tmp
); break;
9258 case 3: gen_uxtb(tmp
); break;
9260 store_reg(s
, rd
, tmp
);
9262 case 4: case 5: case 0xc: case 0xd:
9264 addr
= load_reg(s
, 13);
9265 if (insn
& (1 << 8))
9269 for (i
= 0; i
< 8; i
++) {
9270 if (insn
& (1 << i
))
9273 if ((insn
& (1 << 11)) == 0) {
9274 tcg_gen_addi_i32(addr
, addr
, -offset
);
9276 for (i
= 0; i
< 8; i
++) {
9277 if (insn
& (1 << i
)) {
9278 if (insn
& (1 << 11)) {
9280 tmp
= gen_ld32(addr
, IS_USER(s
));
9281 store_reg(s
, i
, tmp
);
9284 tmp
= load_reg(s
, i
);
9285 gen_st32(tmp
, addr
, IS_USER(s
));
9287 /* advance to the next address. */
9288 tcg_gen_addi_i32(addr
, addr
, 4);
9292 if (insn
& (1 << 8)) {
9293 if (insn
& (1 << 11)) {
9295 tmp
= gen_ld32(addr
, IS_USER(s
));
9296 /* don't set the pc until the rest of the instruction
9300 tmp
= load_reg(s
, 14);
9301 gen_st32(tmp
, addr
, IS_USER(s
));
9303 tcg_gen_addi_i32(addr
, addr
, 4);
9305 if ((insn
& (1 << 11)) == 0) {
9306 tcg_gen_addi_i32(addr
, addr
, -offset
);
9308 /* write back the new stack pointer */
9309 store_reg(s
, 13, addr
);
9310 /* set the new PC value */
9311 if ((insn
& 0x0900) == 0x0900) {
9312 store_reg_from_load(env
, s
, 15, tmp
);
9316 case 1: case 3: case 9: case 11: /* czb */
9318 tmp
= load_reg(s
, rm
);
9319 s
->condlabel
= gen_new_label();
9321 if (insn
& (1 << 11))
9322 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, s
->condlabel
);
9324 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, s
->condlabel
);
9325 tcg_temp_free_i32(tmp
);
9326 offset
= ((insn
& 0xf8) >> 2) | (insn
& 0x200) >> 3;
9327 val
= (uint32_t)s
->pc
+ 2;
9332 case 15: /* IT, nop-hint. */
9333 if ((insn
& 0xf) == 0) {
9334 gen_nop_hint(s
, (insn
>> 4) & 0xf);
9338 s
->condexec_cond
= (insn
>> 4) & 0xe;
9339 s
->condexec_mask
= insn
& 0x1f;
9340 /* No actual code generated for this insn, just setup state. */
9343 case 0xe: /* bkpt */
9345 gen_exception_insn(s
, 2, EXCP_BKPT
);
9350 rn
= (insn
>> 3) & 0x7;
9352 tmp
= load_reg(s
, rn
);
9353 switch ((insn
>> 6) & 3) {
9354 case 0: tcg_gen_bswap32_i32(tmp
, tmp
); break;
9355 case 1: gen_rev16(tmp
); break;
9356 case 3: gen_revsh(tmp
); break;
9357 default: goto illegal_op
;
9359 store_reg(s
, rd
, tmp
);
9367 tmp
= tcg_const_i32((insn
& (1 << 4)) != 0);
9370 addr
= tcg_const_i32(16);
9371 gen_helper_v7m_msr(cpu_env
, addr
, tmp
);
9372 tcg_temp_free_i32(addr
);
9376 addr
= tcg_const_i32(17);
9377 gen_helper_v7m_msr(cpu_env
, addr
, tmp
);
9378 tcg_temp_free_i32(addr
);
9380 tcg_temp_free_i32(tmp
);
9383 if (insn
& (1 << 4))
9384 shift
= CPSR_A
| CPSR_I
| CPSR_F
;
9387 gen_set_psr_im(s
, ((insn
& 7) << 6), 0, shift
);
9397 /* load/store multiple */
9398 rn
= (insn
>> 8) & 0x7;
9399 addr
= load_reg(s
, rn
);
9400 for (i
= 0; i
< 8; i
++) {
9401 if (insn
& (1 << i
)) {
9402 if (insn
& (1 << 11)) {
9404 tmp
= gen_ld32(addr
, IS_USER(s
));
9405 store_reg(s
, i
, tmp
);
9408 tmp
= load_reg(s
, i
);
9409 gen_st32(tmp
, addr
, IS_USER(s
));
9411 /* advance to the next address */
9412 tcg_gen_addi_i32(addr
, addr
, 4);
9415 /* Base register writeback. */
9416 if ((insn
& (1 << rn
)) == 0) {
9417 store_reg(s
, rn
, addr
);
9419 tcg_temp_free_i32(addr
);
9424 /* conditional branch or swi */
9425 cond
= (insn
>> 8) & 0xf;
9431 gen_set_pc_im(s
->pc
);
9432 s
->is_jmp
= DISAS_SWI
;
9435 /* generate a conditional jump to next instruction */
9436 s
->condlabel
= gen_new_label();
9437 gen_test_cc(cond
^ 1, s
->condlabel
);
9440 /* jump to the offset */
9441 val
= (uint32_t)s
->pc
+ 2;
9442 offset
= ((int32_t)insn
<< 24) >> 24;
9448 if (insn
& (1 << 11)) {
9449 if (disas_thumb2_insn(env
, s
, insn
))
9453 /* unconditional branch */
9454 val
= (uint32_t)s
->pc
;
9455 offset
= ((int32_t)insn
<< 21) >> 21;
9456 val
+= (offset
<< 1) + 2;
9461 if (disas_thumb2_insn(env
, s
, insn
))
9467 gen_exception_insn(s
, 4, EXCP_UDEF
);
9471 gen_exception_insn(s
, 2, EXCP_UDEF
);
9474 /* generate intermediate code in gen_opc_buf and gen_opparam_buf for
9475 basic block 'tb'. If search_pc is TRUE, also generate PC
9476 information for each intermediate instruction. */
9477 static inline void gen_intermediate_code_internal(CPUState
*env
,
9478 TranslationBlock
*tb
,
9481 DisasContext dc1
, *dc
= &dc1
;
9483 uint16_t *gen_opc_end
;
9485 target_ulong pc_start
;
9486 uint32_t next_page_start
;
9490 /* generate intermediate code */
9495 gen_opc_end
= gen_opc_buf
+ OPC_MAX_SIZE
;
9497 dc
->is_jmp
= DISAS_NEXT
;
9499 dc
->singlestep_enabled
= env
->singlestep_enabled
;
9501 dc
->thumb
= ARM_TBFLAG_THUMB(tb
->flags
);
9502 dc
->condexec_mask
= (ARM_TBFLAG_CONDEXEC(tb
->flags
) & 0xf) << 1;
9503 dc
->condexec_cond
= ARM_TBFLAG_CONDEXEC(tb
->flags
) >> 4;
9504 #if !defined(CONFIG_USER_ONLY)
9505 dc
->user
= (ARM_TBFLAG_PRIV(tb
->flags
) == 0);
9507 dc
->vfp_enabled
= ARM_TBFLAG_VFPEN(tb
->flags
);
9508 dc
->vec_len
= ARM_TBFLAG_VECLEN(tb
->flags
);
9509 dc
->vec_stride
= ARM_TBFLAG_VECSTRIDE(tb
->flags
);
9510 cpu_F0s
= tcg_temp_new_i32();
9511 cpu_F1s
= tcg_temp_new_i32();
9512 cpu_F0d
= tcg_temp_new_i64();
9513 cpu_F1d
= tcg_temp_new_i64();
9516 /* FIXME: cpu_M0 can probably be the same as cpu_V0. */
9517 cpu_M0
= tcg_temp_new_i64();
9518 next_page_start
= (pc_start
& TARGET_PAGE_MASK
) + TARGET_PAGE_SIZE
;
9521 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
9523 max_insns
= CF_COUNT_MASK
;
9527 tcg_clear_temp_count();
9529 /* A note on handling of the condexec (IT) bits:
9531 * We want to avoid the overhead of having to write the updated condexec
9532 * bits back to the CPUState for every instruction in an IT block. So:
9533 * (1) if the condexec bits are not already zero then we write
9534 * zero back into the CPUState now. This avoids complications trying
9535 * to do it at the end of the block. (For example if we don't do this
9536 * it's hard to identify whether we can safely skip writing condexec
9537 * at the end of the TB, which we definitely want to do for the case
9538 * where a TB doesn't do anything with the IT state at all.)
9539 * (2) if we are going to leave the TB then we call gen_set_condexec()
9540 * which will write the correct value into CPUState if zero is wrong.
9541 * This is done both for leaving the TB at the end, and for leaving
9542 * it because of an exception we know will happen, which is done in
9543 * gen_exception_insn(). The latter is necessary because we need to
9544 * leave the TB with the PC/IT state just prior to execution of the
9545 * instruction which caused the exception.
9546 * (3) if we leave the TB unexpectedly (eg a data abort on a load)
9547 * then the CPUState will be wrong and we need to reset it.
9548 * This is handled in the same way as restoration of the
9549 * PC in these situations: we will be called again with search_pc=1
9550 * and generate a mapping of the condexec bits for each PC in
9551 * gen_opc_condexec_bits[]. gen_pc_load[] then uses this to restore
9552 * the condexec bits.
9554 * Note that there are no instructions which can read the condexec
9555 * bits, and none which can write non-static values to them, so
9556 * we don't need to care about whether CPUState is correct in the
9560 /* Reset the conditional execution bits immediately. This avoids
9561 complications trying to do it at the end of the block. */
9562 if (dc
->condexec_mask
|| dc
->condexec_cond
)
9564 TCGv tmp
= tcg_temp_new_i32();
9565 tcg_gen_movi_i32(tmp
, 0);
9566 store_cpu_field(tmp
, condexec_bits
);
9569 #ifdef CONFIG_USER_ONLY
9570 /* Intercept jump to the magic kernel page. */
9571 if (dc
->pc
>= 0xffff0000) {
9572 /* We always get here via a jump, so know we are not in a
9573 conditional execution block. */
9574 gen_exception(EXCP_KERNEL_TRAP
);
9575 dc
->is_jmp
= DISAS_UPDATE
;
9579 if (dc
->pc
>= 0xfffffff0 && IS_M(env
)) {
9580 /* We always get here via a jump, so know we are not in a
9581 conditional execution block. */
9582 gen_exception(EXCP_EXCEPTION_EXIT
);
9583 dc
->is_jmp
= DISAS_UPDATE
;
9588 if (unlikely(!QTAILQ_EMPTY(&env
->breakpoints
))) {
9589 QTAILQ_FOREACH(bp
, &env
->breakpoints
, entry
) {
9590 if (bp
->pc
== dc
->pc
) {
9591 gen_exception_insn(dc
, 0, EXCP_DEBUG
);
9592 /* Advance PC so that clearing the breakpoint will
9593 invalidate this TB. */
9595 goto done_generating
;
9601 j
= gen_opc_ptr
- gen_opc_buf
;
9605 gen_opc_instr_start
[lj
++] = 0;
9607 gen_opc_pc
[lj
] = dc
->pc
;
9608 gen_opc_condexec_bits
[lj
] = (dc
->condexec_cond
<< 4) | (dc
->condexec_mask
>> 1);
9609 gen_opc_instr_start
[lj
] = 1;
9610 gen_opc_icount
[lj
] = num_insns
;
9613 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
9616 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
))) {
9617 tcg_gen_debug_insn_start(dc
->pc
);
9621 disas_thumb_insn(env
, dc
);
9622 if (dc
->condexec_mask
) {
9623 dc
->condexec_cond
= (dc
->condexec_cond
& 0xe)
9624 | ((dc
->condexec_mask
>> 4) & 1);
9625 dc
->condexec_mask
= (dc
->condexec_mask
<< 1) & 0x1f;
9626 if (dc
->condexec_mask
== 0) {
9627 dc
->condexec_cond
= 0;
9631 disas_arm_insn(env
, dc
);
9634 if (dc
->condjmp
&& !dc
->is_jmp
) {
9635 gen_set_label(dc
->condlabel
);
9639 if (tcg_check_temp_count()) {
9640 fprintf(stderr
, "TCG temporary leak before %08x\n", dc
->pc
);
9643 /* Translation stops when a conditional branch is encountered.
9644 * Otherwise the subsequent code could get translated several times.
9645 * Also stop translation when a page boundary is reached. This
9646 * ensures prefetch aborts occur at the right place. */
9648 } while (!dc
->is_jmp
&& gen_opc_ptr
< gen_opc_end
&&
9649 !env
->singlestep_enabled
&&
9651 dc
->pc
< next_page_start
&&
9652 num_insns
< max_insns
);
9654 if (tb
->cflags
& CF_LAST_IO
) {
9656 /* FIXME: This can theoretically happen with self-modifying
9658 cpu_abort(env
, "IO on conditional branch instruction");
9663 /* At this stage dc->condjmp will only be set when the skipped
9664 instruction was a conditional branch or trap, and the PC has
9665 already been written. */
9666 if (unlikely(env
->singlestep_enabled
)) {
9667 /* Make sure the pc is updated, and raise a debug exception. */
9669 gen_set_condexec(dc
);
9670 if (dc
->is_jmp
== DISAS_SWI
) {
9671 gen_exception(EXCP_SWI
);
9673 gen_exception(EXCP_DEBUG
);
9675 gen_set_label(dc
->condlabel
);
9677 if (dc
->condjmp
|| !dc
->is_jmp
) {
9678 gen_set_pc_im(dc
->pc
);
9681 gen_set_condexec(dc
);
9682 if (dc
->is_jmp
== DISAS_SWI
&& !dc
->condjmp
) {
9683 gen_exception(EXCP_SWI
);
9685 /* FIXME: Single stepping a WFI insn will not halt
9687 gen_exception(EXCP_DEBUG
);
9690 /* While branches must always occur at the end of an IT block,
9691 there are a few other things that can cause us to terminate
9692 the TB in the middel of an IT block:
9693 - Exception generating instructions (bkpt, swi, undefined).
9695 - Hardware watchpoints.
9696 Hardware breakpoints have already been handled and skip this code.
9698 gen_set_condexec(dc
);
9699 switch(dc
->is_jmp
) {
9701 gen_goto_tb(dc
, 1, dc
->pc
);
9706 /* indicate that the hash table must be used to find the next TB */
9710 /* nothing more to generate */
9716 gen_exception(EXCP_SWI
);
9720 gen_set_label(dc
->condlabel
);
9721 gen_set_condexec(dc
);
9722 gen_goto_tb(dc
, 1, dc
->pc
);
9728 gen_icount_end(tb
, num_insns
);
9729 *gen_opc_ptr
= INDEX_op_end
;
9732 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
9733 qemu_log("----------------\n");
9734 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
9735 log_target_disas(pc_start
, dc
->pc
- pc_start
, dc
->thumb
);
9740 j
= gen_opc_ptr
- gen_opc_buf
;
9743 gen_opc_instr_start
[lj
++] = 0;
9745 tb
->size
= dc
->pc
- pc_start
;
9746 tb
->icount
= num_insns
;
9750 void gen_intermediate_code(CPUState
*env
, TranslationBlock
*tb
)
9752 gen_intermediate_code_internal(env
, tb
, 0);
9755 void gen_intermediate_code_pc(CPUState
*env
, TranslationBlock
*tb
)
9757 gen_intermediate_code_internal(env
, tb
, 1);
9760 static const char *cpu_mode_names
[16] = {
9761 "usr", "fiq", "irq", "svc", "???", "???", "???", "abt",
9762 "???", "???", "???", "und", "???", "???", "???", "sys"
9765 void cpu_dump_state(CPUState
*env
, FILE *f
, fprintf_function cpu_fprintf
,
9775 /* ??? This assumes float64 and double have the same layout.
9776 Oh well, it's only debug dumps. */
9785 cpu_fprintf(f
, "R%02d=%08x", i
, env
->regs
[i
]);
9787 cpu_fprintf(f
, "\n");
9789 cpu_fprintf(f
, " ");
9791 psr
= cpsr_read(env
);
9792 cpu_fprintf(f
, "PSR=%08x %c%c%c%c %c %s%d\n",
9794 psr
& (1 << 31) ? 'N' : '-',
9795 psr
& (1 << 30) ? 'Z' : '-',
9796 psr
& (1 << 29) ? 'C' : '-',
9797 psr
& (1 << 28) ? 'V' : '-',
9798 psr
& CPSR_T
? 'T' : 'A',
9799 cpu_mode_names
[psr
& 0xf], (psr
& 0x10) ? 32 : 26);
9802 for (i
= 0; i
< 16; i
++) {
9803 d
.d
= env
->vfp
.regs
[i
];
9807 cpu_fprintf(f
, "s%02d=%08x(%8g) s%02d=%08x(%8g) d%02d=%08x%08x(%8g)\n",
9808 i
* 2, (int)s0
.i
, s0
.s
,
9809 i
* 2 + 1, (int)s1
.i
, s1
.s
,
9810 i
, (int)(uint32_t)d
.l
.upper
, (int)(uint32_t)d
.l
.lower
,
9813 cpu_fprintf(f
, "FPSCR: %08x\n", (int)env
->vfp
.xregs
[ARM_VFP_FPSCR
]);
9817 void gen_pc_load(CPUState
*env
, TranslationBlock
*tb
,
9818 unsigned long searched_pc
, int pc_pos
, void *puc
)
9820 env
->regs
[15] = gen_opc_pc
[pc_pos
];
9821 env
->condexec_bits
= gen_opc_condexec_bits
[pc_pos
];