4 * Copyright (c) 2013 Alexander Graf <agraf@suse.de>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
22 #include "exec/exec-all.h"
26 #include "translate.h"
27 #include "internals.h"
28 #include "qemu/host-utils.h"
30 #include "exec/semihost.h"
31 #include "exec/gen-icount.h"
33 #include "exec/helper-proto.h"
34 #include "exec/helper-gen.h"
37 #include "trace-tcg.h"
39 static TCGv_i64 cpu_X
[32];
40 static TCGv_i64 cpu_pc
;
42 /* Load/store exclusive handling */
43 static TCGv_i64 cpu_exclusive_high
;
44 static TCGv_i64
cpu_reg(DisasContext
*s
, int reg
);
46 static const char *regnames
[] = {
47 "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7",
48 "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15",
49 "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23",
50 "x24", "x25", "x26", "x27", "x28", "x29", "lr", "sp"
54 A64_SHIFT_TYPE_LSL
= 0,
55 A64_SHIFT_TYPE_LSR
= 1,
56 A64_SHIFT_TYPE_ASR
= 2,
57 A64_SHIFT_TYPE_ROR
= 3
60 /* Table based decoder typedefs - used when the relevant bits for decode
61 * are too awkwardly scattered across the instruction (eg SIMD).
63 typedef void AArch64DecodeFn(DisasContext
*s
, uint32_t insn
);
65 typedef struct AArch64DecodeTable
{
68 AArch64DecodeFn
*disas_fn
;
71 /* Function prototype for gen_ functions for calling Neon helpers */
72 typedef void NeonGenOneOpEnvFn(TCGv_i32
, TCGv_ptr
, TCGv_i32
);
73 typedef void NeonGenTwoOpFn(TCGv_i32
, TCGv_i32
, TCGv_i32
);
74 typedef void NeonGenTwoOpEnvFn(TCGv_i32
, TCGv_ptr
, TCGv_i32
, TCGv_i32
);
75 typedef void NeonGenTwo64OpFn(TCGv_i64
, TCGv_i64
, TCGv_i64
);
76 typedef void NeonGenTwo64OpEnvFn(TCGv_i64
, TCGv_ptr
, TCGv_i64
, TCGv_i64
);
77 typedef void NeonGenNarrowFn(TCGv_i32
, TCGv_i64
);
78 typedef void NeonGenNarrowEnvFn(TCGv_i32
, TCGv_ptr
, TCGv_i64
);
79 typedef void NeonGenWidenFn(TCGv_i64
, TCGv_i32
);
80 typedef void NeonGenTwoSingleOPFn(TCGv_i32
, TCGv_i32
, TCGv_i32
, TCGv_ptr
);
81 typedef void NeonGenTwoDoubleOPFn(TCGv_i64
, TCGv_i64
, TCGv_i64
, TCGv_ptr
);
82 typedef void NeonGenOneOpFn(TCGv_i64
, TCGv_i64
);
83 typedef void CryptoTwoOpEnvFn(TCGv_ptr
, TCGv_i32
, TCGv_i32
);
84 typedef void CryptoThreeOpEnvFn(TCGv_ptr
, TCGv_i32
, TCGv_i32
, TCGv_i32
);
86 /* initialize TCG globals. */
87 void a64_translate_init(void)
91 cpu_pc
= tcg_global_mem_new_i64(cpu_env
,
92 offsetof(CPUARMState
, pc
),
94 for (i
= 0; i
< 32; i
++) {
95 cpu_X
[i
] = tcg_global_mem_new_i64(cpu_env
,
96 offsetof(CPUARMState
, xregs
[i
]),
100 cpu_exclusive_high
= tcg_global_mem_new_i64(cpu_env
,
101 offsetof(CPUARMState
, exclusive_high
), "exclusive_high");
104 static inline ARMMMUIdx
get_a64_user_mem_index(DisasContext
*s
)
106 /* Return the mmu_idx to use for A64 "unprivileged load/store" insns:
107 * if EL1, access as if EL0; otherwise access at current EL
109 switch (s
->mmu_idx
) {
110 case ARMMMUIdx_S12NSE1
:
111 return ARMMMUIdx_S12NSE0
;
112 case ARMMMUIdx_S1SE1
:
113 return ARMMMUIdx_S1SE0
;
115 g_assert_not_reached();
121 void aarch64_cpu_dump_state(CPUState
*cs
, FILE *f
,
122 fprintf_function cpu_fprintf
, int flags
)
124 ARMCPU
*cpu
= ARM_CPU(cs
);
125 CPUARMState
*env
= &cpu
->env
;
126 uint32_t psr
= pstate_read(env
);
128 int el
= arm_current_el(env
);
129 const char *ns_status
;
131 cpu_fprintf(f
, "PC=%016"PRIx64
" SP=%016"PRIx64
"\n",
132 env
->pc
, env
->xregs
[31]);
133 for (i
= 0; i
< 31; i
++) {
134 cpu_fprintf(f
, "X%02d=%016"PRIx64
, i
, env
->xregs
[i
]);
136 cpu_fprintf(f
, "\n");
142 if (arm_feature(env
, ARM_FEATURE_EL3
) && el
!= 3) {
143 ns_status
= env
->cp15
.scr_el3
& SCR_NS
? "NS " : "S ";
148 cpu_fprintf(f
, "\nPSTATE=%08x %c%c%c%c %sEL%d%c\n",
150 psr
& PSTATE_N
? 'N' : '-',
151 psr
& PSTATE_Z
? 'Z' : '-',
152 psr
& PSTATE_C
? 'C' : '-',
153 psr
& PSTATE_V
? 'V' : '-',
156 psr
& PSTATE_SP
? 'h' : 't');
158 if (flags
& CPU_DUMP_FPU
) {
160 for (i
= 0; i
< numvfpregs
; i
+= 2) {
161 uint64_t vlo
= float64_val(env
->vfp
.regs
[i
* 2]);
162 uint64_t vhi
= float64_val(env
->vfp
.regs
[(i
* 2) + 1]);
163 cpu_fprintf(f
, "q%02d=%016" PRIx64
":%016" PRIx64
" ",
165 vlo
= float64_val(env
->vfp
.regs
[(i
+ 1) * 2]);
166 vhi
= float64_val(env
->vfp
.regs
[((i
+ 1) * 2) + 1]);
167 cpu_fprintf(f
, "q%02d=%016" PRIx64
":%016" PRIx64
"\n",
170 cpu_fprintf(f
, "FPCR: %08x FPSR: %08x\n",
171 vfp_get_fpcr(env
), vfp_get_fpsr(env
));
175 void gen_a64_set_pc_im(uint64_t val
)
177 tcg_gen_movi_i64(cpu_pc
, val
);
180 /* Load the PC from a generic TCG variable.
182 * If address tagging is enabled via the TCR TBI bits, then loading
183 * an address into the PC will clear out any tag in the it:
184 * + for EL2 and EL3 there is only one TBI bit, and if it is set
185 * then the address is zero-extended, clearing bits [63:56]
186 * + for EL0 and EL1, TBI0 controls addresses with bit 55 == 0
187 * and TBI1 controls addressses with bit 55 == 1.
188 * If the appropriate TBI bit is set for the address then
189 * the address is sign-extended from bit 55 into bits [63:56]
191 * We can avoid doing this for relative-branches, because the
192 * PC + offset can never overflow into the tag bits (assuming
193 * that virtual addresses are less than 56 bits wide, as they
194 * are currently), but we must handle it for branch-to-register.
196 static void gen_a64_set_pc(DisasContext
*s
, TCGv_i64 src
)
199 if (s
->current_el
<= 1) {
200 /* Test if NEITHER or BOTH TBI values are set. If so, no need to
201 * examine bit 55 of address, can just generate code.
202 * If mixed, then test via generated code
204 if (s
->tbi0
&& s
->tbi1
) {
205 TCGv_i64 tmp_reg
= tcg_temp_new_i64();
206 /* Both bits set, sign extension from bit 55 into [63:56] will
209 tcg_gen_shli_i64(tmp_reg
, src
, 8);
210 tcg_gen_sari_i64(cpu_pc
, tmp_reg
, 8);
211 tcg_temp_free_i64(tmp_reg
);
212 } else if (!s
->tbi0
&& !s
->tbi1
) {
213 /* Neither bit set, just load it as-is */
214 tcg_gen_mov_i64(cpu_pc
, src
);
216 TCGv_i64 tcg_tmpval
= tcg_temp_new_i64();
217 TCGv_i64 tcg_bit55
= tcg_temp_new_i64();
218 TCGv_i64 tcg_zero
= tcg_const_i64(0);
220 tcg_gen_andi_i64(tcg_bit55
, src
, (1ull << 55));
223 /* tbi0==1, tbi1==0, so 0-fill upper byte if bit 55 = 0 */
224 tcg_gen_andi_i64(tcg_tmpval
, src
,
225 0x00FFFFFFFFFFFFFFull
);
226 tcg_gen_movcond_i64(TCG_COND_EQ
, cpu_pc
, tcg_bit55
, tcg_zero
,
229 /* tbi0==0, tbi1==1, so 1-fill upper byte if bit 55 = 1 */
230 tcg_gen_ori_i64(tcg_tmpval
, src
,
231 0xFF00000000000000ull
);
232 tcg_gen_movcond_i64(TCG_COND_NE
, cpu_pc
, tcg_bit55
, tcg_zero
,
235 tcg_temp_free_i64(tcg_zero
);
236 tcg_temp_free_i64(tcg_bit55
);
237 tcg_temp_free_i64(tcg_tmpval
);
239 } else { /* EL > 1 */
241 /* Force tag byte to all zero */
242 tcg_gen_andi_i64(cpu_pc
, src
, 0x00FFFFFFFFFFFFFFull
);
244 /* Load unmodified address */
245 tcg_gen_mov_i64(cpu_pc
, src
);
250 typedef struct DisasCompare64
{
255 static void a64_test_cc(DisasCompare64
*c64
, int cc
)
259 arm_test_cc(&c32
, cc
);
261 /* Sign-extend the 32-bit value so that the GE/LT comparisons work
262 * properly. The NE/EQ comparisons are also fine with this choice. */
263 c64
->cond
= c32
.cond
;
264 c64
->value
= tcg_temp_new_i64();
265 tcg_gen_ext_i32_i64(c64
->value
, c32
.value
);
270 static void a64_free_cc(DisasCompare64
*c64
)
272 tcg_temp_free_i64(c64
->value
);
275 static void gen_exception_internal(int excp
)
277 TCGv_i32 tcg_excp
= tcg_const_i32(excp
);
279 assert(excp_is_internal(excp
));
280 gen_helper_exception_internal(cpu_env
, tcg_excp
);
281 tcg_temp_free_i32(tcg_excp
);
284 static void gen_exception(int excp
, uint32_t syndrome
, uint32_t target_el
)
286 TCGv_i32 tcg_excp
= tcg_const_i32(excp
);
287 TCGv_i32 tcg_syn
= tcg_const_i32(syndrome
);
288 TCGv_i32 tcg_el
= tcg_const_i32(target_el
);
290 gen_helper_exception_with_syndrome(cpu_env
, tcg_excp
,
292 tcg_temp_free_i32(tcg_el
);
293 tcg_temp_free_i32(tcg_syn
);
294 tcg_temp_free_i32(tcg_excp
);
297 static void gen_exception_internal_insn(DisasContext
*s
, int offset
, int excp
)
299 gen_a64_set_pc_im(s
->pc
- offset
);
300 gen_exception_internal(excp
);
301 s
->is_jmp
= DISAS_EXC
;
304 static void gen_exception_insn(DisasContext
*s
, int offset
, int excp
,
305 uint32_t syndrome
, uint32_t target_el
)
307 gen_a64_set_pc_im(s
->pc
- offset
);
308 gen_exception(excp
, syndrome
, target_el
);
309 s
->is_jmp
= DISAS_EXC
;
312 static void gen_ss_advance(DisasContext
*s
)
314 /* If the singlestep state is Active-not-pending, advance to
319 gen_helper_clear_pstate_ss(cpu_env
);
323 static void gen_step_complete_exception(DisasContext
*s
)
325 /* We just completed step of an insn. Move from Active-not-pending
326 * to Active-pending, and then also take the swstep exception.
327 * This corresponds to making the (IMPDEF) choice to prioritize
328 * swstep exceptions over asynchronous exceptions taken to an exception
329 * level where debug is disabled. This choice has the advantage that
330 * we do not need to maintain internal state corresponding to the
331 * ISV/EX syndrome bits between completion of the step and generation
332 * of the exception, and our syndrome information is always correct.
335 gen_exception(EXCP_UDEF
, syn_swstep(s
->ss_same_el
, 1, s
->is_ldex
),
336 default_exception_el(s
));
337 s
->is_jmp
= DISAS_EXC
;
340 static inline bool use_goto_tb(DisasContext
*s
, int n
, uint64_t dest
)
342 /* No direct tb linking with singlestep (either QEMU's or the ARM
343 * debug architecture kind) or deterministic io
345 if (s
->singlestep_enabled
|| s
->ss_active
|| (s
->tb
->cflags
& CF_LAST_IO
)) {
349 #ifndef CONFIG_USER_ONLY
350 /* Only link tbs from inside the same guest page */
351 if ((s
->tb
->pc
& TARGET_PAGE_MASK
) != (dest
& TARGET_PAGE_MASK
)) {
359 static inline void gen_goto_tb(DisasContext
*s
, int n
, uint64_t dest
)
361 TranslationBlock
*tb
;
364 if (use_goto_tb(s
, n
, dest
)) {
366 gen_a64_set_pc_im(dest
);
367 tcg_gen_exit_tb((intptr_t)tb
+ n
);
368 s
->is_jmp
= DISAS_TB_JUMP
;
370 gen_a64_set_pc_im(dest
);
372 gen_step_complete_exception(s
);
373 } else if (s
->singlestep_enabled
) {
374 gen_exception_internal(EXCP_DEBUG
);
377 s
->is_jmp
= DISAS_TB_JUMP
;
382 static void disas_set_insn_syndrome(DisasContext
*s
, uint32_t syn
)
384 /* We don't need to save all of the syndrome so we mask and shift
385 * out uneeded bits to help the sleb128 encoder do a better job.
387 syn
&= ARM_INSN_START_WORD2_MASK
;
388 syn
>>= ARM_INSN_START_WORD2_SHIFT
;
390 /* We check and clear insn_start_idx to catch multiple updates. */
391 assert(s
->insn_start_idx
!= 0);
392 tcg_set_insn_param(s
->insn_start_idx
, 2, syn
);
393 s
->insn_start_idx
= 0;
396 static void unallocated_encoding(DisasContext
*s
)
398 /* Unallocated and reserved encodings are uncategorized */
399 gen_exception_insn(s
, 4, EXCP_UDEF
, syn_uncategorized(),
400 default_exception_el(s
));
403 #define unsupported_encoding(s, insn) \
405 qemu_log_mask(LOG_UNIMP, \
406 "%s:%d: unsupported instruction encoding 0x%08x " \
407 "at pc=%016" PRIx64 "\n", \
408 __FILE__, __LINE__, insn, s->pc - 4); \
409 unallocated_encoding(s); \
412 static void init_tmp_a64_array(DisasContext
*s
)
414 #ifdef CONFIG_DEBUG_TCG
416 for (i
= 0; i
< ARRAY_SIZE(s
->tmp_a64
); i
++) {
417 TCGV_UNUSED_I64(s
->tmp_a64
[i
]);
420 s
->tmp_a64_count
= 0;
423 static void free_tmp_a64(DisasContext
*s
)
426 for (i
= 0; i
< s
->tmp_a64_count
; i
++) {
427 tcg_temp_free_i64(s
->tmp_a64
[i
]);
429 init_tmp_a64_array(s
);
432 static TCGv_i64
new_tmp_a64(DisasContext
*s
)
434 assert(s
->tmp_a64_count
< TMP_A64_MAX
);
435 return s
->tmp_a64
[s
->tmp_a64_count
++] = tcg_temp_new_i64();
438 static TCGv_i64
new_tmp_a64_zero(DisasContext
*s
)
440 TCGv_i64 t
= new_tmp_a64(s
);
441 tcg_gen_movi_i64(t
, 0);
446 * Register access functions
448 * These functions are used for directly accessing a register in where
449 * changes to the final register value are likely to be made. If you
450 * need to use a register for temporary calculation (e.g. index type
451 * operations) use the read_* form.
453 * B1.2.1 Register mappings
455 * In instruction register encoding 31 can refer to ZR (zero register) or
456 * the SP (stack pointer) depending on context. In QEMU's case we map SP
457 * to cpu_X[31] and ZR accesses to a temporary which can be discarded.
458 * This is the point of the _sp forms.
460 static TCGv_i64
cpu_reg(DisasContext
*s
, int reg
)
463 return new_tmp_a64_zero(s
);
469 /* register access for when 31 == SP */
470 static TCGv_i64
cpu_reg_sp(DisasContext
*s
, int reg
)
475 /* read a cpu register in 32bit/64bit mode. Returns a TCGv_i64
476 * representing the register contents. This TCGv is an auto-freed
477 * temporary so it need not be explicitly freed, and may be modified.
479 static TCGv_i64
read_cpu_reg(DisasContext
*s
, int reg
, int sf
)
481 TCGv_i64 v
= new_tmp_a64(s
);
484 tcg_gen_mov_i64(v
, cpu_X
[reg
]);
486 tcg_gen_ext32u_i64(v
, cpu_X
[reg
]);
489 tcg_gen_movi_i64(v
, 0);
494 static TCGv_i64
read_cpu_reg_sp(DisasContext
*s
, int reg
, int sf
)
496 TCGv_i64 v
= new_tmp_a64(s
);
498 tcg_gen_mov_i64(v
, cpu_X
[reg
]);
500 tcg_gen_ext32u_i64(v
, cpu_X
[reg
]);
505 /* We should have at some point before trying to access an FP register
506 * done the necessary access check, so assert that
507 * (a) we did the check and
508 * (b) we didn't then just plough ahead anyway if it failed.
509 * Print the instruction pattern in the abort message so we can figure
510 * out what we need to fix if a user encounters this problem in the wild.
512 static inline void assert_fp_access_checked(DisasContext
*s
)
514 #ifdef CONFIG_DEBUG_TCG
515 if (unlikely(!s
->fp_access_checked
|| s
->fp_excp_el
)) {
516 fprintf(stderr
, "target-arm: FP access check missing for "
517 "instruction 0x%08x\n", s
->insn
);
523 /* Return the offset into CPUARMState of an element of specified
524 * size, 'element' places in from the least significant end of
525 * the FP/vector register Qn.
527 static inline int vec_reg_offset(DisasContext
*s
, int regno
,
528 int element
, TCGMemOp size
)
530 int offs
= offsetof(CPUARMState
, vfp
.regs
[regno
* 2]);
531 #ifdef HOST_WORDS_BIGENDIAN
532 /* This is complicated slightly because vfp.regs[2n] is
533 * still the low half and vfp.regs[2n+1] the high half
534 * of the 128 bit vector, even on big endian systems.
535 * Calculate the offset assuming a fully bigendian 128 bits,
536 * then XOR to account for the order of the two 64 bit halves.
538 offs
+= (16 - ((element
+ 1) * (1 << size
)));
541 offs
+= element
* (1 << size
);
543 assert_fp_access_checked(s
);
547 /* Return the offset into CPUARMState of a slice (from
548 * the least significant end) of FP register Qn (ie
550 * (Note that this is not the same mapping as for A32; see cpu.h)
552 static inline int fp_reg_offset(DisasContext
*s
, int regno
, TCGMemOp size
)
554 int offs
= offsetof(CPUARMState
, vfp
.regs
[regno
* 2]);
555 #ifdef HOST_WORDS_BIGENDIAN
556 offs
+= (8 - (1 << size
));
558 assert_fp_access_checked(s
);
562 /* Offset of the high half of the 128 bit vector Qn */
563 static inline int fp_reg_hi_offset(DisasContext
*s
, int regno
)
565 assert_fp_access_checked(s
);
566 return offsetof(CPUARMState
, vfp
.regs
[regno
* 2 + 1]);
569 /* Convenience accessors for reading and writing single and double
570 * FP registers. Writing clears the upper parts of the associated
571 * 128 bit vector register, as required by the architecture.
572 * Note that unlike the GP register accessors, the values returned
573 * by the read functions must be manually freed.
575 static TCGv_i64
read_fp_dreg(DisasContext
*s
, int reg
)
577 TCGv_i64 v
= tcg_temp_new_i64();
579 tcg_gen_ld_i64(v
, cpu_env
, fp_reg_offset(s
, reg
, MO_64
));
583 static TCGv_i32
read_fp_sreg(DisasContext
*s
, int reg
)
585 TCGv_i32 v
= tcg_temp_new_i32();
587 tcg_gen_ld_i32(v
, cpu_env
, fp_reg_offset(s
, reg
, MO_32
));
591 static void write_fp_dreg(DisasContext
*s
, int reg
, TCGv_i64 v
)
593 TCGv_i64 tcg_zero
= tcg_const_i64(0);
595 tcg_gen_st_i64(v
, cpu_env
, fp_reg_offset(s
, reg
, MO_64
));
596 tcg_gen_st_i64(tcg_zero
, cpu_env
, fp_reg_hi_offset(s
, reg
));
597 tcg_temp_free_i64(tcg_zero
);
600 static void write_fp_sreg(DisasContext
*s
, int reg
, TCGv_i32 v
)
602 TCGv_i64 tmp
= tcg_temp_new_i64();
604 tcg_gen_extu_i32_i64(tmp
, v
);
605 write_fp_dreg(s
, reg
, tmp
);
606 tcg_temp_free_i64(tmp
);
609 static TCGv_ptr
get_fpstatus_ptr(void)
611 TCGv_ptr statusptr
= tcg_temp_new_ptr();
614 /* In A64 all instructions (both FP and Neon) use the FPCR;
615 * there is no equivalent of the A32 Neon "standard FPSCR value"
616 * and all operations use vfp.fp_status.
618 offset
= offsetof(CPUARMState
, vfp
.fp_status
);
619 tcg_gen_addi_ptr(statusptr
, cpu_env
, offset
);
623 /* Set ZF and NF based on a 64 bit result. This is alas fiddlier
624 * than the 32 bit equivalent.
626 static inline void gen_set_NZ64(TCGv_i64 result
)
628 tcg_gen_extr_i64_i32(cpu_ZF
, cpu_NF
, result
);
629 tcg_gen_or_i32(cpu_ZF
, cpu_ZF
, cpu_NF
);
632 /* Set NZCV as for a logical operation: NZ as per result, CV cleared. */
633 static inline void gen_logic_CC(int sf
, TCGv_i64 result
)
636 gen_set_NZ64(result
);
638 tcg_gen_extrl_i64_i32(cpu_ZF
, result
);
639 tcg_gen_mov_i32(cpu_NF
, cpu_ZF
);
641 tcg_gen_movi_i32(cpu_CF
, 0);
642 tcg_gen_movi_i32(cpu_VF
, 0);
645 /* dest = T0 + T1; compute C, N, V and Z flags */
646 static void gen_add_CC(int sf
, TCGv_i64 dest
, TCGv_i64 t0
, TCGv_i64 t1
)
649 TCGv_i64 result
, flag
, tmp
;
650 result
= tcg_temp_new_i64();
651 flag
= tcg_temp_new_i64();
652 tmp
= tcg_temp_new_i64();
654 tcg_gen_movi_i64(tmp
, 0);
655 tcg_gen_add2_i64(result
, flag
, t0
, tmp
, t1
, tmp
);
657 tcg_gen_extrl_i64_i32(cpu_CF
, flag
);
659 gen_set_NZ64(result
);
661 tcg_gen_xor_i64(flag
, result
, t0
);
662 tcg_gen_xor_i64(tmp
, t0
, t1
);
663 tcg_gen_andc_i64(flag
, flag
, tmp
);
664 tcg_temp_free_i64(tmp
);
665 tcg_gen_extrh_i64_i32(cpu_VF
, flag
);
667 tcg_gen_mov_i64(dest
, result
);
668 tcg_temp_free_i64(result
);
669 tcg_temp_free_i64(flag
);
671 /* 32 bit arithmetic */
672 TCGv_i32 t0_32
= tcg_temp_new_i32();
673 TCGv_i32 t1_32
= tcg_temp_new_i32();
674 TCGv_i32 tmp
= tcg_temp_new_i32();
676 tcg_gen_movi_i32(tmp
, 0);
677 tcg_gen_extrl_i64_i32(t0_32
, t0
);
678 tcg_gen_extrl_i64_i32(t1_32
, t1
);
679 tcg_gen_add2_i32(cpu_NF
, cpu_CF
, t0_32
, tmp
, t1_32
, tmp
);
680 tcg_gen_mov_i32(cpu_ZF
, cpu_NF
);
681 tcg_gen_xor_i32(cpu_VF
, cpu_NF
, t0_32
);
682 tcg_gen_xor_i32(tmp
, t0_32
, t1_32
);
683 tcg_gen_andc_i32(cpu_VF
, cpu_VF
, tmp
);
684 tcg_gen_extu_i32_i64(dest
, cpu_NF
);
686 tcg_temp_free_i32(tmp
);
687 tcg_temp_free_i32(t0_32
);
688 tcg_temp_free_i32(t1_32
);
692 /* dest = T0 - T1; compute C, N, V and Z flags */
693 static void gen_sub_CC(int sf
, TCGv_i64 dest
, TCGv_i64 t0
, TCGv_i64 t1
)
696 /* 64 bit arithmetic */
697 TCGv_i64 result
, flag
, tmp
;
699 result
= tcg_temp_new_i64();
700 flag
= tcg_temp_new_i64();
701 tcg_gen_sub_i64(result
, t0
, t1
);
703 gen_set_NZ64(result
);
705 tcg_gen_setcond_i64(TCG_COND_GEU
, flag
, t0
, t1
);
706 tcg_gen_extrl_i64_i32(cpu_CF
, flag
);
708 tcg_gen_xor_i64(flag
, result
, t0
);
709 tmp
= tcg_temp_new_i64();
710 tcg_gen_xor_i64(tmp
, t0
, t1
);
711 tcg_gen_and_i64(flag
, flag
, tmp
);
712 tcg_temp_free_i64(tmp
);
713 tcg_gen_extrh_i64_i32(cpu_VF
, flag
);
714 tcg_gen_mov_i64(dest
, result
);
715 tcg_temp_free_i64(flag
);
716 tcg_temp_free_i64(result
);
718 /* 32 bit arithmetic */
719 TCGv_i32 t0_32
= tcg_temp_new_i32();
720 TCGv_i32 t1_32
= tcg_temp_new_i32();
723 tcg_gen_extrl_i64_i32(t0_32
, t0
);
724 tcg_gen_extrl_i64_i32(t1_32
, t1
);
725 tcg_gen_sub_i32(cpu_NF
, t0_32
, t1_32
);
726 tcg_gen_mov_i32(cpu_ZF
, cpu_NF
);
727 tcg_gen_setcond_i32(TCG_COND_GEU
, cpu_CF
, t0_32
, t1_32
);
728 tcg_gen_xor_i32(cpu_VF
, cpu_NF
, t0_32
);
729 tmp
= tcg_temp_new_i32();
730 tcg_gen_xor_i32(tmp
, t0_32
, t1_32
);
731 tcg_temp_free_i32(t0_32
);
732 tcg_temp_free_i32(t1_32
);
733 tcg_gen_and_i32(cpu_VF
, cpu_VF
, tmp
);
734 tcg_temp_free_i32(tmp
);
735 tcg_gen_extu_i32_i64(dest
, cpu_NF
);
739 /* dest = T0 + T1 + CF; do not compute flags. */
740 static void gen_adc(int sf
, TCGv_i64 dest
, TCGv_i64 t0
, TCGv_i64 t1
)
742 TCGv_i64 flag
= tcg_temp_new_i64();
743 tcg_gen_extu_i32_i64(flag
, cpu_CF
);
744 tcg_gen_add_i64(dest
, t0
, t1
);
745 tcg_gen_add_i64(dest
, dest
, flag
);
746 tcg_temp_free_i64(flag
);
749 tcg_gen_ext32u_i64(dest
, dest
);
753 /* dest = T0 + T1 + CF; compute C, N, V and Z flags. */
754 static void gen_adc_CC(int sf
, TCGv_i64 dest
, TCGv_i64 t0
, TCGv_i64 t1
)
757 TCGv_i64 result
, cf_64
, vf_64
, tmp
;
758 result
= tcg_temp_new_i64();
759 cf_64
= tcg_temp_new_i64();
760 vf_64
= tcg_temp_new_i64();
761 tmp
= tcg_const_i64(0);
763 tcg_gen_extu_i32_i64(cf_64
, cpu_CF
);
764 tcg_gen_add2_i64(result
, cf_64
, t0
, tmp
, cf_64
, tmp
);
765 tcg_gen_add2_i64(result
, cf_64
, result
, cf_64
, t1
, tmp
);
766 tcg_gen_extrl_i64_i32(cpu_CF
, cf_64
);
767 gen_set_NZ64(result
);
769 tcg_gen_xor_i64(vf_64
, result
, t0
);
770 tcg_gen_xor_i64(tmp
, t0
, t1
);
771 tcg_gen_andc_i64(vf_64
, vf_64
, tmp
);
772 tcg_gen_extrh_i64_i32(cpu_VF
, vf_64
);
774 tcg_gen_mov_i64(dest
, result
);
776 tcg_temp_free_i64(tmp
);
777 tcg_temp_free_i64(vf_64
);
778 tcg_temp_free_i64(cf_64
);
779 tcg_temp_free_i64(result
);
781 TCGv_i32 t0_32
, t1_32
, tmp
;
782 t0_32
= tcg_temp_new_i32();
783 t1_32
= tcg_temp_new_i32();
784 tmp
= tcg_const_i32(0);
786 tcg_gen_extrl_i64_i32(t0_32
, t0
);
787 tcg_gen_extrl_i64_i32(t1_32
, t1
);
788 tcg_gen_add2_i32(cpu_NF
, cpu_CF
, t0_32
, tmp
, cpu_CF
, tmp
);
789 tcg_gen_add2_i32(cpu_NF
, cpu_CF
, cpu_NF
, cpu_CF
, t1_32
, tmp
);
791 tcg_gen_mov_i32(cpu_ZF
, cpu_NF
);
792 tcg_gen_xor_i32(cpu_VF
, cpu_NF
, t0_32
);
793 tcg_gen_xor_i32(tmp
, t0_32
, t1_32
);
794 tcg_gen_andc_i32(cpu_VF
, cpu_VF
, tmp
);
795 tcg_gen_extu_i32_i64(dest
, cpu_NF
);
797 tcg_temp_free_i32(tmp
);
798 tcg_temp_free_i32(t1_32
);
799 tcg_temp_free_i32(t0_32
);
804 * Load/Store generators
808 * Store from GPR register to memory.
810 static void do_gpr_st_memidx(DisasContext
*s
, TCGv_i64 source
,
811 TCGv_i64 tcg_addr
, int size
, int memidx
,
813 unsigned int iss_srt
,
814 bool iss_sf
, bool iss_ar
)
817 tcg_gen_qemu_st_i64(source
, tcg_addr
, memidx
, s
->be_data
+ size
);
822 syn
= syn_data_abort_with_iss(0,
828 0, 0, 0, 0, 0, false);
829 disas_set_insn_syndrome(s
, syn
);
833 static void do_gpr_st(DisasContext
*s
, TCGv_i64 source
,
834 TCGv_i64 tcg_addr
, int size
,
836 unsigned int iss_srt
,
837 bool iss_sf
, bool iss_ar
)
839 do_gpr_st_memidx(s
, source
, tcg_addr
, size
, get_mem_index(s
),
840 iss_valid
, iss_srt
, iss_sf
, iss_ar
);
844 * Load from memory to GPR register
846 static void do_gpr_ld_memidx(DisasContext
*s
,
847 TCGv_i64 dest
, TCGv_i64 tcg_addr
,
848 int size
, bool is_signed
,
849 bool extend
, int memidx
,
850 bool iss_valid
, unsigned int iss_srt
,
851 bool iss_sf
, bool iss_ar
)
853 TCGMemOp memop
= s
->be_data
+ size
;
861 tcg_gen_qemu_ld_i64(dest
, tcg_addr
, memidx
, memop
);
863 if (extend
&& is_signed
) {
865 tcg_gen_ext32u_i64(dest
, dest
);
871 syn
= syn_data_abort_with_iss(0,
877 0, 0, 0, 0, 0, false);
878 disas_set_insn_syndrome(s
, syn
);
882 static void do_gpr_ld(DisasContext
*s
,
883 TCGv_i64 dest
, TCGv_i64 tcg_addr
,
884 int size
, bool is_signed
, bool extend
,
885 bool iss_valid
, unsigned int iss_srt
,
886 bool iss_sf
, bool iss_ar
)
888 do_gpr_ld_memidx(s
, dest
, tcg_addr
, size
, is_signed
, extend
,
890 iss_valid
, iss_srt
, iss_sf
, iss_ar
);
894 * Store from FP register to memory
896 static void do_fp_st(DisasContext
*s
, int srcidx
, TCGv_i64 tcg_addr
, int size
)
898 /* This writes the bottom N bits of a 128 bit wide vector to memory */
899 TCGv_i64 tmp
= tcg_temp_new_i64();
900 tcg_gen_ld_i64(tmp
, cpu_env
, fp_reg_offset(s
, srcidx
, MO_64
));
902 tcg_gen_qemu_st_i64(tmp
, tcg_addr
, get_mem_index(s
),
905 bool be
= s
->be_data
== MO_BE
;
906 TCGv_i64 tcg_hiaddr
= tcg_temp_new_i64();
908 tcg_gen_addi_i64(tcg_hiaddr
, tcg_addr
, 8);
909 tcg_gen_qemu_st_i64(tmp
, be
? tcg_hiaddr
: tcg_addr
, get_mem_index(s
),
911 tcg_gen_ld_i64(tmp
, cpu_env
, fp_reg_hi_offset(s
, srcidx
));
912 tcg_gen_qemu_st_i64(tmp
, be
? tcg_addr
: tcg_hiaddr
, get_mem_index(s
),
914 tcg_temp_free_i64(tcg_hiaddr
);
917 tcg_temp_free_i64(tmp
);
921 * Load from memory to FP register
923 static void do_fp_ld(DisasContext
*s
, int destidx
, TCGv_i64 tcg_addr
, int size
)
925 /* This always zero-extends and writes to a full 128 bit wide vector */
926 TCGv_i64 tmplo
= tcg_temp_new_i64();
930 TCGMemOp memop
= s
->be_data
+ size
;
931 tmphi
= tcg_const_i64(0);
932 tcg_gen_qemu_ld_i64(tmplo
, tcg_addr
, get_mem_index(s
), memop
);
934 bool be
= s
->be_data
== MO_BE
;
937 tmphi
= tcg_temp_new_i64();
938 tcg_hiaddr
= tcg_temp_new_i64();
940 tcg_gen_addi_i64(tcg_hiaddr
, tcg_addr
, 8);
941 tcg_gen_qemu_ld_i64(tmplo
, be
? tcg_hiaddr
: tcg_addr
, get_mem_index(s
),
943 tcg_gen_qemu_ld_i64(tmphi
, be
? tcg_addr
: tcg_hiaddr
, get_mem_index(s
),
945 tcg_temp_free_i64(tcg_hiaddr
);
948 tcg_gen_st_i64(tmplo
, cpu_env
, fp_reg_offset(s
, destidx
, MO_64
));
949 tcg_gen_st_i64(tmphi
, cpu_env
, fp_reg_hi_offset(s
, destidx
));
951 tcg_temp_free_i64(tmplo
);
952 tcg_temp_free_i64(tmphi
);
956 * Vector load/store helpers.
958 * The principal difference between this and a FP load is that we don't
959 * zero extend as we are filling a partial chunk of the vector register.
960 * These functions don't support 128 bit loads/stores, which would be
961 * normal load/store operations.
963 * The _i32 versions are useful when operating on 32 bit quantities
964 * (eg for floating point single or using Neon helper functions).
967 /* Get value of an element within a vector register */
968 static void read_vec_element(DisasContext
*s
, TCGv_i64 tcg_dest
, int srcidx
,
969 int element
, TCGMemOp memop
)
971 int vect_off
= vec_reg_offset(s
, srcidx
, element
, memop
& MO_SIZE
);
974 tcg_gen_ld8u_i64(tcg_dest
, cpu_env
, vect_off
);
977 tcg_gen_ld16u_i64(tcg_dest
, cpu_env
, vect_off
);
980 tcg_gen_ld32u_i64(tcg_dest
, cpu_env
, vect_off
);
983 tcg_gen_ld8s_i64(tcg_dest
, cpu_env
, vect_off
);
986 tcg_gen_ld16s_i64(tcg_dest
, cpu_env
, vect_off
);
989 tcg_gen_ld32s_i64(tcg_dest
, cpu_env
, vect_off
);
993 tcg_gen_ld_i64(tcg_dest
, cpu_env
, vect_off
);
996 g_assert_not_reached();
1000 static void read_vec_element_i32(DisasContext
*s
, TCGv_i32 tcg_dest
, int srcidx
,
1001 int element
, TCGMemOp memop
)
1003 int vect_off
= vec_reg_offset(s
, srcidx
, element
, memop
& MO_SIZE
);
1006 tcg_gen_ld8u_i32(tcg_dest
, cpu_env
, vect_off
);
1009 tcg_gen_ld16u_i32(tcg_dest
, cpu_env
, vect_off
);
1012 tcg_gen_ld8s_i32(tcg_dest
, cpu_env
, vect_off
);
1015 tcg_gen_ld16s_i32(tcg_dest
, cpu_env
, vect_off
);
1019 tcg_gen_ld_i32(tcg_dest
, cpu_env
, vect_off
);
1022 g_assert_not_reached();
1026 /* Set value of an element within a vector register */
1027 static void write_vec_element(DisasContext
*s
, TCGv_i64 tcg_src
, int destidx
,
1028 int element
, TCGMemOp memop
)
1030 int vect_off
= vec_reg_offset(s
, destidx
, element
, memop
& MO_SIZE
);
1033 tcg_gen_st8_i64(tcg_src
, cpu_env
, vect_off
);
1036 tcg_gen_st16_i64(tcg_src
, cpu_env
, vect_off
);
1039 tcg_gen_st32_i64(tcg_src
, cpu_env
, vect_off
);
1042 tcg_gen_st_i64(tcg_src
, cpu_env
, vect_off
);
1045 g_assert_not_reached();
1049 static void write_vec_element_i32(DisasContext
*s
, TCGv_i32 tcg_src
,
1050 int destidx
, int element
, TCGMemOp memop
)
1052 int vect_off
= vec_reg_offset(s
, destidx
, element
, memop
& MO_SIZE
);
1055 tcg_gen_st8_i32(tcg_src
, cpu_env
, vect_off
);
1058 tcg_gen_st16_i32(tcg_src
, cpu_env
, vect_off
);
1061 tcg_gen_st_i32(tcg_src
, cpu_env
, vect_off
);
1064 g_assert_not_reached();
1068 /* Clear the high 64 bits of a 128 bit vector (in general non-quad
1069 * vector ops all need to do this).
1071 static void clear_vec_high(DisasContext
*s
, int rd
)
1073 TCGv_i64 tcg_zero
= tcg_const_i64(0);
1075 write_vec_element(s
, tcg_zero
, rd
, 1, MO_64
);
1076 tcg_temp_free_i64(tcg_zero
);
1079 /* Store from vector register to memory */
1080 static void do_vec_st(DisasContext
*s
, int srcidx
, int element
,
1081 TCGv_i64 tcg_addr
, int size
)
1083 TCGMemOp memop
= s
->be_data
+ size
;
1084 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
1086 read_vec_element(s
, tcg_tmp
, srcidx
, element
, size
);
1087 tcg_gen_qemu_st_i64(tcg_tmp
, tcg_addr
, get_mem_index(s
), memop
);
1089 tcg_temp_free_i64(tcg_tmp
);
1092 /* Load from memory to vector register */
1093 static void do_vec_ld(DisasContext
*s
, int destidx
, int element
,
1094 TCGv_i64 tcg_addr
, int size
)
1096 TCGMemOp memop
= s
->be_data
+ size
;
1097 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
1099 tcg_gen_qemu_ld_i64(tcg_tmp
, tcg_addr
, get_mem_index(s
), memop
);
1100 write_vec_element(s
, tcg_tmp
, destidx
, element
, size
);
1102 tcg_temp_free_i64(tcg_tmp
);
1105 /* Check that FP/Neon access is enabled. If it is, return
1106 * true. If not, emit code to generate an appropriate exception,
1107 * and return false; the caller should not emit any code for
1108 * the instruction. Note that this check must happen after all
1109 * unallocated-encoding checks (otherwise the syndrome information
1110 * for the resulting exception will be incorrect).
1112 static inline bool fp_access_check(DisasContext
*s
)
1114 assert(!s
->fp_access_checked
);
1115 s
->fp_access_checked
= true;
1117 if (!s
->fp_excp_el
) {
1121 gen_exception_insn(s
, 4, EXCP_UDEF
, syn_fp_access_trap(1, 0xe, false),
1127 * This utility function is for doing register extension with an
1128 * optional shift. You will likely want to pass a temporary for the
1129 * destination register. See DecodeRegExtend() in the ARM ARM.
1131 static void ext_and_shift_reg(TCGv_i64 tcg_out
, TCGv_i64 tcg_in
,
1132 int option
, unsigned int shift
)
1134 int extsize
= extract32(option
, 0, 2);
1135 bool is_signed
= extract32(option
, 2, 1);
1140 tcg_gen_ext8s_i64(tcg_out
, tcg_in
);
1143 tcg_gen_ext16s_i64(tcg_out
, tcg_in
);
1146 tcg_gen_ext32s_i64(tcg_out
, tcg_in
);
1149 tcg_gen_mov_i64(tcg_out
, tcg_in
);
1155 tcg_gen_ext8u_i64(tcg_out
, tcg_in
);
1158 tcg_gen_ext16u_i64(tcg_out
, tcg_in
);
1161 tcg_gen_ext32u_i64(tcg_out
, tcg_in
);
1164 tcg_gen_mov_i64(tcg_out
, tcg_in
);
1170 tcg_gen_shli_i64(tcg_out
, tcg_out
, shift
);
1174 static inline void gen_check_sp_alignment(DisasContext
*s
)
1176 /* The AArch64 architecture mandates that (if enabled via PSTATE
1177 * or SCTLR bits) there is a check that SP is 16-aligned on every
1178 * SP-relative load or store (with an exception generated if it is not).
1179 * In line with general QEMU practice regarding misaligned accesses,
1180 * we omit these checks for the sake of guest program performance.
1181 * This function is provided as a hook so we can more easily add these
1182 * checks in future (possibly as a "favour catching guest program bugs
1183 * over speed" user selectable option).
1188 * This provides a simple table based table lookup decoder. It is
1189 * intended to be used when the relevant bits for decode are too
1190 * awkwardly placed and switch/if based logic would be confusing and
1191 * deeply nested. Since it's a linear search through the table, tables
1192 * should be kept small.
1194 * It returns the first handler where insn & mask == pattern, or
1195 * NULL if there is no match.
1196 * The table is terminated by an empty mask (i.e. 0)
1198 static inline AArch64DecodeFn
*lookup_disas_fn(const AArch64DecodeTable
*table
,
1201 const AArch64DecodeTable
*tptr
= table
;
1203 while (tptr
->mask
) {
1204 if ((insn
& tptr
->mask
) == tptr
->pattern
) {
1205 return tptr
->disas_fn
;
1213 * the instruction disassembly implemented here matches
1214 * the instruction encoding classifications in chapter 3 (C3)
1215 * of the ARM Architecture Reference Manual (DDI0487A_a)
1218 /* C3.2.7 Unconditional branch (immediate)
1220 * +----+-----------+-------------------------------------+
1221 * | op | 0 0 1 0 1 | imm26 |
1222 * +----+-----------+-------------------------------------+
1224 static void disas_uncond_b_imm(DisasContext
*s
, uint32_t insn
)
1226 uint64_t addr
= s
->pc
+ sextract32(insn
, 0, 26) * 4 - 4;
1228 if (insn
& (1U << 31)) {
1229 /* C5.6.26 BL Branch with link */
1230 tcg_gen_movi_i64(cpu_reg(s
, 30), s
->pc
);
1233 /* C5.6.20 B Branch / C5.6.26 BL Branch with link */
1234 gen_goto_tb(s
, 0, addr
);
1237 /* C3.2.1 Compare & branch (immediate)
1238 * 31 30 25 24 23 5 4 0
1239 * +----+-------------+----+---------------------+--------+
1240 * | sf | 0 1 1 0 1 0 | op | imm19 | Rt |
1241 * +----+-------------+----+---------------------+--------+
1243 static void disas_comp_b_imm(DisasContext
*s
, uint32_t insn
)
1245 unsigned int sf
, op
, rt
;
1247 TCGLabel
*label_match
;
1250 sf
= extract32(insn
, 31, 1);
1251 op
= extract32(insn
, 24, 1); /* 0: CBZ; 1: CBNZ */
1252 rt
= extract32(insn
, 0, 5);
1253 addr
= s
->pc
+ sextract32(insn
, 5, 19) * 4 - 4;
1255 tcg_cmp
= read_cpu_reg(s
, rt
, sf
);
1256 label_match
= gen_new_label();
1258 tcg_gen_brcondi_i64(op
? TCG_COND_NE
: TCG_COND_EQ
,
1259 tcg_cmp
, 0, label_match
);
1261 gen_goto_tb(s
, 0, s
->pc
);
1262 gen_set_label(label_match
);
1263 gen_goto_tb(s
, 1, addr
);
1266 /* C3.2.5 Test & branch (immediate)
1267 * 31 30 25 24 23 19 18 5 4 0
1268 * +----+-------------+----+-------+-------------+------+
1269 * | b5 | 0 1 1 0 1 1 | op | b40 | imm14 | Rt |
1270 * +----+-------------+----+-------+-------------+------+
1272 static void disas_test_b_imm(DisasContext
*s
, uint32_t insn
)
1274 unsigned int bit_pos
, op
, rt
;
1276 TCGLabel
*label_match
;
1279 bit_pos
= (extract32(insn
, 31, 1) << 5) | extract32(insn
, 19, 5);
1280 op
= extract32(insn
, 24, 1); /* 0: TBZ; 1: TBNZ */
1281 addr
= s
->pc
+ sextract32(insn
, 5, 14) * 4 - 4;
1282 rt
= extract32(insn
, 0, 5);
1284 tcg_cmp
= tcg_temp_new_i64();
1285 tcg_gen_andi_i64(tcg_cmp
, cpu_reg(s
, rt
), (1ULL << bit_pos
));
1286 label_match
= gen_new_label();
1287 tcg_gen_brcondi_i64(op
? TCG_COND_NE
: TCG_COND_EQ
,
1288 tcg_cmp
, 0, label_match
);
1289 tcg_temp_free_i64(tcg_cmp
);
1290 gen_goto_tb(s
, 0, s
->pc
);
1291 gen_set_label(label_match
);
1292 gen_goto_tb(s
, 1, addr
);
1295 /* C3.2.2 / C5.6.19 Conditional branch (immediate)
1296 * 31 25 24 23 5 4 3 0
1297 * +---------------+----+---------------------+----+------+
1298 * | 0 1 0 1 0 1 0 | o1 | imm19 | o0 | cond |
1299 * +---------------+----+---------------------+----+------+
1301 static void disas_cond_b_imm(DisasContext
*s
, uint32_t insn
)
1306 if ((insn
& (1 << 4)) || (insn
& (1 << 24))) {
1307 unallocated_encoding(s
);
1310 addr
= s
->pc
+ sextract32(insn
, 5, 19) * 4 - 4;
1311 cond
= extract32(insn
, 0, 4);
1314 /* genuinely conditional branches */
1315 TCGLabel
*label_match
= gen_new_label();
1316 arm_gen_test_cc(cond
, label_match
);
1317 gen_goto_tb(s
, 0, s
->pc
);
1318 gen_set_label(label_match
);
1319 gen_goto_tb(s
, 1, addr
);
1321 /* 0xe and 0xf are both "always" conditions */
1322 gen_goto_tb(s
, 0, addr
);
1327 static void handle_hint(DisasContext
*s
, uint32_t insn
,
1328 unsigned int op1
, unsigned int op2
, unsigned int crm
)
1330 unsigned int selector
= crm
<< 3 | op2
;
1333 unallocated_encoding(s
);
1341 s
->is_jmp
= DISAS_WFI
;
1344 s
->is_jmp
= DISAS_YIELD
;
1347 s
->is_jmp
= DISAS_WFE
;
1351 /* we treat all as NOP at least for now */
1354 /* default specified as NOP equivalent */
1359 static void gen_clrex(DisasContext
*s
, uint32_t insn
)
1361 tcg_gen_movi_i64(cpu_exclusive_addr
, -1);
1364 /* CLREX, DSB, DMB, ISB */
1365 static void handle_sync(DisasContext
*s
, uint32_t insn
,
1366 unsigned int op1
, unsigned int op2
, unsigned int crm
)
1371 unallocated_encoding(s
);
1382 case 1: /* MBReqTypes_Reads */
1383 bar
= TCG_BAR_SC
| TCG_MO_LD_LD
| TCG_MO_LD_ST
;
1385 case 2: /* MBReqTypes_Writes */
1386 bar
= TCG_BAR_SC
| TCG_MO_ST_ST
;
1388 default: /* MBReqTypes_All */
1389 bar
= TCG_BAR_SC
| TCG_MO_ALL
;
1395 /* We need to break the TB after this insn to execute
1396 * a self-modified code correctly and also to take
1397 * any pending interrupts immediately.
1399 s
->is_jmp
= DISAS_UPDATE
;
1402 unallocated_encoding(s
);
1407 /* C5.6.130 MSR (immediate) - move immediate to processor state field */
1408 static void handle_msr_i(DisasContext
*s
, uint32_t insn
,
1409 unsigned int op1
, unsigned int op2
, unsigned int crm
)
1411 int op
= op1
<< 3 | op2
;
1413 case 0x05: /* SPSel */
1414 if (s
->current_el
== 0) {
1415 unallocated_encoding(s
);
1419 case 0x1e: /* DAIFSet */
1420 case 0x1f: /* DAIFClear */
1422 TCGv_i32 tcg_imm
= tcg_const_i32(crm
);
1423 TCGv_i32 tcg_op
= tcg_const_i32(op
);
1424 gen_a64_set_pc_im(s
->pc
- 4);
1425 gen_helper_msr_i_pstate(cpu_env
, tcg_op
, tcg_imm
);
1426 tcg_temp_free_i32(tcg_imm
);
1427 tcg_temp_free_i32(tcg_op
);
1428 s
->is_jmp
= DISAS_UPDATE
;
1432 unallocated_encoding(s
);
1437 static void gen_get_nzcv(TCGv_i64 tcg_rt
)
1439 TCGv_i32 tmp
= tcg_temp_new_i32();
1440 TCGv_i32 nzcv
= tcg_temp_new_i32();
1442 /* build bit 31, N */
1443 tcg_gen_andi_i32(nzcv
, cpu_NF
, (1U << 31));
1444 /* build bit 30, Z */
1445 tcg_gen_setcondi_i32(TCG_COND_EQ
, tmp
, cpu_ZF
, 0);
1446 tcg_gen_deposit_i32(nzcv
, nzcv
, tmp
, 30, 1);
1447 /* build bit 29, C */
1448 tcg_gen_deposit_i32(nzcv
, nzcv
, cpu_CF
, 29, 1);
1449 /* build bit 28, V */
1450 tcg_gen_shri_i32(tmp
, cpu_VF
, 31);
1451 tcg_gen_deposit_i32(nzcv
, nzcv
, tmp
, 28, 1);
1452 /* generate result */
1453 tcg_gen_extu_i32_i64(tcg_rt
, nzcv
);
1455 tcg_temp_free_i32(nzcv
);
1456 tcg_temp_free_i32(tmp
);
1459 static void gen_set_nzcv(TCGv_i64 tcg_rt
)
1462 TCGv_i32 nzcv
= tcg_temp_new_i32();
1464 /* take NZCV from R[t] */
1465 tcg_gen_extrl_i64_i32(nzcv
, tcg_rt
);
1468 tcg_gen_andi_i32(cpu_NF
, nzcv
, (1U << 31));
1470 tcg_gen_andi_i32(cpu_ZF
, nzcv
, (1 << 30));
1471 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_ZF
, cpu_ZF
, 0);
1473 tcg_gen_andi_i32(cpu_CF
, nzcv
, (1 << 29));
1474 tcg_gen_shri_i32(cpu_CF
, cpu_CF
, 29);
1476 tcg_gen_andi_i32(cpu_VF
, nzcv
, (1 << 28));
1477 tcg_gen_shli_i32(cpu_VF
, cpu_VF
, 3);
1478 tcg_temp_free_i32(nzcv
);
1481 /* C5.6.129 MRS - move from system register
1482 * C5.6.131 MSR (register) - move to system register
1485 * These are all essentially the same insn in 'read' and 'write'
1486 * versions, with varying op0 fields.
1488 static void handle_sys(DisasContext
*s
, uint32_t insn
, bool isread
,
1489 unsigned int op0
, unsigned int op1
, unsigned int op2
,
1490 unsigned int crn
, unsigned int crm
, unsigned int rt
)
1492 const ARMCPRegInfo
*ri
;
1495 ri
= get_arm_cp_reginfo(s
->cp_regs
,
1496 ENCODE_AA64_CP_REG(CP_REG_ARM64_SYSREG_CP
,
1497 crn
, crm
, op0
, op1
, op2
));
1500 /* Unknown register; this might be a guest error or a QEMU
1501 * unimplemented feature.
1503 qemu_log_mask(LOG_UNIMP
, "%s access to unsupported AArch64 "
1504 "system register op0:%d op1:%d crn:%d crm:%d op2:%d\n",
1505 isread
? "read" : "write", op0
, op1
, crn
, crm
, op2
);
1506 unallocated_encoding(s
);
1510 /* Check access permissions */
1511 if (!cp_access_ok(s
->current_el
, ri
, isread
)) {
1512 unallocated_encoding(s
);
1517 /* Emit code to perform further access permissions checks at
1518 * runtime; this may result in an exception.
1521 TCGv_i32 tcg_syn
, tcg_isread
;
1524 gen_a64_set_pc_im(s
->pc
- 4);
1525 tmpptr
= tcg_const_ptr(ri
);
1526 syndrome
= syn_aa64_sysregtrap(op0
, op1
, op2
, crn
, crm
, rt
, isread
);
1527 tcg_syn
= tcg_const_i32(syndrome
);
1528 tcg_isread
= tcg_const_i32(isread
);
1529 gen_helper_access_check_cp_reg(cpu_env
, tmpptr
, tcg_syn
, tcg_isread
);
1530 tcg_temp_free_ptr(tmpptr
);
1531 tcg_temp_free_i32(tcg_syn
);
1532 tcg_temp_free_i32(tcg_isread
);
1535 /* Handle special cases first */
1536 switch (ri
->type
& ~(ARM_CP_FLAG_MASK
& ~ARM_CP_SPECIAL
)) {
1540 tcg_rt
= cpu_reg(s
, rt
);
1542 gen_get_nzcv(tcg_rt
);
1544 gen_set_nzcv(tcg_rt
);
1547 case ARM_CP_CURRENTEL
:
1548 /* Reads as current EL value from pstate, which is
1549 * guaranteed to be constant by the tb flags.
1551 tcg_rt
= cpu_reg(s
, rt
);
1552 tcg_gen_movi_i64(tcg_rt
, s
->current_el
<< 2);
1555 /* Writes clear the aligned block of memory which rt points into. */
1556 tcg_rt
= cpu_reg(s
, rt
);
1557 gen_helper_dc_zva(cpu_env
, tcg_rt
);
1563 if ((s
->tb
->cflags
& CF_USE_ICOUNT
) && (ri
->type
& ARM_CP_IO
)) {
1567 tcg_rt
= cpu_reg(s
, rt
);
1570 if (ri
->type
& ARM_CP_CONST
) {
1571 tcg_gen_movi_i64(tcg_rt
, ri
->resetvalue
);
1572 } else if (ri
->readfn
) {
1574 tmpptr
= tcg_const_ptr(ri
);
1575 gen_helper_get_cp_reg64(tcg_rt
, cpu_env
, tmpptr
);
1576 tcg_temp_free_ptr(tmpptr
);
1578 tcg_gen_ld_i64(tcg_rt
, cpu_env
, ri
->fieldoffset
);
1581 if (ri
->type
& ARM_CP_CONST
) {
1582 /* If not forbidden by access permissions, treat as WI */
1584 } else if (ri
->writefn
) {
1586 tmpptr
= tcg_const_ptr(ri
);
1587 gen_helper_set_cp_reg64(cpu_env
, tmpptr
, tcg_rt
);
1588 tcg_temp_free_ptr(tmpptr
);
1590 tcg_gen_st_i64(tcg_rt
, cpu_env
, ri
->fieldoffset
);
1594 if ((s
->tb
->cflags
& CF_USE_ICOUNT
) && (ri
->type
& ARM_CP_IO
)) {
1595 /* I/O operations must end the TB here (whether read or write) */
1597 s
->is_jmp
= DISAS_UPDATE
;
1598 } else if (!isread
&& !(ri
->type
& ARM_CP_SUPPRESS_TB_END
)) {
1599 /* We default to ending the TB on a coprocessor register write,
1600 * but allow this to be suppressed by the register definition
1601 * (usually only necessary to work around guest bugs).
1603 s
->is_jmp
= DISAS_UPDATE
;
1608 * 31 22 21 20 19 18 16 15 12 11 8 7 5 4 0
1609 * +---------------------+---+-----+-----+-------+-------+-----+------+
1610 * | 1 1 0 1 0 1 0 1 0 0 | L | op0 | op1 | CRn | CRm | op2 | Rt |
1611 * +---------------------+---+-----+-----+-------+-------+-----+------+
1613 static void disas_system(DisasContext
*s
, uint32_t insn
)
1615 unsigned int l
, op0
, op1
, crn
, crm
, op2
, rt
;
1616 l
= extract32(insn
, 21, 1);
1617 op0
= extract32(insn
, 19, 2);
1618 op1
= extract32(insn
, 16, 3);
1619 crn
= extract32(insn
, 12, 4);
1620 crm
= extract32(insn
, 8, 4);
1621 op2
= extract32(insn
, 5, 3);
1622 rt
= extract32(insn
, 0, 5);
1625 if (l
|| rt
!= 31) {
1626 unallocated_encoding(s
);
1630 case 2: /* C5.6.68 HINT */
1631 handle_hint(s
, insn
, op1
, op2
, crm
);
1633 case 3: /* CLREX, DSB, DMB, ISB */
1634 handle_sync(s
, insn
, op1
, op2
, crm
);
1636 case 4: /* C5.6.130 MSR (immediate) */
1637 handle_msr_i(s
, insn
, op1
, op2
, crm
);
1640 unallocated_encoding(s
);
1645 handle_sys(s
, insn
, l
, op0
, op1
, op2
, crn
, crm
, rt
);
1648 /* C3.2.3 Exception generation
1650 * 31 24 23 21 20 5 4 2 1 0
1651 * +-----------------+-----+------------------------+-----+----+
1652 * | 1 1 0 1 0 1 0 0 | opc | imm16 | op2 | LL |
1653 * +-----------------------+------------------------+----------+
1655 static void disas_exc(DisasContext
*s
, uint32_t insn
)
1657 int opc
= extract32(insn
, 21, 3);
1658 int op2_ll
= extract32(insn
, 0, 5);
1659 int imm16
= extract32(insn
, 5, 16);
1664 /* For SVC, HVC and SMC we advance the single-step state
1665 * machine before taking the exception. This is architecturally
1666 * mandated, to ensure that single-stepping a system call
1667 * instruction works properly.
1672 gen_exception_insn(s
, 0, EXCP_SWI
, syn_aa64_svc(imm16
),
1673 default_exception_el(s
));
1676 if (s
->current_el
== 0) {
1677 unallocated_encoding(s
);
1680 /* The pre HVC helper handles cases when HVC gets trapped
1681 * as an undefined insn by runtime configuration.
1683 gen_a64_set_pc_im(s
->pc
- 4);
1684 gen_helper_pre_hvc(cpu_env
);
1686 gen_exception_insn(s
, 0, EXCP_HVC
, syn_aa64_hvc(imm16
), 2);
1689 if (s
->current_el
== 0) {
1690 unallocated_encoding(s
);
1693 gen_a64_set_pc_im(s
->pc
- 4);
1694 tmp
= tcg_const_i32(syn_aa64_smc(imm16
));
1695 gen_helper_pre_smc(cpu_env
, tmp
);
1696 tcg_temp_free_i32(tmp
);
1698 gen_exception_insn(s
, 0, EXCP_SMC
, syn_aa64_smc(imm16
), 3);
1701 unallocated_encoding(s
);
1707 unallocated_encoding(s
);
1711 gen_exception_insn(s
, 4, EXCP_BKPT
, syn_aa64_bkpt(imm16
),
1712 default_exception_el(s
));
1716 unallocated_encoding(s
);
1719 /* HLT. This has two purposes.
1720 * Architecturally, it is an external halting debug instruction.
1721 * Since QEMU doesn't implement external debug, we treat this as
1722 * it is required for halting debug disabled: it will UNDEF.
1723 * Secondly, "HLT 0xf000" is the A64 semihosting syscall instruction.
1725 if (semihosting_enabled() && imm16
== 0xf000) {
1726 #ifndef CONFIG_USER_ONLY
1727 /* In system mode, don't allow userspace access to semihosting,
1728 * to provide some semblance of security (and for consistency
1729 * with our 32-bit semihosting).
1731 if (s
->current_el
== 0) {
1732 unsupported_encoding(s
, insn
);
1736 gen_exception_internal_insn(s
, 0, EXCP_SEMIHOST
);
1738 unsupported_encoding(s
, insn
);
1742 if (op2_ll
< 1 || op2_ll
> 3) {
1743 unallocated_encoding(s
);
1746 /* DCPS1, DCPS2, DCPS3 */
1747 unsupported_encoding(s
, insn
);
1750 unallocated_encoding(s
);
1755 /* C3.2.7 Unconditional branch (register)
1756 * 31 25 24 21 20 16 15 10 9 5 4 0
1757 * +---------------+-------+-------+-------+------+-------+
1758 * | 1 1 0 1 0 1 1 | opc | op2 | op3 | Rn | op4 |
1759 * +---------------+-------+-------+-------+------+-------+
1761 static void disas_uncond_b_reg(DisasContext
*s
, uint32_t insn
)
1763 unsigned int opc
, op2
, op3
, rn
, op4
;
1765 opc
= extract32(insn
, 21, 4);
1766 op2
= extract32(insn
, 16, 5);
1767 op3
= extract32(insn
, 10, 6);
1768 rn
= extract32(insn
, 5, 5);
1769 op4
= extract32(insn
, 0, 5);
1771 if (op4
!= 0x0 || op3
!= 0x0 || op2
!= 0x1f) {
1772 unallocated_encoding(s
);
1780 gen_a64_set_pc(s
, cpu_reg(s
, rn
));
1781 /* BLR also needs to load return address */
1783 tcg_gen_movi_i64(cpu_reg(s
, 30), s
->pc
);
1787 if (s
->current_el
== 0) {
1788 unallocated_encoding(s
);
1791 gen_helper_exception_return(cpu_env
);
1792 s
->is_jmp
= DISAS_JUMP
;
1796 unallocated_encoding(s
);
1798 unsupported_encoding(s
, insn
);
1802 unallocated_encoding(s
);
1806 s
->is_jmp
= DISAS_JUMP
;
1809 /* C3.2 Branches, exception generating and system instructions */
1810 static void disas_b_exc_sys(DisasContext
*s
, uint32_t insn
)
1812 switch (extract32(insn
, 25, 7)) {
1813 case 0x0a: case 0x0b:
1814 case 0x4a: case 0x4b: /* Unconditional branch (immediate) */
1815 disas_uncond_b_imm(s
, insn
);
1817 case 0x1a: case 0x5a: /* Compare & branch (immediate) */
1818 disas_comp_b_imm(s
, insn
);
1820 case 0x1b: case 0x5b: /* Test & branch (immediate) */
1821 disas_test_b_imm(s
, insn
);
1823 case 0x2a: /* Conditional branch (immediate) */
1824 disas_cond_b_imm(s
, insn
);
1826 case 0x6a: /* Exception generation / System */
1827 if (insn
& (1 << 24)) {
1828 disas_system(s
, insn
);
1833 case 0x6b: /* Unconditional branch (register) */
1834 disas_uncond_b_reg(s
, insn
);
1837 unallocated_encoding(s
);
1842 static void gen_load_exclusive(DisasContext
*s
, int rt
, int rt2
,
1843 TCGv_i64 addr
, int size
, bool is_pair
)
1845 TCGv_i64 tmp
= tcg_temp_new_i64();
1846 TCGMemOp be
= s
->be_data
;
1848 g_assert(size
<= 3);
1850 TCGv_i64 hitmp
= tcg_temp_new_i64();
1853 TCGv_i64 addr2
= tcg_temp_new_i64();
1855 tcg_gen_qemu_ld_i64(tmp
, addr
, get_mem_index(s
),
1856 MO_64
| MO_ALIGN_16
| be
);
1857 tcg_gen_addi_i64(addr2
, addr
, 8);
1858 tcg_gen_qemu_ld_i64(hitmp
, addr2
, get_mem_index(s
),
1859 MO_64
| MO_ALIGN
| be
);
1860 tcg_temp_free_i64(addr2
);
1862 g_assert(size
== 2);
1863 tcg_gen_qemu_ld_i64(tmp
, addr
, get_mem_index(s
),
1864 MO_64
| MO_ALIGN
| be
);
1866 tcg_gen_extr32_i64(tmp
, hitmp
, tmp
);
1868 tcg_gen_extr32_i64(hitmp
, tmp
, tmp
);
1872 tcg_gen_mov_i64(cpu_exclusive_high
, hitmp
);
1873 tcg_gen_mov_i64(cpu_reg(s
, rt2
), hitmp
);
1874 tcg_temp_free_i64(hitmp
);
1876 tcg_gen_qemu_ld_i64(tmp
, addr
, get_mem_index(s
), size
| MO_ALIGN
| be
);
1879 tcg_gen_mov_i64(cpu_exclusive_val
, tmp
);
1880 tcg_gen_mov_i64(cpu_reg(s
, rt
), tmp
);
1882 tcg_temp_free_i64(tmp
);
1883 tcg_gen_mov_i64(cpu_exclusive_addr
, addr
);
1886 static void gen_store_exclusive(DisasContext
*s
, int rd
, int rt
, int rt2
,
1887 TCGv_i64 inaddr
, int size
, int is_pair
)
1889 /* if (env->exclusive_addr == addr && env->exclusive_val == [addr]
1890 * && (!is_pair || env->exclusive_high == [addr + datasize])) {
1893 * [addr + datasize] = {Rt2};
1899 * env->exclusive_addr = -1;
1901 TCGLabel
*fail_label
= gen_new_label();
1902 TCGLabel
*done_label
= gen_new_label();
1903 TCGv_i64 addr
= tcg_temp_local_new_i64();
1906 /* Copy input into a local temp so it is not trashed when the
1907 * basic block ends at the branch insn.
1909 tcg_gen_mov_i64(addr
, inaddr
);
1910 tcg_gen_brcond_i64(TCG_COND_NE
, addr
, cpu_exclusive_addr
, fail_label
);
1912 tmp
= tcg_temp_new_i64();
1915 TCGv_i64 val
= tcg_temp_new_i64();
1916 tcg_gen_concat32_i64(tmp
, cpu_reg(s
, rt
), cpu_reg(s
, rt2
));
1917 tcg_gen_concat32_i64(val
, cpu_exclusive_val
, cpu_exclusive_high
);
1918 tcg_gen_atomic_cmpxchg_i64(tmp
, addr
, val
, tmp
,
1920 size
| MO_ALIGN
| s
->be_data
);
1921 tcg_gen_setcond_i64(TCG_COND_NE
, tmp
, tmp
, val
);
1922 tcg_temp_free_i64(val
);
1923 } else if (s
->be_data
== MO_LE
) {
1924 gen_helper_paired_cmpxchg64_le(tmp
, cpu_env
, addr
, cpu_reg(s
, rt
),
1927 gen_helper_paired_cmpxchg64_be(tmp
, cpu_env
, addr
, cpu_reg(s
, rt
),
1931 TCGv_i64 val
= cpu_reg(s
, rt
);
1932 tcg_gen_atomic_cmpxchg_i64(tmp
, addr
, cpu_exclusive_val
, val
,
1934 size
| MO_ALIGN
| s
->be_data
);
1935 tcg_gen_setcond_i64(TCG_COND_NE
, tmp
, tmp
, cpu_exclusive_val
);
1938 tcg_temp_free_i64(addr
);
1940 tcg_gen_mov_i64(cpu_reg(s
, rd
), tmp
);
1941 tcg_temp_free_i64(tmp
);
1942 tcg_gen_br(done_label
);
1944 gen_set_label(fail_label
);
1945 tcg_gen_movi_i64(cpu_reg(s
, rd
), 1);
1946 gen_set_label(done_label
);
1947 tcg_gen_movi_i64(cpu_exclusive_addr
, -1);
1950 /* Update the Sixty-Four bit (SF) registersize. This logic is derived
1951 * from the ARMv8 specs for LDR (Shared decode for all encodings).
1953 static bool disas_ldst_compute_iss_sf(int size
, bool is_signed
, int opc
)
1955 int opc0
= extract32(opc
, 0, 1);
1959 regsize
= opc0
? 32 : 64;
1961 regsize
= size
== 3 ? 64 : 32;
1963 return regsize
== 64;
1966 /* C3.3.6 Load/store exclusive
1968 * 31 30 29 24 23 22 21 20 16 15 14 10 9 5 4 0
1969 * +-----+-------------+----+---+----+------+----+-------+------+------+
1970 * | sz | 0 0 1 0 0 0 | o2 | L | o1 | Rs | o0 | Rt2 | Rn | Rt |
1971 * +-----+-------------+----+---+----+------+----+-------+------+------+
1973 * sz: 00 -> 8 bit, 01 -> 16 bit, 10 -> 32 bit, 11 -> 64 bit
1974 * L: 0 -> store, 1 -> load
1975 * o2: 0 -> exclusive, 1 -> not
1976 * o1: 0 -> single register, 1 -> register pair
1977 * o0: 1 -> load-acquire/store-release, 0 -> not
1979 static void disas_ldst_excl(DisasContext
*s
, uint32_t insn
)
1981 int rt
= extract32(insn
, 0, 5);
1982 int rn
= extract32(insn
, 5, 5);
1983 int rt2
= extract32(insn
, 10, 5);
1984 int is_lasr
= extract32(insn
, 15, 1);
1985 int rs
= extract32(insn
, 16, 5);
1986 int is_pair
= extract32(insn
, 21, 1);
1987 int is_store
= !extract32(insn
, 22, 1);
1988 int is_excl
= !extract32(insn
, 23, 1);
1989 int size
= extract32(insn
, 30, 2);
1992 if ((!is_excl
&& !is_pair
&& !is_lasr
) ||
1993 (!is_excl
&& is_pair
) ||
1994 (is_pair
&& size
< 2)) {
1995 unallocated_encoding(s
);
2000 gen_check_sp_alignment(s
);
2002 tcg_addr
= read_cpu_reg_sp(s
, rn
, 1);
2004 /* Note that since TCG is single threaded load-acquire/store-release
2005 * semantics require no extra if (is_lasr) { ... } handling.
2011 gen_load_exclusive(s
, rt
, rt2
, tcg_addr
, size
, is_pair
);
2013 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_LDAQ
);
2017 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_STRL
);
2019 gen_store_exclusive(s
, rs
, rt
, rt2
, tcg_addr
, size
, is_pair
);
2022 TCGv_i64 tcg_rt
= cpu_reg(s
, rt
);
2023 bool iss_sf
= disas_ldst_compute_iss_sf(size
, false, 0);
2025 /* Generate ISS for non-exclusive accesses including LASR. */
2028 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_STRL
);
2030 do_gpr_st(s
, tcg_rt
, tcg_addr
, size
,
2031 true, rt
, iss_sf
, is_lasr
);
2033 do_gpr_ld(s
, tcg_rt
, tcg_addr
, size
, false, false,
2034 true, rt
, iss_sf
, is_lasr
);
2036 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_LDAQ
);
2043 * C3.3.5 Load register (literal)
2045 * 31 30 29 27 26 25 24 23 5 4 0
2046 * +-----+-------+---+-----+-------------------+-------+
2047 * | opc | 0 1 1 | V | 0 0 | imm19 | Rt |
2048 * +-----+-------+---+-----+-------------------+-------+
2050 * V: 1 -> vector (simd/fp)
2051 * opc (non-vector): 00 -> 32 bit, 01 -> 64 bit,
2052 * 10-> 32 bit signed, 11 -> prefetch
2053 * opc (vector): 00 -> 32 bit, 01 -> 64 bit, 10 -> 128 bit (11 unallocated)
2055 static void disas_ld_lit(DisasContext
*s
, uint32_t insn
)
2057 int rt
= extract32(insn
, 0, 5);
2058 int64_t imm
= sextract32(insn
, 5, 19) << 2;
2059 bool is_vector
= extract32(insn
, 26, 1);
2060 int opc
= extract32(insn
, 30, 2);
2061 bool is_signed
= false;
2063 TCGv_i64 tcg_rt
, tcg_addr
;
2067 unallocated_encoding(s
);
2071 if (!fp_access_check(s
)) {
2076 /* PRFM (literal) : prefetch */
2079 size
= 2 + extract32(opc
, 0, 1);
2080 is_signed
= extract32(opc
, 1, 1);
2083 tcg_rt
= cpu_reg(s
, rt
);
2085 tcg_addr
= tcg_const_i64((s
->pc
- 4) + imm
);
2087 do_fp_ld(s
, rt
, tcg_addr
, size
);
2089 /* Only unsigned 32bit loads target 32bit registers. */
2090 bool iss_sf
= opc
!= 0;
2092 do_gpr_ld(s
, tcg_rt
, tcg_addr
, size
, is_signed
, false,
2093 true, rt
, iss_sf
, false);
2095 tcg_temp_free_i64(tcg_addr
);
2099 * C5.6.80 LDNP (Load Pair - non-temporal hint)
2100 * C5.6.81 LDP (Load Pair - non vector)
2101 * C5.6.82 LDPSW (Load Pair Signed Word - non vector)
2102 * C5.6.176 STNP (Store Pair - non-temporal hint)
2103 * C5.6.177 STP (Store Pair - non vector)
2104 * C6.3.165 LDNP (Load Pair of SIMD&FP - non-temporal hint)
2105 * C6.3.165 LDP (Load Pair of SIMD&FP)
2106 * C6.3.284 STNP (Store Pair of SIMD&FP - non-temporal hint)
2107 * C6.3.284 STP (Store Pair of SIMD&FP)
2109 * 31 30 29 27 26 25 24 23 22 21 15 14 10 9 5 4 0
2110 * +-----+-------+---+---+-------+---+-----------------------------+
2111 * | opc | 1 0 1 | V | 0 | index | L | imm7 | Rt2 | Rn | Rt |
2112 * +-----+-------+---+---+-------+---+-------+-------+------+------+
2114 * opc: LDP/STP/LDNP/STNP 00 -> 32 bit, 10 -> 64 bit
2116 * LDP/STP/LDNP/STNP (SIMD) 00 -> 32 bit, 01 -> 64 bit, 10 -> 128 bit
2117 * V: 0 -> GPR, 1 -> Vector
2118 * idx: 00 -> signed offset with non-temporal hint, 01 -> post-index,
2119 * 10 -> signed offset, 11 -> pre-index
2120 * L: 0 -> Store 1 -> Load
2122 * Rt, Rt2 = GPR or SIMD registers to be stored
2123 * Rn = general purpose register containing address
2124 * imm7 = signed offset (multiple of 4 or 8 depending on size)
2126 static void disas_ldst_pair(DisasContext
*s
, uint32_t insn
)
2128 int rt
= extract32(insn
, 0, 5);
2129 int rn
= extract32(insn
, 5, 5);
2130 int rt2
= extract32(insn
, 10, 5);
2131 uint64_t offset
= sextract64(insn
, 15, 7);
2132 int index
= extract32(insn
, 23, 2);
2133 bool is_vector
= extract32(insn
, 26, 1);
2134 bool is_load
= extract32(insn
, 22, 1);
2135 int opc
= extract32(insn
, 30, 2);
2137 bool is_signed
= false;
2138 bool postindex
= false;
2141 TCGv_i64 tcg_addr
; /* calculated address */
2145 unallocated_encoding(s
);
2152 size
= 2 + extract32(opc
, 1, 1);
2153 is_signed
= extract32(opc
, 0, 1);
2154 if (!is_load
&& is_signed
) {
2155 unallocated_encoding(s
);
2161 case 1: /* post-index */
2166 /* signed offset with "non-temporal" hint. Since we don't emulate
2167 * caches we don't care about hints to the cache system about
2168 * data access patterns, and handle this identically to plain
2172 /* There is no non-temporal-hint version of LDPSW */
2173 unallocated_encoding(s
);
2178 case 2: /* signed offset, rn not updated */
2181 case 3: /* pre-index */
2187 if (is_vector
&& !fp_access_check(s
)) {
2194 gen_check_sp_alignment(s
);
2197 tcg_addr
= read_cpu_reg_sp(s
, rn
, 1);
2200 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, offset
);
2205 do_fp_ld(s
, rt
, tcg_addr
, size
);
2207 do_fp_st(s
, rt
, tcg_addr
, size
);
2210 TCGv_i64 tcg_rt
= cpu_reg(s
, rt
);
2212 do_gpr_ld(s
, tcg_rt
, tcg_addr
, size
, is_signed
, false,
2213 false, 0, false, false);
2215 do_gpr_st(s
, tcg_rt
, tcg_addr
, size
,
2216 false, 0, false, false);
2219 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, 1 << size
);
2222 do_fp_ld(s
, rt2
, tcg_addr
, size
);
2224 do_fp_st(s
, rt2
, tcg_addr
, size
);
2227 TCGv_i64 tcg_rt2
= cpu_reg(s
, rt2
);
2229 do_gpr_ld(s
, tcg_rt2
, tcg_addr
, size
, is_signed
, false,
2230 false, 0, false, false);
2232 do_gpr_st(s
, tcg_rt2
, tcg_addr
, size
,
2233 false, 0, false, false);
2239 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, offset
- (1 << size
));
2241 tcg_gen_subi_i64(tcg_addr
, tcg_addr
, 1 << size
);
2243 tcg_gen_mov_i64(cpu_reg_sp(s
, rn
), tcg_addr
);
2248 * C3.3.8 Load/store (immediate post-indexed)
2249 * C3.3.9 Load/store (immediate pre-indexed)
2250 * C3.3.12 Load/store (unscaled immediate)
2252 * 31 30 29 27 26 25 24 23 22 21 20 12 11 10 9 5 4 0
2253 * +----+-------+---+-----+-----+---+--------+-----+------+------+
2254 * |size| 1 1 1 | V | 0 0 | opc | 0 | imm9 | idx | Rn | Rt |
2255 * +----+-------+---+-----+-----+---+--------+-----+------+------+
2257 * idx = 01 -> post-indexed, 11 pre-indexed, 00 unscaled imm. (no writeback)
2259 * V = 0 -> non-vector
2260 * size: 00 -> 8 bit, 01 -> 16 bit, 10 -> 32 bit, 11 -> 64bit
2261 * opc: 00 -> store, 01 -> loadu, 10 -> loads 64, 11 -> loads 32
2263 static void disas_ldst_reg_imm9(DisasContext
*s
, uint32_t insn
,
2269 int rn
= extract32(insn
, 5, 5);
2270 int imm9
= sextract32(insn
, 12, 9);
2271 int idx
= extract32(insn
, 10, 2);
2272 bool is_signed
= false;
2273 bool is_store
= false;
2274 bool is_extended
= false;
2275 bool is_unpriv
= (idx
== 2);
2276 bool iss_valid
= !is_vector
;
2283 size
|= (opc
& 2) << 1;
2284 if (size
> 4 || is_unpriv
) {
2285 unallocated_encoding(s
);
2288 is_store
= ((opc
& 1) == 0);
2289 if (!fp_access_check(s
)) {
2293 if (size
== 3 && opc
== 2) {
2294 /* PRFM - prefetch */
2296 unallocated_encoding(s
);
2301 if (opc
== 3 && size
> 1) {
2302 unallocated_encoding(s
);
2305 is_store
= (opc
== 0);
2306 is_signed
= extract32(opc
, 1, 1);
2307 is_extended
= (size
< 3) && extract32(opc
, 0, 1);
2327 gen_check_sp_alignment(s
);
2329 tcg_addr
= read_cpu_reg_sp(s
, rn
, 1);
2332 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, imm9
);
2337 do_fp_st(s
, rt
, tcg_addr
, size
);
2339 do_fp_ld(s
, rt
, tcg_addr
, size
);
2342 TCGv_i64 tcg_rt
= cpu_reg(s
, rt
);
2343 int memidx
= is_unpriv
? get_a64_user_mem_index(s
) : get_mem_index(s
);
2344 bool iss_sf
= disas_ldst_compute_iss_sf(size
, is_signed
, opc
);
2347 do_gpr_st_memidx(s
, tcg_rt
, tcg_addr
, size
, memidx
,
2348 iss_valid
, rt
, iss_sf
, false);
2350 do_gpr_ld_memidx(s
, tcg_rt
, tcg_addr
, size
,
2351 is_signed
, is_extended
, memidx
,
2352 iss_valid
, rt
, iss_sf
, false);
2357 TCGv_i64 tcg_rn
= cpu_reg_sp(s
, rn
);
2359 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, imm9
);
2361 tcg_gen_mov_i64(tcg_rn
, tcg_addr
);
2366 * C3.3.10 Load/store (register offset)
2368 * 31 30 29 27 26 25 24 23 22 21 20 16 15 13 12 11 10 9 5 4 0
2369 * +----+-------+---+-----+-----+---+------+-----+--+-----+----+----+
2370 * |size| 1 1 1 | V | 0 0 | opc | 1 | Rm | opt | S| 1 0 | Rn | Rt |
2371 * +----+-------+---+-----+-----+---+------+-----+--+-----+----+----+
2374 * size: 00-> byte, 01 -> 16 bit, 10 -> 32bit, 11 -> 64bit
2375 * opc: 00 -> store, 01 -> loadu, 10 -> loads 64, 11 -> loads 32
2377 * size is opc<1>:size<1:0> so 100 -> 128 bit; 110 and 111 unallocated
2378 * opc<0>: 0 -> store, 1 -> load
2379 * V: 1 -> vector/simd
2380 * opt: extend encoding (see DecodeRegExtend)
2381 * S: if S=1 then scale (essentially index by sizeof(size))
2382 * Rt: register to transfer into/out of
2383 * Rn: address register or SP for base
2384 * Rm: offset register or ZR for offset
2386 static void disas_ldst_reg_roffset(DisasContext
*s
, uint32_t insn
,
2392 int rn
= extract32(insn
, 5, 5);
2393 int shift
= extract32(insn
, 12, 1);
2394 int rm
= extract32(insn
, 16, 5);
2395 int opt
= extract32(insn
, 13, 3);
2396 bool is_signed
= false;
2397 bool is_store
= false;
2398 bool is_extended
= false;
2403 if (extract32(opt
, 1, 1) == 0) {
2404 unallocated_encoding(s
);
2409 size
|= (opc
& 2) << 1;
2411 unallocated_encoding(s
);
2414 is_store
= !extract32(opc
, 0, 1);
2415 if (!fp_access_check(s
)) {
2419 if (size
== 3 && opc
== 2) {
2420 /* PRFM - prefetch */
2423 if (opc
== 3 && size
> 1) {
2424 unallocated_encoding(s
);
2427 is_store
= (opc
== 0);
2428 is_signed
= extract32(opc
, 1, 1);
2429 is_extended
= (size
< 3) && extract32(opc
, 0, 1);
2433 gen_check_sp_alignment(s
);
2435 tcg_addr
= read_cpu_reg_sp(s
, rn
, 1);
2437 tcg_rm
= read_cpu_reg(s
, rm
, 1);
2438 ext_and_shift_reg(tcg_rm
, tcg_rm
, opt
, shift
? size
: 0);
2440 tcg_gen_add_i64(tcg_addr
, tcg_addr
, tcg_rm
);
2444 do_fp_st(s
, rt
, tcg_addr
, size
);
2446 do_fp_ld(s
, rt
, tcg_addr
, size
);
2449 TCGv_i64 tcg_rt
= cpu_reg(s
, rt
);
2450 bool iss_sf
= disas_ldst_compute_iss_sf(size
, is_signed
, opc
);
2452 do_gpr_st(s
, tcg_rt
, tcg_addr
, size
,
2453 true, rt
, iss_sf
, false);
2455 do_gpr_ld(s
, tcg_rt
, tcg_addr
, size
,
2456 is_signed
, is_extended
,
2457 true, rt
, iss_sf
, false);
2463 * C3.3.13 Load/store (unsigned immediate)
2465 * 31 30 29 27 26 25 24 23 22 21 10 9 5
2466 * +----+-------+---+-----+-----+------------+-------+------+
2467 * |size| 1 1 1 | V | 0 1 | opc | imm12 | Rn | Rt |
2468 * +----+-------+---+-----+-----+------------+-------+------+
2471 * size: 00-> byte, 01 -> 16 bit, 10 -> 32bit, 11 -> 64bit
2472 * opc: 00 -> store, 01 -> loadu, 10 -> loads 64, 11 -> loads 32
2474 * size is opc<1>:size<1:0> so 100 -> 128 bit; 110 and 111 unallocated
2475 * opc<0>: 0 -> store, 1 -> load
2476 * Rn: base address register (inc SP)
2477 * Rt: target register
2479 static void disas_ldst_reg_unsigned_imm(DisasContext
*s
, uint32_t insn
,
2485 int rn
= extract32(insn
, 5, 5);
2486 unsigned int imm12
= extract32(insn
, 10, 12);
2487 unsigned int offset
;
2492 bool is_signed
= false;
2493 bool is_extended
= false;
2496 size
|= (opc
& 2) << 1;
2498 unallocated_encoding(s
);
2501 is_store
= !extract32(opc
, 0, 1);
2502 if (!fp_access_check(s
)) {
2506 if (size
== 3 && opc
== 2) {
2507 /* PRFM - prefetch */
2510 if (opc
== 3 && size
> 1) {
2511 unallocated_encoding(s
);
2514 is_store
= (opc
== 0);
2515 is_signed
= extract32(opc
, 1, 1);
2516 is_extended
= (size
< 3) && extract32(opc
, 0, 1);
2520 gen_check_sp_alignment(s
);
2522 tcg_addr
= read_cpu_reg_sp(s
, rn
, 1);
2523 offset
= imm12
<< size
;
2524 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, offset
);
2528 do_fp_st(s
, rt
, tcg_addr
, size
);
2530 do_fp_ld(s
, rt
, tcg_addr
, size
);
2533 TCGv_i64 tcg_rt
= cpu_reg(s
, rt
);
2534 bool iss_sf
= disas_ldst_compute_iss_sf(size
, is_signed
, opc
);
2536 do_gpr_st(s
, tcg_rt
, tcg_addr
, size
,
2537 true, rt
, iss_sf
, false);
2539 do_gpr_ld(s
, tcg_rt
, tcg_addr
, size
, is_signed
, is_extended
,
2540 true, rt
, iss_sf
, false);
2545 /* Load/store register (all forms) */
2546 static void disas_ldst_reg(DisasContext
*s
, uint32_t insn
)
2548 int rt
= extract32(insn
, 0, 5);
2549 int opc
= extract32(insn
, 22, 2);
2550 bool is_vector
= extract32(insn
, 26, 1);
2551 int size
= extract32(insn
, 30, 2);
2553 switch (extract32(insn
, 24, 2)) {
2555 if (extract32(insn
, 21, 1) == 1 && extract32(insn
, 10, 2) == 2) {
2556 disas_ldst_reg_roffset(s
, insn
, opc
, size
, rt
, is_vector
);
2558 /* Load/store register (unscaled immediate)
2559 * Load/store immediate pre/post-indexed
2560 * Load/store register unprivileged
2562 disas_ldst_reg_imm9(s
, insn
, opc
, size
, rt
, is_vector
);
2566 disas_ldst_reg_unsigned_imm(s
, insn
, opc
, size
, rt
, is_vector
);
2569 unallocated_encoding(s
);
2574 /* C3.3.1 AdvSIMD load/store multiple structures
2576 * 31 30 29 23 22 21 16 15 12 11 10 9 5 4 0
2577 * +---+---+---------------+---+-------------+--------+------+------+------+
2578 * | 0 | Q | 0 0 1 1 0 0 0 | L | 0 0 0 0 0 0 | opcode | size | Rn | Rt |
2579 * +---+---+---------------+---+-------------+--------+------+------+------+
2581 * C3.3.2 AdvSIMD load/store multiple structures (post-indexed)
2583 * 31 30 29 23 22 21 20 16 15 12 11 10 9 5 4 0
2584 * +---+---+---------------+---+---+---------+--------+------+------+------+
2585 * | 0 | Q | 0 0 1 1 0 0 1 | L | 0 | Rm | opcode | size | Rn | Rt |
2586 * +---+---+---------------+---+---+---------+--------+------+------+------+
2588 * Rt: first (or only) SIMD&FP register to be transferred
2589 * Rn: base address or SP
2590 * Rm (post-index only): post-index register (when !31) or size dependent #imm
2592 static void disas_ldst_multiple_struct(DisasContext
*s
, uint32_t insn
)
2594 int rt
= extract32(insn
, 0, 5);
2595 int rn
= extract32(insn
, 5, 5);
2596 int size
= extract32(insn
, 10, 2);
2597 int opcode
= extract32(insn
, 12, 4);
2598 bool is_store
= !extract32(insn
, 22, 1);
2599 bool is_postidx
= extract32(insn
, 23, 1);
2600 bool is_q
= extract32(insn
, 30, 1);
2601 TCGv_i64 tcg_addr
, tcg_rn
;
2603 int ebytes
= 1 << size
;
2604 int elements
= (is_q
? 128 : 64) / (8 << size
);
2605 int rpt
; /* num iterations */
2606 int selem
; /* structure elements */
2609 if (extract32(insn
, 31, 1) || extract32(insn
, 21, 1)) {
2610 unallocated_encoding(s
);
2614 /* From the shared decode logic */
2645 unallocated_encoding(s
);
2649 if (size
== 3 && !is_q
&& selem
!= 1) {
2651 unallocated_encoding(s
);
2655 if (!fp_access_check(s
)) {
2660 gen_check_sp_alignment(s
);
2663 tcg_rn
= cpu_reg_sp(s
, rn
);
2664 tcg_addr
= tcg_temp_new_i64();
2665 tcg_gen_mov_i64(tcg_addr
, tcg_rn
);
2667 for (r
= 0; r
< rpt
; r
++) {
2669 for (e
= 0; e
< elements
; e
++) {
2670 int tt
= (rt
+ r
) % 32;
2672 for (xs
= 0; xs
< selem
; xs
++) {
2674 do_vec_st(s
, tt
, e
, tcg_addr
, size
);
2676 do_vec_ld(s
, tt
, e
, tcg_addr
, size
);
2678 /* For non-quad operations, setting a slice of the low
2679 * 64 bits of the register clears the high 64 bits (in
2680 * the ARM ARM pseudocode this is implicit in the fact
2681 * that 'rval' is a 64 bit wide variable). We optimize
2682 * by noticing that we only need to do this the first
2683 * time we touch a register.
2685 if (!is_q
&& e
== 0 && (r
== 0 || xs
== selem
- 1)) {
2686 clear_vec_high(s
, tt
);
2689 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, ebytes
);
2696 int rm
= extract32(insn
, 16, 5);
2698 tcg_gen_mov_i64(tcg_rn
, tcg_addr
);
2700 tcg_gen_add_i64(tcg_rn
, tcg_rn
, cpu_reg(s
, rm
));
2703 tcg_temp_free_i64(tcg_addr
);
2706 /* C3.3.3 AdvSIMD load/store single structure
2708 * 31 30 29 23 22 21 20 16 15 13 12 11 10 9 5 4 0
2709 * +---+---+---------------+-----+-----------+-----+---+------+------+------+
2710 * | 0 | Q | 0 0 1 1 0 1 0 | L R | 0 0 0 0 0 | opc | S | size | Rn | Rt |
2711 * +---+---+---------------+-----+-----------+-----+---+------+------+------+
2713 * C3.3.4 AdvSIMD load/store single structure (post-indexed)
2715 * 31 30 29 23 22 21 20 16 15 13 12 11 10 9 5 4 0
2716 * +---+---+---------------+-----+-----------+-----+---+------+------+------+
2717 * | 0 | Q | 0 0 1 1 0 1 1 | L R | Rm | opc | S | size | Rn | Rt |
2718 * +---+---+---------------+-----+-----------+-----+---+------+------+------+
2720 * Rt: first (or only) SIMD&FP register to be transferred
2721 * Rn: base address or SP
2722 * Rm (post-index only): post-index register (when !31) or size dependent #imm
2723 * index = encoded in Q:S:size dependent on size
2725 * lane_size = encoded in R, opc
2726 * transfer width = encoded in opc, S, size
2728 static void disas_ldst_single_struct(DisasContext
*s
, uint32_t insn
)
2730 int rt
= extract32(insn
, 0, 5);
2731 int rn
= extract32(insn
, 5, 5);
2732 int size
= extract32(insn
, 10, 2);
2733 int S
= extract32(insn
, 12, 1);
2734 int opc
= extract32(insn
, 13, 3);
2735 int R
= extract32(insn
, 21, 1);
2736 int is_load
= extract32(insn
, 22, 1);
2737 int is_postidx
= extract32(insn
, 23, 1);
2738 int is_q
= extract32(insn
, 30, 1);
2740 int scale
= extract32(opc
, 1, 2);
2741 int selem
= (extract32(opc
, 0, 1) << 1 | R
) + 1;
2742 bool replicate
= false;
2743 int index
= is_q
<< 3 | S
<< 2 | size
;
2745 TCGv_i64 tcg_addr
, tcg_rn
;
2749 if (!is_load
|| S
) {
2750 unallocated_encoding(s
);
2759 if (extract32(size
, 0, 1)) {
2760 unallocated_encoding(s
);
2766 if (extract32(size
, 1, 1)) {
2767 unallocated_encoding(s
);
2770 if (!extract32(size
, 0, 1)) {
2774 unallocated_encoding(s
);
2782 g_assert_not_reached();
2785 if (!fp_access_check(s
)) {
2789 ebytes
= 1 << scale
;
2792 gen_check_sp_alignment(s
);
2795 tcg_rn
= cpu_reg_sp(s
, rn
);
2796 tcg_addr
= tcg_temp_new_i64();
2797 tcg_gen_mov_i64(tcg_addr
, tcg_rn
);
2799 for (xs
= 0; xs
< selem
; xs
++) {
2801 /* Load and replicate to all elements */
2803 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
2805 tcg_gen_qemu_ld_i64(tcg_tmp
, tcg_addr
,
2806 get_mem_index(s
), s
->be_data
+ scale
);
2809 mulconst
= 0x0101010101010101ULL
;
2812 mulconst
= 0x0001000100010001ULL
;
2815 mulconst
= 0x0000000100000001ULL
;
2821 g_assert_not_reached();
2824 tcg_gen_muli_i64(tcg_tmp
, tcg_tmp
, mulconst
);
2826 write_vec_element(s
, tcg_tmp
, rt
, 0, MO_64
);
2828 write_vec_element(s
, tcg_tmp
, rt
, 1, MO_64
);
2830 clear_vec_high(s
, rt
);
2832 tcg_temp_free_i64(tcg_tmp
);
2834 /* Load/store one element per register */
2836 do_vec_ld(s
, rt
, index
, tcg_addr
, s
->be_data
+ scale
);
2838 do_vec_st(s
, rt
, index
, tcg_addr
, s
->be_data
+ scale
);
2841 tcg_gen_addi_i64(tcg_addr
, tcg_addr
, ebytes
);
2846 int rm
= extract32(insn
, 16, 5);
2848 tcg_gen_mov_i64(tcg_rn
, tcg_addr
);
2850 tcg_gen_add_i64(tcg_rn
, tcg_rn
, cpu_reg(s
, rm
));
2853 tcg_temp_free_i64(tcg_addr
);
2856 /* C3.3 Loads and stores */
2857 static void disas_ldst(DisasContext
*s
, uint32_t insn
)
2859 switch (extract32(insn
, 24, 6)) {
2860 case 0x08: /* Load/store exclusive */
2861 disas_ldst_excl(s
, insn
);
2863 case 0x18: case 0x1c: /* Load register (literal) */
2864 disas_ld_lit(s
, insn
);
2866 case 0x28: case 0x29:
2867 case 0x2c: case 0x2d: /* Load/store pair (all forms) */
2868 disas_ldst_pair(s
, insn
);
2870 case 0x38: case 0x39:
2871 case 0x3c: case 0x3d: /* Load/store register (all forms) */
2872 disas_ldst_reg(s
, insn
);
2874 case 0x0c: /* AdvSIMD load/store multiple structures */
2875 disas_ldst_multiple_struct(s
, insn
);
2877 case 0x0d: /* AdvSIMD load/store single structure */
2878 disas_ldst_single_struct(s
, insn
);
2881 unallocated_encoding(s
);
2886 /* C3.4.6 PC-rel. addressing
2887 * 31 30 29 28 24 23 5 4 0
2888 * +----+-------+-----------+-------------------+------+
2889 * | op | immlo | 1 0 0 0 0 | immhi | Rd |
2890 * +----+-------+-----------+-------------------+------+
2892 static void disas_pc_rel_adr(DisasContext
*s
, uint32_t insn
)
2894 unsigned int page
, rd
;
2898 page
= extract32(insn
, 31, 1);
2899 /* SignExtend(immhi:immlo) -> offset */
2900 offset
= sextract64(insn
, 5, 19);
2901 offset
= offset
<< 2 | extract32(insn
, 29, 2);
2902 rd
= extract32(insn
, 0, 5);
2906 /* ADRP (page based) */
2911 tcg_gen_movi_i64(cpu_reg(s
, rd
), base
+ offset
);
2915 * C3.4.1 Add/subtract (immediate)
2917 * 31 30 29 28 24 23 22 21 10 9 5 4 0
2918 * +--+--+--+-----------+-----+-------------+-----+-----+
2919 * |sf|op| S| 1 0 0 0 1 |shift| imm12 | Rn | Rd |
2920 * +--+--+--+-----------+-----+-------------+-----+-----+
2922 * sf: 0 -> 32bit, 1 -> 64bit
2923 * op: 0 -> add , 1 -> sub
2925 * shift: 00 -> LSL imm by 0, 01 -> LSL imm by 12
2927 static void disas_add_sub_imm(DisasContext
*s
, uint32_t insn
)
2929 int rd
= extract32(insn
, 0, 5);
2930 int rn
= extract32(insn
, 5, 5);
2931 uint64_t imm
= extract32(insn
, 10, 12);
2932 int shift
= extract32(insn
, 22, 2);
2933 bool setflags
= extract32(insn
, 29, 1);
2934 bool sub_op
= extract32(insn
, 30, 1);
2935 bool is_64bit
= extract32(insn
, 31, 1);
2937 TCGv_i64 tcg_rn
= cpu_reg_sp(s
, rn
);
2938 TCGv_i64 tcg_rd
= setflags
? cpu_reg(s
, rd
) : cpu_reg_sp(s
, rd
);
2939 TCGv_i64 tcg_result
;
2948 unallocated_encoding(s
);
2952 tcg_result
= tcg_temp_new_i64();
2955 tcg_gen_subi_i64(tcg_result
, tcg_rn
, imm
);
2957 tcg_gen_addi_i64(tcg_result
, tcg_rn
, imm
);
2960 TCGv_i64 tcg_imm
= tcg_const_i64(imm
);
2962 gen_sub_CC(is_64bit
, tcg_result
, tcg_rn
, tcg_imm
);
2964 gen_add_CC(is_64bit
, tcg_result
, tcg_rn
, tcg_imm
);
2966 tcg_temp_free_i64(tcg_imm
);
2970 tcg_gen_mov_i64(tcg_rd
, tcg_result
);
2972 tcg_gen_ext32u_i64(tcg_rd
, tcg_result
);
2975 tcg_temp_free_i64(tcg_result
);
2978 /* The input should be a value in the bottom e bits (with higher
2979 * bits zero); returns that value replicated into every element
2980 * of size e in a 64 bit integer.
2982 static uint64_t bitfield_replicate(uint64_t mask
, unsigned int e
)
2992 /* Return a value with the bottom len bits set (where 0 < len <= 64) */
2993 static inline uint64_t bitmask64(unsigned int length
)
2995 assert(length
> 0 && length
<= 64);
2996 return ~0ULL >> (64 - length
);
2999 /* Simplified variant of pseudocode DecodeBitMasks() for the case where we
3000 * only require the wmask. Returns false if the imms/immr/immn are a reserved
3001 * value (ie should cause a guest UNDEF exception), and true if they are
3002 * valid, in which case the decoded bit pattern is written to result.
3004 static bool logic_imm_decode_wmask(uint64_t *result
, unsigned int immn
,
3005 unsigned int imms
, unsigned int immr
)
3008 unsigned e
, levels
, s
, r
;
3011 assert(immn
< 2 && imms
< 64 && immr
< 64);
3013 /* The bit patterns we create here are 64 bit patterns which
3014 * are vectors of identical elements of size e = 2, 4, 8, 16, 32 or
3015 * 64 bits each. Each element contains the same value: a run
3016 * of between 1 and e-1 non-zero bits, rotated within the
3017 * element by between 0 and e-1 bits.
3019 * The element size and run length are encoded into immn (1 bit)
3020 * and imms (6 bits) as follows:
3021 * 64 bit elements: immn = 1, imms = <length of run - 1>
3022 * 32 bit elements: immn = 0, imms = 0 : <length of run - 1>
3023 * 16 bit elements: immn = 0, imms = 10 : <length of run - 1>
3024 * 8 bit elements: immn = 0, imms = 110 : <length of run - 1>
3025 * 4 bit elements: immn = 0, imms = 1110 : <length of run - 1>
3026 * 2 bit elements: immn = 0, imms = 11110 : <length of run - 1>
3027 * Notice that immn = 0, imms = 11111x is the only combination
3028 * not covered by one of the above options; this is reserved.
3029 * Further, <length of run - 1> all-ones is a reserved pattern.
3031 * In all cases the rotation is by immr % e (and immr is 6 bits).
3034 /* First determine the element size */
3035 len
= 31 - clz32((immn
<< 6) | (~imms
& 0x3f));
3037 /* This is the immn == 0, imms == 0x11111x case */
3047 /* <length of run - 1> mustn't be all-ones. */
3051 /* Create the value of one element: s+1 set bits rotated
3052 * by r within the element (which is e bits wide)...
3054 mask
= bitmask64(s
+ 1);
3056 mask
= (mask
>> r
) | (mask
<< (e
- r
));
3057 mask
&= bitmask64(e
);
3059 /* ...then replicate the element over the whole 64 bit value */
3060 mask
= bitfield_replicate(mask
, e
);
3065 /* C3.4.4 Logical (immediate)
3066 * 31 30 29 28 23 22 21 16 15 10 9 5 4 0
3067 * +----+-----+-------------+---+------+------+------+------+
3068 * | sf | opc | 1 0 0 1 0 0 | N | immr | imms | Rn | Rd |
3069 * +----+-----+-------------+---+------+------+------+------+
3071 static void disas_logic_imm(DisasContext
*s
, uint32_t insn
)
3073 unsigned int sf
, opc
, is_n
, immr
, imms
, rn
, rd
;
3074 TCGv_i64 tcg_rd
, tcg_rn
;
3076 bool is_and
= false;
3078 sf
= extract32(insn
, 31, 1);
3079 opc
= extract32(insn
, 29, 2);
3080 is_n
= extract32(insn
, 22, 1);
3081 immr
= extract32(insn
, 16, 6);
3082 imms
= extract32(insn
, 10, 6);
3083 rn
= extract32(insn
, 5, 5);
3084 rd
= extract32(insn
, 0, 5);
3087 unallocated_encoding(s
);
3091 if (opc
== 0x3) { /* ANDS */
3092 tcg_rd
= cpu_reg(s
, rd
);
3094 tcg_rd
= cpu_reg_sp(s
, rd
);
3096 tcg_rn
= cpu_reg(s
, rn
);
3098 if (!logic_imm_decode_wmask(&wmask
, is_n
, imms
, immr
)) {
3099 /* some immediate field values are reserved */
3100 unallocated_encoding(s
);
3105 wmask
&= 0xffffffff;
3109 case 0x3: /* ANDS */
3111 tcg_gen_andi_i64(tcg_rd
, tcg_rn
, wmask
);
3115 tcg_gen_ori_i64(tcg_rd
, tcg_rn
, wmask
);
3118 tcg_gen_xori_i64(tcg_rd
, tcg_rn
, wmask
);
3121 assert(FALSE
); /* must handle all above */
3125 if (!sf
&& !is_and
) {
3126 /* zero extend final result; we know we can skip this for AND
3127 * since the immediate had the high 32 bits clear.
3129 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3132 if (opc
== 3) { /* ANDS */
3133 gen_logic_CC(sf
, tcg_rd
);
3138 * C3.4.5 Move wide (immediate)
3140 * 31 30 29 28 23 22 21 20 5 4 0
3141 * +--+-----+-------------+-----+----------------+------+
3142 * |sf| opc | 1 0 0 1 0 1 | hw | imm16 | Rd |
3143 * +--+-----+-------------+-----+----------------+------+
3145 * sf: 0 -> 32 bit, 1 -> 64 bit
3146 * opc: 00 -> N, 10 -> Z, 11 -> K
3147 * hw: shift/16 (0,16, and sf only 32, 48)
3149 static void disas_movw_imm(DisasContext
*s
, uint32_t insn
)
3151 int rd
= extract32(insn
, 0, 5);
3152 uint64_t imm
= extract32(insn
, 5, 16);
3153 int sf
= extract32(insn
, 31, 1);
3154 int opc
= extract32(insn
, 29, 2);
3155 int pos
= extract32(insn
, 21, 2) << 4;
3156 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
3159 if (!sf
&& (pos
>= 32)) {
3160 unallocated_encoding(s
);
3174 tcg_gen_movi_i64(tcg_rd
, imm
);
3177 tcg_imm
= tcg_const_i64(imm
);
3178 tcg_gen_deposit_i64(tcg_rd
, tcg_rd
, tcg_imm
, pos
, 16);
3179 tcg_temp_free_i64(tcg_imm
);
3181 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3185 unallocated_encoding(s
);
3191 * 31 30 29 28 23 22 21 16 15 10 9 5 4 0
3192 * +----+-----+-------------+---+------+------+------+------+
3193 * | sf | opc | 1 0 0 1 1 0 | N | immr | imms | Rn | Rd |
3194 * +----+-----+-------------+---+------+------+------+------+
3196 static void disas_bitfield(DisasContext
*s
, uint32_t insn
)
3198 unsigned int sf
, n
, opc
, ri
, si
, rn
, rd
, bitsize
, pos
, len
;
3199 TCGv_i64 tcg_rd
, tcg_tmp
;
3201 sf
= extract32(insn
, 31, 1);
3202 opc
= extract32(insn
, 29, 2);
3203 n
= extract32(insn
, 22, 1);
3204 ri
= extract32(insn
, 16, 6);
3205 si
= extract32(insn
, 10, 6);
3206 rn
= extract32(insn
, 5, 5);
3207 rd
= extract32(insn
, 0, 5);
3208 bitsize
= sf
? 64 : 32;
3210 if (sf
!= n
|| ri
>= bitsize
|| si
>= bitsize
|| opc
> 2) {
3211 unallocated_encoding(s
);
3215 tcg_rd
= cpu_reg(s
, rd
);
3217 /* Suppress the zero-extend for !sf. Since RI and SI are constrained
3218 to be smaller than bitsize, we'll never reference data outside the
3219 low 32-bits anyway. */
3220 tcg_tmp
= read_cpu_reg(s
, rn
, 1);
3222 /* Recognize the common aliases. */
3223 if (opc
== 0) { /* SBFM */
3225 if (si
== 7) { /* SXTB */
3226 tcg_gen_ext8s_i64(tcg_rd
, tcg_tmp
);
3228 } else if (si
== 15) { /* SXTH */
3229 tcg_gen_ext16s_i64(tcg_rd
, tcg_tmp
);
3231 } else if (si
== 31) { /* SXTW */
3232 tcg_gen_ext32s_i64(tcg_rd
, tcg_tmp
);
3236 if (si
== 63 || (si
== 31 && ri
<= si
)) { /* ASR */
3238 tcg_gen_ext32s_i64(tcg_tmp
, tcg_tmp
);
3240 tcg_gen_sari_i64(tcg_rd
, tcg_tmp
, ri
);
3243 } else if (opc
== 2) { /* UBFM */
3244 if (ri
== 0) { /* UXTB, UXTH, plus non-canonical AND */
3245 tcg_gen_andi_i64(tcg_rd
, tcg_tmp
, bitmask64(si
+ 1));
3248 if (si
== 63 || (si
== 31 && ri
<= si
)) { /* LSR */
3250 tcg_gen_ext32u_i64(tcg_tmp
, tcg_tmp
);
3252 tcg_gen_shri_i64(tcg_rd
, tcg_tmp
, ri
);
3255 if (si
+ 1 == ri
&& si
!= bitsize
- 1) { /* LSL */
3256 int shift
= bitsize
- 1 - si
;
3257 tcg_gen_shli_i64(tcg_rd
, tcg_tmp
, shift
);
3262 if (opc
!= 1) { /* SBFM or UBFM */
3263 tcg_gen_movi_i64(tcg_rd
, 0);
3266 /* do the bit move operation */
3268 /* Wd<s-r:0> = Wn<s:r> */
3269 tcg_gen_shri_i64(tcg_tmp
, tcg_tmp
, ri
);
3271 len
= (si
- ri
) + 1;
3273 /* Wd<32+s-r,32-r> = Wn<s:0> */
3278 tcg_gen_deposit_i64(tcg_rd
, tcg_rd
, tcg_tmp
, pos
, len
);
3280 if (opc
== 0) { /* SBFM - sign extend the destination field */
3281 tcg_gen_shli_i64(tcg_rd
, tcg_rd
, 64 - (pos
+ len
));
3282 tcg_gen_sari_i64(tcg_rd
, tcg_rd
, 64 - (pos
+ len
));
3286 if (!sf
) { /* zero extend final result */
3287 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3292 * 31 30 29 28 23 22 21 20 16 15 10 9 5 4 0
3293 * +----+------+-------------+---+----+------+--------+------+------+
3294 * | sf | op21 | 1 0 0 1 1 1 | N | o0 | Rm | imms | Rn | Rd |
3295 * +----+------+-------------+---+----+------+--------+------+------+
3297 static void disas_extract(DisasContext
*s
, uint32_t insn
)
3299 unsigned int sf
, n
, rm
, imm
, rn
, rd
, bitsize
, op21
, op0
;
3301 sf
= extract32(insn
, 31, 1);
3302 n
= extract32(insn
, 22, 1);
3303 rm
= extract32(insn
, 16, 5);
3304 imm
= extract32(insn
, 10, 6);
3305 rn
= extract32(insn
, 5, 5);
3306 rd
= extract32(insn
, 0, 5);
3307 op21
= extract32(insn
, 29, 2);
3308 op0
= extract32(insn
, 21, 1);
3309 bitsize
= sf
? 64 : 32;
3311 if (sf
!= n
|| op21
|| op0
|| imm
>= bitsize
) {
3312 unallocated_encoding(s
);
3314 TCGv_i64 tcg_rd
, tcg_rm
, tcg_rn
;
3316 tcg_rd
= cpu_reg(s
, rd
);
3318 if (unlikely(imm
== 0)) {
3319 /* tcg shl_i32/shl_i64 is undefined for 32/64 bit shifts,
3320 * so an extract from bit 0 is a special case.
3323 tcg_gen_mov_i64(tcg_rd
, cpu_reg(s
, rm
));
3325 tcg_gen_ext32u_i64(tcg_rd
, cpu_reg(s
, rm
));
3327 } else if (rm
== rn
) { /* ROR */
3328 tcg_rm
= cpu_reg(s
, rm
);
3330 tcg_gen_rotri_i64(tcg_rd
, tcg_rm
, imm
);
3332 TCGv_i32 tmp
= tcg_temp_new_i32();
3333 tcg_gen_extrl_i64_i32(tmp
, tcg_rm
);
3334 tcg_gen_rotri_i32(tmp
, tmp
, imm
);
3335 tcg_gen_extu_i32_i64(tcg_rd
, tmp
);
3336 tcg_temp_free_i32(tmp
);
3339 tcg_rm
= read_cpu_reg(s
, rm
, sf
);
3340 tcg_rn
= read_cpu_reg(s
, rn
, sf
);
3341 tcg_gen_shri_i64(tcg_rm
, tcg_rm
, imm
);
3342 tcg_gen_shli_i64(tcg_rn
, tcg_rn
, bitsize
- imm
);
3343 tcg_gen_or_i64(tcg_rd
, tcg_rm
, tcg_rn
);
3345 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3351 /* C3.4 Data processing - immediate */
3352 static void disas_data_proc_imm(DisasContext
*s
, uint32_t insn
)
3354 switch (extract32(insn
, 23, 6)) {
3355 case 0x20: case 0x21: /* PC-rel. addressing */
3356 disas_pc_rel_adr(s
, insn
);
3358 case 0x22: case 0x23: /* Add/subtract (immediate) */
3359 disas_add_sub_imm(s
, insn
);
3361 case 0x24: /* Logical (immediate) */
3362 disas_logic_imm(s
, insn
);
3364 case 0x25: /* Move wide (immediate) */
3365 disas_movw_imm(s
, insn
);
3367 case 0x26: /* Bitfield */
3368 disas_bitfield(s
, insn
);
3370 case 0x27: /* Extract */
3371 disas_extract(s
, insn
);
3374 unallocated_encoding(s
);
3379 /* Shift a TCGv src by TCGv shift_amount, put result in dst.
3380 * Note that it is the caller's responsibility to ensure that the
3381 * shift amount is in range (ie 0..31 or 0..63) and provide the ARM
3382 * mandated semantics for out of range shifts.
3384 static void shift_reg(TCGv_i64 dst
, TCGv_i64 src
, int sf
,
3385 enum a64_shift_type shift_type
, TCGv_i64 shift_amount
)
3387 switch (shift_type
) {
3388 case A64_SHIFT_TYPE_LSL
:
3389 tcg_gen_shl_i64(dst
, src
, shift_amount
);
3391 case A64_SHIFT_TYPE_LSR
:
3392 tcg_gen_shr_i64(dst
, src
, shift_amount
);
3394 case A64_SHIFT_TYPE_ASR
:
3396 tcg_gen_ext32s_i64(dst
, src
);
3398 tcg_gen_sar_i64(dst
, sf
? src
: dst
, shift_amount
);
3400 case A64_SHIFT_TYPE_ROR
:
3402 tcg_gen_rotr_i64(dst
, src
, shift_amount
);
3405 t0
= tcg_temp_new_i32();
3406 t1
= tcg_temp_new_i32();
3407 tcg_gen_extrl_i64_i32(t0
, src
);
3408 tcg_gen_extrl_i64_i32(t1
, shift_amount
);
3409 tcg_gen_rotr_i32(t0
, t0
, t1
);
3410 tcg_gen_extu_i32_i64(dst
, t0
);
3411 tcg_temp_free_i32(t0
);
3412 tcg_temp_free_i32(t1
);
3416 assert(FALSE
); /* all shift types should be handled */
3420 if (!sf
) { /* zero extend final result */
3421 tcg_gen_ext32u_i64(dst
, dst
);
3425 /* Shift a TCGv src by immediate, put result in dst.
3426 * The shift amount must be in range (this should always be true as the
3427 * relevant instructions will UNDEF on bad shift immediates).
3429 static void shift_reg_imm(TCGv_i64 dst
, TCGv_i64 src
, int sf
,
3430 enum a64_shift_type shift_type
, unsigned int shift_i
)
3432 assert(shift_i
< (sf
? 64 : 32));
3435 tcg_gen_mov_i64(dst
, src
);
3437 TCGv_i64 shift_const
;
3439 shift_const
= tcg_const_i64(shift_i
);
3440 shift_reg(dst
, src
, sf
, shift_type
, shift_const
);
3441 tcg_temp_free_i64(shift_const
);
3445 /* C3.5.10 Logical (shifted register)
3446 * 31 30 29 28 24 23 22 21 20 16 15 10 9 5 4 0
3447 * +----+-----+-----------+-------+---+------+--------+------+------+
3448 * | sf | opc | 0 1 0 1 0 | shift | N | Rm | imm6 | Rn | Rd |
3449 * +----+-----+-----------+-------+---+------+--------+------+------+
3451 static void disas_logic_reg(DisasContext
*s
, uint32_t insn
)
3453 TCGv_i64 tcg_rd
, tcg_rn
, tcg_rm
;
3454 unsigned int sf
, opc
, shift_type
, invert
, rm
, shift_amount
, rn
, rd
;
3456 sf
= extract32(insn
, 31, 1);
3457 opc
= extract32(insn
, 29, 2);
3458 shift_type
= extract32(insn
, 22, 2);
3459 invert
= extract32(insn
, 21, 1);
3460 rm
= extract32(insn
, 16, 5);
3461 shift_amount
= extract32(insn
, 10, 6);
3462 rn
= extract32(insn
, 5, 5);
3463 rd
= extract32(insn
, 0, 5);
3465 if (!sf
&& (shift_amount
& (1 << 5))) {
3466 unallocated_encoding(s
);
3470 tcg_rd
= cpu_reg(s
, rd
);
3472 if (opc
== 1 && shift_amount
== 0 && shift_type
== 0 && rn
== 31) {
3473 /* Unshifted ORR and ORN with WZR/XZR is the standard encoding for
3474 * register-register MOV and MVN, so it is worth special casing.
3476 tcg_rm
= cpu_reg(s
, rm
);
3478 tcg_gen_not_i64(tcg_rd
, tcg_rm
);
3480 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3484 tcg_gen_mov_i64(tcg_rd
, tcg_rm
);
3486 tcg_gen_ext32u_i64(tcg_rd
, tcg_rm
);
3492 tcg_rm
= read_cpu_reg(s
, rm
, sf
);
3495 shift_reg_imm(tcg_rm
, tcg_rm
, sf
, shift_type
, shift_amount
);
3498 tcg_rn
= cpu_reg(s
, rn
);
3500 switch (opc
| (invert
<< 2)) {
3503 tcg_gen_and_i64(tcg_rd
, tcg_rn
, tcg_rm
);
3506 tcg_gen_or_i64(tcg_rd
, tcg_rn
, tcg_rm
);
3509 tcg_gen_xor_i64(tcg_rd
, tcg_rn
, tcg_rm
);
3513 tcg_gen_andc_i64(tcg_rd
, tcg_rn
, tcg_rm
);
3516 tcg_gen_orc_i64(tcg_rd
, tcg_rn
, tcg_rm
);
3519 tcg_gen_eqv_i64(tcg_rd
, tcg_rn
, tcg_rm
);
3527 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3531 gen_logic_CC(sf
, tcg_rd
);
3536 * C3.5.1 Add/subtract (extended register)
3538 * 31|30|29|28 24|23 22|21|20 16|15 13|12 10|9 5|4 0|
3539 * +--+--+--+-----------+-----+--+-------+------+------+----+----+
3540 * |sf|op| S| 0 1 0 1 1 | opt | 1| Rm |option| imm3 | Rn | Rd |
3541 * +--+--+--+-----------+-----+--+-------+------+------+----+----+
3543 * sf: 0 -> 32bit, 1 -> 64bit
3544 * op: 0 -> add , 1 -> sub
3547 * option: extension type (see DecodeRegExtend)
3548 * imm3: optional shift to Rm
3550 * Rd = Rn + LSL(extend(Rm), amount)
3552 static void disas_add_sub_ext_reg(DisasContext
*s
, uint32_t insn
)
3554 int rd
= extract32(insn
, 0, 5);
3555 int rn
= extract32(insn
, 5, 5);
3556 int imm3
= extract32(insn
, 10, 3);
3557 int option
= extract32(insn
, 13, 3);
3558 int rm
= extract32(insn
, 16, 5);
3559 bool setflags
= extract32(insn
, 29, 1);
3560 bool sub_op
= extract32(insn
, 30, 1);
3561 bool sf
= extract32(insn
, 31, 1);
3563 TCGv_i64 tcg_rm
, tcg_rn
; /* temps */
3565 TCGv_i64 tcg_result
;
3568 unallocated_encoding(s
);
3572 /* non-flag setting ops may use SP */
3574 tcg_rd
= cpu_reg_sp(s
, rd
);
3576 tcg_rd
= cpu_reg(s
, rd
);
3578 tcg_rn
= read_cpu_reg_sp(s
, rn
, sf
);
3580 tcg_rm
= read_cpu_reg(s
, rm
, sf
);
3581 ext_and_shift_reg(tcg_rm
, tcg_rm
, option
, imm3
);
3583 tcg_result
= tcg_temp_new_i64();
3587 tcg_gen_sub_i64(tcg_result
, tcg_rn
, tcg_rm
);
3589 tcg_gen_add_i64(tcg_result
, tcg_rn
, tcg_rm
);
3593 gen_sub_CC(sf
, tcg_result
, tcg_rn
, tcg_rm
);
3595 gen_add_CC(sf
, tcg_result
, tcg_rn
, tcg_rm
);
3600 tcg_gen_mov_i64(tcg_rd
, tcg_result
);
3602 tcg_gen_ext32u_i64(tcg_rd
, tcg_result
);
3605 tcg_temp_free_i64(tcg_result
);
3609 * C3.5.2 Add/subtract (shifted register)
3611 * 31 30 29 28 24 23 22 21 20 16 15 10 9 5 4 0
3612 * +--+--+--+-----------+-----+--+-------+---------+------+------+
3613 * |sf|op| S| 0 1 0 1 1 |shift| 0| Rm | imm6 | Rn | Rd |
3614 * +--+--+--+-----------+-----+--+-------+---------+------+------+
3616 * sf: 0 -> 32bit, 1 -> 64bit
3617 * op: 0 -> add , 1 -> sub
3619 * shift: 00 -> LSL, 01 -> LSR, 10 -> ASR, 11 -> RESERVED
3620 * imm6: Shift amount to apply to Rm before the add/sub
3622 static void disas_add_sub_reg(DisasContext
*s
, uint32_t insn
)
3624 int rd
= extract32(insn
, 0, 5);
3625 int rn
= extract32(insn
, 5, 5);
3626 int imm6
= extract32(insn
, 10, 6);
3627 int rm
= extract32(insn
, 16, 5);
3628 int shift_type
= extract32(insn
, 22, 2);
3629 bool setflags
= extract32(insn
, 29, 1);
3630 bool sub_op
= extract32(insn
, 30, 1);
3631 bool sf
= extract32(insn
, 31, 1);
3633 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
3634 TCGv_i64 tcg_rn
, tcg_rm
;
3635 TCGv_i64 tcg_result
;
3637 if ((shift_type
== 3) || (!sf
&& (imm6
> 31))) {
3638 unallocated_encoding(s
);
3642 tcg_rn
= read_cpu_reg(s
, rn
, sf
);
3643 tcg_rm
= read_cpu_reg(s
, rm
, sf
);
3645 shift_reg_imm(tcg_rm
, tcg_rm
, sf
, shift_type
, imm6
);
3647 tcg_result
= tcg_temp_new_i64();
3651 tcg_gen_sub_i64(tcg_result
, tcg_rn
, tcg_rm
);
3653 tcg_gen_add_i64(tcg_result
, tcg_rn
, tcg_rm
);
3657 gen_sub_CC(sf
, tcg_result
, tcg_rn
, tcg_rm
);
3659 gen_add_CC(sf
, tcg_result
, tcg_rn
, tcg_rm
);
3664 tcg_gen_mov_i64(tcg_rd
, tcg_result
);
3666 tcg_gen_ext32u_i64(tcg_rd
, tcg_result
);
3669 tcg_temp_free_i64(tcg_result
);
3672 /* C3.5.9 Data-processing (3 source)
3674 31 30 29 28 24 23 21 20 16 15 14 10 9 5 4 0
3675 +--+------+-----------+------+------+----+------+------+------+
3676 |sf| op54 | 1 1 0 1 1 | op31 | Rm | o0 | Ra | Rn | Rd |
3677 +--+------+-----------+------+------+----+------+------+------+
3680 static void disas_data_proc_3src(DisasContext
*s
, uint32_t insn
)
3682 int rd
= extract32(insn
, 0, 5);
3683 int rn
= extract32(insn
, 5, 5);
3684 int ra
= extract32(insn
, 10, 5);
3685 int rm
= extract32(insn
, 16, 5);
3686 int op_id
= (extract32(insn
, 29, 3) << 4) |
3687 (extract32(insn
, 21, 3) << 1) |
3688 extract32(insn
, 15, 1);
3689 bool sf
= extract32(insn
, 31, 1);
3690 bool is_sub
= extract32(op_id
, 0, 1);
3691 bool is_high
= extract32(op_id
, 2, 1);
3692 bool is_signed
= false;
3697 /* Note that op_id is sf:op54:op31:o0 so it includes the 32/64 size flag */
3699 case 0x42: /* SMADDL */
3700 case 0x43: /* SMSUBL */
3701 case 0x44: /* SMULH */
3704 case 0x0: /* MADD (32bit) */
3705 case 0x1: /* MSUB (32bit) */
3706 case 0x40: /* MADD (64bit) */
3707 case 0x41: /* MSUB (64bit) */
3708 case 0x4a: /* UMADDL */
3709 case 0x4b: /* UMSUBL */
3710 case 0x4c: /* UMULH */
3713 unallocated_encoding(s
);
3718 TCGv_i64 low_bits
= tcg_temp_new_i64(); /* low bits discarded */
3719 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
3720 TCGv_i64 tcg_rn
= cpu_reg(s
, rn
);
3721 TCGv_i64 tcg_rm
= cpu_reg(s
, rm
);
3724 tcg_gen_muls2_i64(low_bits
, tcg_rd
, tcg_rn
, tcg_rm
);
3726 tcg_gen_mulu2_i64(low_bits
, tcg_rd
, tcg_rn
, tcg_rm
);
3729 tcg_temp_free_i64(low_bits
);
3733 tcg_op1
= tcg_temp_new_i64();
3734 tcg_op2
= tcg_temp_new_i64();
3735 tcg_tmp
= tcg_temp_new_i64();
3738 tcg_gen_mov_i64(tcg_op1
, cpu_reg(s
, rn
));
3739 tcg_gen_mov_i64(tcg_op2
, cpu_reg(s
, rm
));
3742 tcg_gen_ext32s_i64(tcg_op1
, cpu_reg(s
, rn
));
3743 tcg_gen_ext32s_i64(tcg_op2
, cpu_reg(s
, rm
));
3745 tcg_gen_ext32u_i64(tcg_op1
, cpu_reg(s
, rn
));
3746 tcg_gen_ext32u_i64(tcg_op2
, cpu_reg(s
, rm
));
3750 if (ra
== 31 && !is_sub
) {
3751 /* Special-case MADD with rA == XZR; it is the standard MUL alias */
3752 tcg_gen_mul_i64(cpu_reg(s
, rd
), tcg_op1
, tcg_op2
);
3754 tcg_gen_mul_i64(tcg_tmp
, tcg_op1
, tcg_op2
);
3756 tcg_gen_sub_i64(cpu_reg(s
, rd
), cpu_reg(s
, ra
), tcg_tmp
);
3758 tcg_gen_add_i64(cpu_reg(s
, rd
), cpu_reg(s
, ra
), tcg_tmp
);
3763 tcg_gen_ext32u_i64(cpu_reg(s
, rd
), cpu_reg(s
, rd
));
3766 tcg_temp_free_i64(tcg_op1
);
3767 tcg_temp_free_i64(tcg_op2
);
3768 tcg_temp_free_i64(tcg_tmp
);
3771 /* C3.5.3 - Add/subtract (with carry)
3772 * 31 30 29 28 27 26 25 24 23 22 21 20 16 15 10 9 5 4 0
3773 * +--+--+--+------------------------+------+---------+------+-----+
3774 * |sf|op| S| 1 1 0 1 0 0 0 0 | rm | opcode2 | Rn | Rd |
3775 * +--+--+--+------------------------+------+---------+------+-----+
3779 static void disas_adc_sbc(DisasContext
*s
, uint32_t insn
)
3781 unsigned int sf
, op
, setflags
, rm
, rn
, rd
;
3782 TCGv_i64 tcg_y
, tcg_rn
, tcg_rd
;
3784 if (extract32(insn
, 10, 6) != 0) {
3785 unallocated_encoding(s
);
3789 sf
= extract32(insn
, 31, 1);
3790 op
= extract32(insn
, 30, 1);
3791 setflags
= extract32(insn
, 29, 1);
3792 rm
= extract32(insn
, 16, 5);
3793 rn
= extract32(insn
, 5, 5);
3794 rd
= extract32(insn
, 0, 5);
3796 tcg_rd
= cpu_reg(s
, rd
);
3797 tcg_rn
= cpu_reg(s
, rn
);
3800 tcg_y
= new_tmp_a64(s
);
3801 tcg_gen_not_i64(tcg_y
, cpu_reg(s
, rm
));
3803 tcg_y
= cpu_reg(s
, rm
);
3807 gen_adc_CC(sf
, tcg_rd
, tcg_rn
, tcg_y
);
3809 gen_adc(sf
, tcg_rd
, tcg_rn
, tcg_y
);
3813 /* C3.5.4 - C3.5.5 Conditional compare (immediate / register)
3814 * 31 30 29 28 27 26 25 24 23 22 21 20 16 15 12 11 10 9 5 4 3 0
3815 * +--+--+--+------------------------+--------+------+----+--+------+--+-----+
3816 * |sf|op| S| 1 1 0 1 0 0 1 0 |imm5/rm | cond |i/r |o2| Rn |o3|nzcv |
3817 * +--+--+--+------------------------+--------+------+----+--+------+--+-----+
3820 static void disas_cc(DisasContext
*s
, uint32_t insn
)
3822 unsigned int sf
, op
, y
, cond
, rn
, nzcv
, is_imm
;
3823 TCGv_i32 tcg_t0
, tcg_t1
, tcg_t2
;
3824 TCGv_i64 tcg_tmp
, tcg_y
, tcg_rn
;
3827 if (!extract32(insn
, 29, 1)) {
3828 unallocated_encoding(s
);
3831 if (insn
& (1 << 10 | 1 << 4)) {
3832 unallocated_encoding(s
);
3835 sf
= extract32(insn
, 31, 1);
3836 op
= extract32(insn
, 30, 1);
3837 is_imm
= extract32(insn
, 11, 1);
3838 y
= extract32(insn
, 16, 5); /* y = rm (reg) or imm5 (imm) */
3839 cond
= extract32(insn
, 12, 4);
3840 rn
= extract32(insn
, 5, 5);
3841 nzcv
= extract32(insn
, 0, 4);
3843 /* Set T0 = !COND. */
3844 tcg_t0
= tcg_temp_new_i32();
3845 arm_test_cc(&c
, cond
);
3846 tcg_gen_setcondi_i32(tcg_invert_cond(c
.cond
), tcg_t0
, c
.value
, 0);
3849 /* Load the arguments for the new comparison. */
3851 tcg_y
= new_tmp_a64(s
);
3852 tcg_gen_movi_i64(tcg_y
, y
);
3854 tcg_y
= cpu_reg(s
, y
);
3856 tcg_rn
= cpu_reg(s
, rn
);
3858 /* Set the flags for the new comparison. */
3859 tcg_tmp
= tcg_temp_new_i64();
3861 gen_sub_CC(sf
, tcg_tmp
, tcg_rn
, tcg_y
);
3863 gen_add_CC(sf
, tcg_tmp
, tcg_rn
, tcg_y
);
3865 tcg_temp_free_i64(tcg_tmp
);
3867 /* If COND was false, force the flags to #nzcv. Compute two masks
3868 * to help with this: T1 = (COND ? 0 : -1), T2 = (COND ? -1 : 0).
3869 * For tcg hosts that support ANDC, we can make do with just T1.
3870 * In either case, allow the tcg optimizer to delete any unused mask.
3872 tcg_t1
= tcg_temp_new_i32();
3873 tcg_t2
= tcg_temp_new_i32();
3874 tcg_gen_neg_i32(tcg_t1
, tcg_t0
);
3875 tcg_gen_subi_i32(tcg_t2
, tcg_t0
, 1);
3877 if (nzcv
& 8) { /* N */
3878 tcg_gen_or_i32(cpu_NF
, cpu_NF
, tcg_t1
);
3880 if (TCG_TARGET_HAS_andc_i32
) {
3881 tcg_gen_andc_i32(cpu_NF
, cpu_NF
, tcg_t1
);
3883 tcg_gen_and_i32(cpu_NF
, cpu_NF
, tcg_t2
);
3886 if (nzcv
& 4) { /* Z */
3887 if (TCG_TARGET_HAS_andc_i32
) {
3888 tcg_gen_andc_i32(cpu_ZF
, cpu_ZF
, tcg_t1
);
3890 tcg_gen_and_i32(cpu_ZF
, cpu_ZF
, tcg_t2
);
3893 tcg_gen_or_i32(cpu_ZF
, cpu_ZF
, tcg_t0
);
3895 if (nzcv
& 2) { /* C */
3896 tcg_gen_or_i32(cpu_CF
, cpu_CF
, tcg_t0
);
3898 if (TCG_TARGET_HAS_andc_i32
) {
3899 tcg_gen_andc_i32(cpu_CF
, cpu_CF
, tcg_t1
);
3901 tcg_gen_and_i32(cpu_CF
, cpu_CF
, tcg_t2
);
3904 if (nzcv
& 1) { /* V */
3905 tcg_gen_or_i32(cpu_VF
, cpu_VF
, tcg_t1
);
3907 if (TCG_TARGET_HAS_andc_i32
) {
3908 tcg_gen_andc_i32(cpu_VF
, cpu_VF
, tcg_t1
);
3910 tcg_gen_and_i32(cpu_VF
, cpu_VF
, tcg_t2
);
3913 tcg_temp_free_i32(tcg_t0
);
3914 tcg_temp_free_i32(tcg_t1
);
3915 tcg_temp_free_i32(tcg_t2
);
3918 /* C3.5.6 Conditional select
3919 * 31 30 29 28 21 20 16 15 12 11 10 9 5 4 0
3920 * +----+----+---+-----------------+------+------+-----+------+------+
3921 * | sf | op | S | 1 1 0 1 0 1 0 0 | Rm | cond | op2 | Rn | Rd |
3922 * +----+----+---+-----------------+------+------+-----+------+------+
3924 static void disas_cond_select(DisasContext
*s
, uint32_t insn
)
3926 unsigned int sf
, else_inv
, rm
, cond
, else_inc
, rn
, rd
;
3927 TCGv_i64 tcg_rd
, zero
;
3930 if (extract32(insn
, 29, 1) || extract32(insn
, 11, 1)) {
3931 /* S == 1 or op2<1> == 1 */
3932 unallocated_encoding(s
);
3935 sf
= extract32(insn
, 31, 1);
3936 else_inv
= extract32(insn
, 30, 1);
3937 rm
= extract32(insn
, 16, 5);
3938 cond
= extract32(insn
, 12, 4);
3939 else_inc
= extract32(insn
, 10, 1);
3940 rn
= extract32(insn
, 5, 5);
3941 rd
= extract32(insn
, 0, 5);
3943 tcg_rd
= cpu_reg(s
, rd
);
3945 a64_test_cc(&c
, cond
);
3946 zero
= tcg_const_i64(0);
3948 if (rn
== 31 && rm
== 31 && (else_inc
^ else_inv
)) {
3950 tcg_gen_setcond_i64(tcg_invert_cond(c
.cond
), tcg_rd
, c
.value
, zero
);
3952 tcg_gen_neg_i64(tcg_rd
, tcg_rd
);
3955 TCGv_i64 t_true
= cpu_reg(s
, rn
);
3956 TCGv_i64 t_false
= read_cpu_reg(s
, rm
, 1);
3957 if (else_inv
&& else_inc
) {
3958 tcg_gen_neg_i64(t_false
, t_false
);
3959 } else if (else_inv
) {
3960 tcg_gen_not_i64(t_false
, t_false
);
3961 } else if (else_inc
) {
3962 tcg_gen_addi_i64(t_false
, t_false
, 1);
3964 tcg_gen_movcond_i64(c
.cond
, tcg_rd
, c
.value
, zero
, t_true
, t_false
);
3967 tcg_temp_free_i64(zero
);
3971 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
3975 static void handle_clz(DisasContext
*s
, unsigned int sf
,
3976 unsigned int rn
, unsigned int rd
)
3978 TCGv_i64 tcg_rd
, tcg_rn
;
3979 tcg_rd
= cpu_reg(s
, rd
);
3980 tcg_rn
= cpu_reg(s
, rn
);
3983 gen_helper_clz64(tcg_rd
, tcg_rn
);
3985 TCGv_i32 tcg_tmp32
= tcg_temp_new_i32();
3986 tcg_gen_extrl_i64_i32(tcg_tmp32
, tcg_rn
);
3987 gen_helper_clz(tcg_tmp32
, tcg_tmp32
);
3988 tcg_gen_extu_i32_i64(tcg_rd
, tcg_tmp32
);
3989 tcg_temp_free_i32(tcg_tmp32
);
3993 static void handle_cls(DisasContext
*s
, unsigned int sf
,
3994 unsigned int rn
, unsigned int rd
)
3996 TCGv_i64 tcg_rd
, tcg_rn
;
3997 tcg_rd
= cpu_reg(s
, rd
);
3998 tcg_rn
= cpu_reg(s
, rn
);
4001 gen_helper_cls64(tcg_rd
, tcg_rn
);
4003 TCGv_i32 tcg_tmp32
= tcg_temp_new_i32();
4004 tcg_gen_extrl_i64_i32(tcg_tmp32
, tcg_rn
);
4005 gen_helper_cls32(tcg_tmp32
, tcg_tmp32
);
4006 tcg_gen_extu_i32_i64(tcg_rd
, tcg_tmp32
);
4007 tcg_temp_free_i32(tcg_tmp32
);
4011 static void handle_rbit(DisasContext
*s
, unsigned int sf
,
4012 unsigned int rn
, unsigned int rd
)
4014 TCGv_i64 tcg_rd
, tcg_rn
;
4015 tcg_rd
= cpu_reg(s
, rd
);
4016 tcg_rn
= cpu_reg(s
, rn
);
4019 gen_helper_rbit64(tcg_rd
, tcg_rn
);
4021 TCGv_i32 tcg_tmp32
= tcg_temp_new_i32();
4022 tcg_gen_extrl_i64_i32(tcg_tmp32
, tcg_rn
);
4023 gen_helper_rbit(tcg_tmp32
, tcg_tmp32
);
4024 tcg_gen_extu_i32_i64(tcg_rd
, tcg_tmp32
);
4025 tcg_temp_free_i32(tcg_tmp32
);
4029 /* C5.6.149 REV with sf==1, opcode==3 ("REV64") */
4030 static void handle_rev64(DisasContext
*s
, unsigned int sf
,
4031 unsigned int rn
, unsigned int rd
)
4034 unallocated_encoding(s
);
4037 tcg_gen_bswap64_i64(cpu_reg(s
, rd
), cpu_reg(s
, rn
));
4040 /* C5.6.149 REV with sf==0, opcode==2
4041 * C5.6.151 REV32 (sf==1, opcode==2)
4043 static void handle_rev32(DisasContext
*s
, unsigned int sf
,
4044 unsigned int rn
, unsigned int rd
)
4046 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
4049 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
4050 TCGv_i64 tcg_rn
= read_cpu_reg(s
, rn
, sf
);
4052 /* bswap32_i64 requires zero high word */
4053 tcg_gen_ext32u_i64(tcg_tmp
, tcg_rn
);
4054 tcg_gen_bswap32_i64(tcg_rd
, tcg_tmp
);
4055 tcg_gen_shri_i64(tcg_tmp
, tcg_rn
, 32);
4056 tcg_gen_bswap32_i64(tcg_tmp
, tcg_tmp
);
4057 tcg_gen_concat32_i64(tcg_rd
, tcg_rd
, tcg_tmp
);
4059 tcg_temp_free_i64(tcg_tmp
);
4061 tcg_gen_ext32u_i64(tcg_rd
, cpu_reg(s
, rn
));
4062 tcg_gen_bswap32_i64(tcg_rd
, tcg_rd
);
4066 /* C5.6.150 REV16 (opcode==1) */
4067 static void handle_rev16(DisasContext
*s
, unsigned int sf
,
4068 unsigned int rn
, unsigned int rd
)
4070 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
4071 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
4072 TCGv_i64 tcg_rn
= read_cpu_reg(s
, rn
, sf
);
4074 tcg_gen_andi_i64(tcg_tmp
, tcg_rn
, 0xffff);
4075 tcg_gen_bswap16_i64(tcg_rd
, tcg_tmp
);
4077 tcg_gen_shri_i64(tcg_tmp
, tcg_rn
, 16);
4078 tcg_gen_andi_i64(tcg_tmp
, tcg_tmp
, 0xffff);
4079 tcg_gen_bswap16_i64(tcg_tmp
, tcg_tmp
);
4080 tcg_gen_deposit_i64(tcg_rd
, tcg_rd
, tcg_tmp
, 16, 16);
4083 tcg_gen_shri_i64(tcg_tmp
, tcg_rn
, 32);
4084 tcg_gen_andi_i64(tcg_tmp
, tcg_tmp
, 0xffff);
4085 tcg_gen_bswap16_i64(tcg_tmp
, tcg_tmp
);
4086 tcg_gen_deposit_i64(tcg_rd
, tcg_rd
, tcg_tmp
, 32, 16);
4088 tcg_gen_shri_i64(tcg_tmp
, tcg_rn
, 48);
4089 tcg_gen_bswap16_i64(tcg_tmp
, tcg_tmp
);
4090 tcg_gen_deposit_i64(tcg_rd
, tcg_rd
, tcg_tmp
, 48, 16);
4093 tcg_temp_free_i64(tcg_tmp
);
4096 /* C3.5.7 Data-processing (1 source)
4097 * 31 30 29 28 21 20 16 15 10 9 5 4 0
4098 * +----+---+---+-----------------+---------+--------+------+------+
4099 * | sf | 1 | S | 1 1 0 1 0 1 1 0 | opcode2 | opcode | Rn | Rd |
4100 * +----+---+---+-----------------+---------+--------+------+------+
4102 static void disas_data_proc_1src(DisasContext
*s
, uint32_t insn
)
4104 unsigned int sf
, opcode
, rn
, rd
;
4106 if (extract32(insn
, 29, 1) || extract32(insn
, 16, 5)) {
4107 unallocated_encoding(s
);
4111 sf
= extract32(insn
, 31, 1);
4112 opcode
= extract32(insn
, 10, 6);
4113 rn
= extract32(insn
, 5, 5);
4114 rd
= extract32(insn
, 0, 5);
4118 handle_rbit(s
, sf
, rn
, rd
);
4121 handle_rev16(s
, sf
, rn
, rd
);
4124 handle_rev32(s
, sf
, rn
, rd
);
4127 handle_rev64(s
, sf
, rn
, rd
);
4130 handle_clz(s
, sf
, rn
, rd
);
4133 handle_cls(s
, sf
, rn
, rd
);
4138 static void handle_div(DisasContext
*s
, bool is_signed
, unsigned int sf
,
4139 unsigned int rm
, unsigned int rn
, unsigned int rd
)
4141 TCGv_i64 tcg_n
, tcg_m
, tcg_rd
;
4142 tcg_rd
= cpu_reg(s
, rd
);
4144 if (!sf
&& is_signed
) {
4145 tcg_n
= new_tmp_a64(s
);
4146 tcg_m
= new_tmp_a64(s
);
4147 tcg_gen_ext32s_i64(tcg_n
, cpu_reg(s
, rn
));
4148 tcg_gen_ext32s_i64(tcg_m
, cpu_reg(s
, rm
));
4150 tcg_n
= read_cpu_reg(s
, rn
, sf
);
4151 tcg_m
= read_cpu_reg(s
, rm
, sf
);
4155 gen_helper_sdiv64(tcg_rd
, tcg_n
, tcg_m
);
4157 gen_helper_udiv64(tcg_rd
, tcg_n
, tcg_m
);
4160 if (!sf
) { /* zero extend final result */
4161 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
4165 /* C5.6.115 LSLV, C5.6.118 LSRV, C5.6.17 ASRV, C5.6.154 RORV */
4166 static void handle_shift_reg(DisasContext
*s
,
4167 enum a64_shift_type shift_type
, unsigned int sf
,
4168 unsigned int rm
, unsigned int rn
, unsigned int rd
)
4170 TCGv_i64 tcg_shift
= tcg_temp_new_i64();
4171 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
4172 TCGv_i64 tcg_rn
= read_cpu_reg(s
, rn
, sf
);
4174 tcg_gen_andi_i64(tcg_shift
, cpu_reg(s
, rm
), sf
? 63 : 31);
4175 shift_reg(tcg_rd
, tcg_rn
, sf
, shift_type
, tcg_shift
);
4176 tcg_temp_free_i64(tcg_shift
);
4179 /* CRC32[BHWX], CRC32C[BHWX] */
4180 static void handle_crc32(DisasContext
*s
,
4181 unsigned int sf
, unsigned int sz
, bool crc32c
,
4182 unsigned int rm
, unsigned int rn
, unsigned int rd
)
4184 TCGv_i64 tcg_acc
, tcg_val
;
4187 if (!arm_dc_feature(s
, ARM_FEATURE_CRC
)
4188 || (sf
== 1 && sz
!= 3)
4189 || (sf
== 0 && sz
== 3)) {
4190 unallocated_encoding(s
);
4195 tcg_val
= cpu_reg(s
, rm
);
4209 g_assert_not_reached();
4211 tcg_val
= new_tmp_a64(s
);
4212 tcg_gen_andi_i64(tcg_val
, cpu_reg(s
, rm
), mask
);
4215 tcg_acc
= cpu_reg(s
, rn
);
4216 tcg_bytes
= tcg_const_i32(1 << sz
);
4219 gen_helper_crc32c_64(cpu_reg(s
, rd
), tcg_acc
, tcg_val
, tcg_bytes
);
4221 gen_helper_crc32_64(cpu_reg(s
, rd
), tcg_acc
, tcg_val
, tcg_bytes
);
4224 tcg_temp_free_i32(tcg_bytes
);
4227 /* C3.5.8 Data-processing (2 source)
4228 * 31 30 29 28 21 20 16 15 10 9 5 4 0
4229 * +----+---+---+-----------------+------+--------+------+------+
4230 * | sf | 0 | S | 1 1 0 1 0 1 1 0 | Rm | opcode | Rn | Rd |
4231 * +----+---+---+-----------------+------+--------+------+------+
4233 static void disas_data_proc_2src(DisasContext
*s
, uint32_t insn
)
4235 unsigned int sf
, rm
, opcode
, rn
, rd
;
4236 sf
= extract32(insn
, 31, 1);
4237 rm
= extract32(insn
, 16, 5);
4238 opcode
= extract32(insn
, 10, 6);
4239 rn
= extract32(insn
, 5, 5);
4240 rd
= extract32(insn
, 0, 5);
4242 if (extract32(insn
, 29, 1)) {
4243 unallocated_encoding(s
);
4249 handle_div(s
, false, sf
, rm
, rn
, rd
);
4252 handle_div(s
, true, sf
, rm
, rn
, rd
);
4255 handle_shift_reg(s
, A64_SHIFT_TYPE_LSL
, sf
, rm
, rn
, rd
);
4258 handle_shift_reg(s
, A64_SHIFT_TYPE_LSR
, sf
, rm
, rn
, rd
);
4261 handle_shift_reg(s
, A64_SHIFT_TYPE_ASR
, sf
, rm
, rn
, rd
);
4264 handle_shift_reg(s
, A64_SHIFT_TYPE_ROR
, sf
, rm
, rn
, rd
);
4273 case 23: /* CRC32 */
4275 int sz
= extract32(opcode
, 0, 2);
4276 bool crc32c
= extract32(opcode
, 2, 1);
4277 handle_crc32(s
, sf
, sz
, crc32c
, rm
, rn
, rd
);
4281 unallocated_encoding(s
);
4286 /* C3.5 Data processing - register */
4287 static void disas_data_proc_reg(DisasContext
*s
, uint32_t insn
)
4289 switch (extract32(insn
, 24, 5)) {
4290 case 0x0a: /* Logical (shifted register) */
4291 disas_logic_reg(s
, insn
);
4293 case 0x0b: /* Add/subtract */
4294 if (insn
& (1 << 21)) { /* (extended register) */
4295 disas_add_sub_ext_reg(s
, insn
);
4297 disas_add_sub_reg(s
, insn
);
4300 case 0x1b: /* Data-processing (3 source) */
4301 disas_data_proc_3src(s
, insn
);
4304 switch (extract32(insn
, 21, 3)) {
4305 case 0x0: /* Add/subtract (with carry) */
4306 disas_adc_sbc(s
, insn
);
4308 case 0x2: /* Conditional compare */
4309 disas_cc(s
, insn
); /* both imm and reg forms */
4311 case 0x4: /* Conditional select */
4312 disas_cond_select(s
, insn
);
4314 case 0x6: /* Data-processing */
4315 if (insn
& (1 << 30)) { /* (1 source) */
4316 disas_data_proc_1src(s
, insn
);
4317 } else { /* (2 source) */
4318 disas_data_proc_2src(s
, insn
);
4322 unallocated_encoding(s
);
4327 unallocated_encoding(s
);
4332 static void handle_fp_compare(DisasContext
*s
, bool is_double
,
4333 unsigned int rn
, unsigned int rm
,
4334 bool cmp_with_zero
, bool signal_all_nans
)
4336 TCGv_i64 tcg_flags
= tcg_temp_new_i64();
4337 TCGv_ptr fpst
= get_fpstatus_ptr();
4340 TCGv_i64 tcg_vn
, tcg_vm
;
4342 tcg_vn
= read_fp_dreg(s
, rn
);
4343 if (cmp_with_zero
) {
4344 tcg_vm
= tcg_const_i64(0);
4346 tcg_vm
= read_fp_dreg(s
, rm
);
4348 if (signal_all_nans
) {
4349 gen_helper_vfp_cmped_a64(tcg_flags
, tcg_vn
, tcg_vm
, fpst
);
4351 gen_helper_vfp_cmpd_a64(tcg_flags
, tcg_vn
, tcg_vm
, fpst
);
4353 tcg_temp_free_i64(tcg_vn
);
4354 tcg_temp_free_i64(tcg_vm
);
4356 TCGv_i32 tcg_vn
, tcg_vm
;
4358 tcg_vn
= read_fp_sreg(s
, rn
);
4359 if (cmp_with_zero
) {
4360 tcg_vm
= tcg_const_i32(0);
4362 tcg_vm
= read_fp_sreg(s
, rm
);
4364 if (signal_all_nans
) {
4365 gen_helper_vfp_cmpes_a64(tcg_flags
, tcg_vn
, tcg_vm
, fpst
);
4367 gen_helper_vfp_cmps_a64(tcg_flags
, tcg_vn
, tcg_vm
, fpst
);
4369 tcg_temp_free_i32(tcg_vn
);
4370 tcg_temp_free_i32(tcg_vm
);
4373 tcg_temp_free_ptr(fpst
);
4375 gen_set_nzcv(tcg_flags
);
4377 tcg_temp_free_i64(tcg_flags
);
4380 /* C3.6.22 Floating point compare
4381 * 31 30 29 28 24 23 22 21 20 16 15 14 13 10 9 5 4 0
4382 * +---+---+---+-----------+------+---+------+-----+---------+------+-------+
4383 * | M | 0 | S | 1 1 1 1 0 | type | 1 | Rm | op | 1 0 0 0 | Rn | op2 |
4384 * +---+---+---+-----------+------+---+------+-----+---------+------+-------+
4386 static void disas_fp_compare(DisasContext
*s
, uint32_t insn
)
4388 unsigned int mos
, type
, rm
, op
, rn
, opc
, op2r
;
4390 mos
= extract32(insn
, 29, 3);
4391 type
= extract32(insn
, 22, 2); /* 0 = single, 1 = double */
4392 rm
= extract32(insn
, 16, 5);
4393 op
= extract32(insn
, 14, 2);
4394 rn
= extract32(insn
, 5, 5);
4395 opc
= extract32(insn
, 3, 2);
4396 op2r
= extract32(insn
, 0, 3);
4398 if (mos
|| op
|| op2r
|| type
> 1) {
4399 unallocated_encoding(s
);
4403 if (!fp_access_check(s
)) {
4407 handle_fp_compare(s
, type
, rn
, rm
, opc
& 1, opc
& 2);
4410 /* C3.6.23 Floating point conditional compare
4411 * 31 30 29 28 24 23 22 21 20 16 15 12 11 10 9 5 4 3 0
4412 * +---+---+---+-----------+------+---+------+------+-----+------+----+------+
4413 * | M | 0 | S | 1 1 1 1 0 | type | 1 | Rm | cond | 0 1 | Rn | op | nzcv |
4414 * +---+---+---+-----------+------+---+------+------+-----+------+----+------+
4416 static void disas_fp_ccomp(DisasContext
*s
, uint32_t insn
)
4418 unsigned int mos
, type
, rm
, cond
, rn
, op
, nzcv
;
4420 TCGLabel
*label_continue
= NULL
;
4422 mos
= extract32(insn
, 29, 3);
4423 type
= extract32(insn
, 22, 2); /* 0 = single, 1 = double */
4424 rm
= extract32(insn
, 16, 5);
4425 cond
= extract32(insn
, 12, 4);
4426 rn
= extract32(insn
, 5, 5);
4427 op
= extract32(insn
, 4, 1);
4428 nzcv
= extract32(insn
, 0, 4);
4430 if (mos
|| type
> 1) {
4431 unallocated_encoding(s
);
4435 if (!fp_access_check(s
)) {
4439 if (cond
< 0x0e) { /* not always */
4440 TCGLabel
*label_match
= gen_new_label();
4441 label_continue
= gen_new_label();
4442 arm_gen_test_cc(cond
, label_match
);
4444 tcg_flags
= tcg_const_i64(nzcv
<< 28);
4445 gen_set_nzcv(tcg_flags
);
4446 tcg_temp_free_i64(tcg_flags
);
4447 tcg_gen_br(label_continue
);
4448 gen_set_label(label_match
);
4451 handle_fp_compare(s
, type
, rn
, rm
, false, op
);
4454 gen_set_label(label_continue
);
4458 /* C3.6.24 Floating point conditional select
4459 * 31 30 29 28 24 23 22 21 20 16 15 12 11 10 9 5 4 0
4460 * +---+---+---+-----------+------+---+------+------+-----+------+------+
4461 * | M | 0 | S | 1 1 1 1 0 | type | 1 | Rm | cond | 1 1 | Rn | Rd |
4462 * +---+---+---+-----------+------+---+------+------+-----+------+------+
4464 static void disas_fp_csel(DisasContext
*s
, uint32_t insn
)
4466 unsigned int mos
, type
, rm
, cond
, rn
, rd
;
4467 TCGv_i64 t_true
, t_false
, t_zero
;
4470 mos
= extract32(insn
, 29, 3);
4471 type
= extract32(insn
, 22, 2); /* 0 = single, 1 = double */
4472 rm
= extract32(insn
, 16, 5);
4473 cond
= extract32(insn
, 12, 4);
4474 rn
= extract32(insn
, 5, 5);
4475 rd
= extract32(insn
, 0, 5);
4477 if (mos
|| type
> 1) {
4478 unallocated_encoding(s
);
4482 if (!fp_access_check(s
)) {
4486 /* Zero extend sreg inputs to 64 bits now. */
4487 t_true
= tcg_temp_new_i64();
4488 t_false
= tcg_temp_new_i64();
4489 read_vec_element(s
, t_true
, rn
, 0, type
? MO_64
: MO_32
);
4490 read_vec_element(s
, t_false
, rm
, 0, type
? MO_64
: MO_32
);
4492 a64_test_cc(&c
, cond
);
4493 t_zero
= tcg_const_i64(0);
4494 tcg_gen_movcond_i64(c
.cond
, t_true
, c
.value
, t_zero
, t_true
, t_false
);
4495 tcg_temp_free_i64(t_zero
);
4496 tcg_temp_free_i64(t_false
);
4499 /* Note that sregs write back zeros to the high bits,
4500 and we've already done the zero-extension. */
4501 write_fp_dreg(s
, rd
, t_true
);
4502 tcg_temp_free_i64(t_true
);
4505 /* C3.6.25 Floating-point data-processing (1 source) - single precision */
4506 static void handle_fp_1src_single(DisasContext
*s
, int opcode
, int rd
, int rn
)
4512 fpst
= get_fpstatus_ptr();
4513 tcg_op
= read_fp_sreg(s
, rn
);
4514 tcg_res
= tcg_temp_new_i32();
4517 case 0x0: /* FMOV */
4518 tcg_gen_mov_i32(tcg_res
, tcg_op
);
4520 case 0x1: /* FABS */
4521 gen_helper_vfp_abss(tcg_res
, tcg_op
);
4523 case 0x2: /* FNEG */
4524 gen_helper_vfp_negs(tcg_res
, tcg_op
);
4526 case 0x3: /* FSQRT */
4527 gen_helper_vfp_sqrts(tcg_res
, tcg_op
, cpu_env
);
4529 case 0x8: /* FRINTN */
4530 case 0x9: /* FRINTP */
4531 case 0xa: /* FRINTM */
4532 case 0xb: /* FRINTZ */
4533 case 0xc: /* FRINTA */
4535 TCGv_i32 tcg_rmode
= tcg_const_i32(arm_rmode_to_sf(opcode
& 7));
4537 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
4538 gen_helper_rints(tcg_res
, tcg_op
, fpst
);
4540 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
4541 tcg_temp_free_i32(tcg_rmode
);
4544 case 0xe: /* FRINTX */
4545 gen_helper_rints_exact(tcg_res
, tcg_op
, fpst
);
4547 case 0xf: /* FRINTI */
4548 gen_helper_rints(tcg_res
, tcg_op
, fpst
);
4554 write_fp_sreg(s
, rd
, tcg_res
);
4556 tcg_temp_free_ptr(fpst
);
4557 tcg_temp_free_i32(tcg_op
);
4558 tcg_temp_free_i32(tcg_res
);
4561 /* C3.6.25 Floating-point data-processing (1 source) - double precision */
4562 static void handle_fp_1src_double(DisasContext
*s
, int opcode
, int rd
, int rn
)
4568 fpst
= get_fpstatus_ptr();
4569 tcg_op
= read_fp_dreg(s
, rn
);
4570 tcg_res
= tcg_temp_new_i64();
4573 case 0x0: /* FMOV */
4574 tcg_gen_mov_i64(tcg_res
, tcg_op
);
4576 case 0x1: /* FABS */
4577 gen_helper_vfp_absd(tcg_res
, tcg_op
);
4579 case 0x2: /* FNEG */
4580 gen_helper_vfp_negd(tcg_res
, tcg_op
);
4582 case 0x3: /* FSQRT */
4583 gen_helper_vfp_sqrtd(tcg_res
, tcg_op
, cpu_env
);
4585 case 0x8: /* FRINTN */
4586 case 0x9: /* FRINTP */
4587 case 0xa: /* FRINTM */
4588 case 0xb: /* FRINTZ */
4589 case 0xc: /* FRINTA */
4591 TCGv_i32 tcg_rmode
= tcg_const_i32(arm_rmode_to_sf(opcode
& 7));
4593 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
4594 gen_helper_rintd(tcg_res
, tcg_op
, fpst
);
4596 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
4597 tcg_temp_free_i32(tcg_rmode
);
4600 case 0xe: /* FRINTX */
4601 gen_helper_rintd_exact(tcg_res
, tcg_op
, fpst
);
4603 case 0xf: /* FRINTI */
4604 gen_helper_rintd(tcg_res
, tcg_op
, fpst
);
4610 write_fp_dreg(s
, rd
, tcg_res
);
4612 tcg_temp_free_ptr(fpst
);
4613 tcg_temp_free_i64(tcg_op
);
4614 tcg_temp_free_i64(tcg_res
);
4617 static void handle_fp_fcvt(DisasContext
*s
, int opcode
,
4618 int rd
, int rn
, int dtype
, int ntype
)
4623 TCGv_i32 tcg_rn
= read_fp_sreg(s
, rn
);
4625 /* Single to double */
4626 TCGv_i64 tcg_rd
= tcg_temp_new_i64();
4627 gen_helper_vfp_fcvtds(tcg_rd
, tcg_rn
, cpu_env
);
4628 write_fp_dreg(s
, rd
, tcg_rd
);
4629 tcg_temp_free_i64(tcg_rd
);
4631 /* Single to half */
4632 TCGv_i32 tcg_rd
= tcg_temp_new_i32();
4633 gen_helper_vfp_fcvt_f32_to_f16(tcg_rd
, tcg_rn
, cpu_env
);
4634 /* write_fp_sreg is OK here because top half of tcg_rd is zero */
4635 write_fp_sreg(s
, rd
, tcg_rd
);
4636 tcg_temp_free_i32(tcg_rd
);
4638 tcg_temp_free_i32(tcg_rn
);
4643 TCGv_i64 tcg_rn
= read_fp_dreg(s
, rn
);
4644 TCGv_i32 tcg_rd
= tcg_temp_new_i32();
4646 /* Double to single */
4647 gen_helper_vfp_fcvtsd(tcg_rd
, tcg_rn
, cpu_env
);
4649 /* Double to half */
4650 gen_helper_vfp_fcvt_f64_to_f16(tcg_rd
, tcg_rn
, cpu_env
);
4651 /* write_fp_sreg is OK here because top half of tcg_rd is zero */
4653 write_fp_sreg(s
, rd
, tcg_rd
);
4654 tcg_temp_free_i32(tcg_rd
);
4655 tcg_temp_free_i64(tcg_rn
);
4660 TCGv_i32 tcg_rn
= read_fp_sreg(s
, rn
);
4661 tcg_gen_ext16u_i32(tcg_rn
, tcg_rn
);
4663 /* Half to single */
4664 TCGv_i32 tcg_rd
= tcg_temp_new_i32();
4665 gen_helper_vfp_fcvt_f16_to_f32(tcg_rd
, tcg_rn
, cpu_env
);
4666 write_fp_sreg(s
, rd
, tcg_rd
);
4667 tcg_temp_free_i32(tcg_rd
);
4669 /* Half to double */
4670 TCGv_i64 tcg_rd
= tcg_temp_new_i64();
4671 gen_helper_vfp_fcvt_f16_to_f64(tcg_rd
, tcg_rn
, cpu_env
);
4672 write_fp_dreg(s
, rd
, tcg_rd
);
4673 tcg_temp_free_i64(tcg_rd
);
4675 tcg_temp_free_i32(tcg_rn
);
4683 /* C3.6.25 Floating point data-processing (1 source)
4684 * 31 30 29 28 24 23 22 21 20 15 14 10 9 5 4 0
4685 * +---+---+---+-----------+------+---+--------+-----------+------+------+
4686 * | M | 0 | S | 1 1 1 1 0 | type | 1 | opcode | 1 0 0 0 0 | Rn | Rd |
4687 * +---+---+---+-----------+------+---+--------+-----------+------+------+
4689 static void disas_fp_1src(DisasContext
*s
, uint32_t insn
)
4691 int type
= extract32(insn
, 22, 2);
4692 int opcode
= extract32(insn
, 15, 6);
4693 int rn
= extract32(insn
, 5, 5);
4694 int rd
= extract32(insn
, 0, 5);
4697 case 0x4: case 0x5: case 0x7:
4699 /* FCVT between half, single and double precision */
4700 int dtype
= extract32(opcode
, 0, 2);
4701 if (type
== 2 || dtype
== type
) {
4702 unallocated_encoding(s
);
4705 if (!fp_access_check(s
)) {
4709 handle_fp_fcvt(s
, opcode
, rd
, rn
, dtype
, type
);
4715 /* 32-to-32 and 64-to-64 ops */
4718 if (!fp_access_check(s
)) {
4722 handle_fp_1src_single(s
, opcode
, rd
, rn
);
4725 if (!fp_access_check(s
)) {
4729 handle_fp_1src_double(s
, opcode
, rd
, rn
);
4732 unallocated_encoding(s
);
4736 unallocated_encoding(s
);
4741 /* C3.6.26 Floating-point data-processing (2 source) - single precision */
4742 static void handle_fp_2src_single(DisasContext
*s
, int opcode
,
4743 int rd
, int rn
, int rm
)
4750 tcg_res
= tcg_temp_new_i32();
4751 fpst
= get_fpstatus_ptr();
4752 tcg_op1
= read_fp_sreg(s
, rn
);
4753 tcg_op2
= read_fp_sreg(s
, rm
);
4756 case 0x0: /* FMUL */
4757 gen_helper_vfp_muls(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4759 case 0x1: /* FDIV */
4760 gen_helper_vfp_divs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4762 case 0x2: /* FADD */
4763 gen_helper_vfp_adds(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4765 case 0x3: /* FSUB */
4766 gen_helper_vfp_subs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4768 case 0x4: /* FMAX */
4769 gen_helper_vfp_maxs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4771 case 0x5: /* FMIN */
4772 gen_helper_vfp_mins(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4774 case 0x6: /* FMAXNM */
4775 gen_helper_vfp_maxnums(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4777 case 0x7: /* FMINNM */
4778 gen_helper_vfp_minnums(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4780 case 0x8: /* FNMUL */
4781 gen_helper_vfp_muls(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4782 gen_helper_vfp_negs(tcg_res
, tcg_res
);
4786 write_fp_sreg(s
, rd
, tcg_res
);
4788 tcg_temp_free_ptr(fpst
);
4789 tcg_temp_free_i32(tcg_op1
);
4790 tcg_temp_free_i32(tcg_op2
);
4791 tcg_temp_free_i32(tcg_res
);
4794 /* C3.6.26 Floating-point data-processing (2 source) - double precision */
4795 static void handle_fp_2src_double(DisasContext
*s
, int opcode
,
4796 int rd
, int rn
, int rm
)
4803 tcg_res
= tcg_temp_new_i64();
4804 fpst
= get_fpstatus_ptr();
4805 tcg_op1
= read_fp_dreg(s
, rn
);
4806 tcg_op2
= read_fp_dreg(s
, rm
);
4809 case 0x0: /* FMUL */
4810 gen_helper_vfp_muld(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4812 case 0x1: /* FDIV */
4813 gen_helper_vfp_divd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4815 case 0x2: /* FADD */
4816 gen_helper_vfp_addd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4818 case 0x3: /* FSUB */
4819 gen_helper_vfp_subd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4821 case 0x4: /* FMAX */
4822 gen_helper_vfp_maxd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4824 case 0x5: /* FMIN */
4825 gen_helper_vfp_mind(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4827 case 0x6: /* FMAXNM */
4828 gen_helper_vfp_maxnumd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4830 case 0x7: /* FMINNM */
4831 gen_helper_vfp_minnumd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4833 case 0x8: /* FNMUL */
4834 gen_helper_vfp_muld(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
4835 gen_helper_vfp_negd(tcg_res
, tcg_res
);
4839 write_fp_dreg(s
, rd
, tcg_res
);
4841 tcg_temp_free_ptr(fpst
);
4842 tcg_temp_free_i64(tcg_op1
);
4843 tcg_temp_free_i64(tcg_op2
);
4844 tcg_temp_free_i64(tcg_res
);
4847 /* C3.6.26 Floating point data-processing (2 source)
4848 * 31 30 29 28 24 23 22 21 20 16 15 12 11 10 9 5 4 0
4849 * +---+---+---+-----------+------+---+------+--------+-----+------+------+
4850 * | M | 0 | S | 1 1 1 1 0 | type | 1 | Rm | opcode | 1 0 | Rn | Rd |
4851 * +---+---+---+-----------+------+---+------+--------+-----+------+------+
4853 static void disas_fp_2src(DisasContext
*s
, uint32_t insn
)
4855 int type
= extract32(insn
, 22, 2);
4856 int rd
= extract32(insn
, 0, 5);
4857 int rn
= extract32(insn
, 5, 5);
4858 int rm
= extract32(insn
, 16, 5);
4859 int opcode
= extract32(insn
, 12, 4);
4862 unallocated_encoding(s
);
4868 if (!fp_access_check(s
)) {
4871 handle_fp_2src_single(s
, opcode
, rd
, rn
, rm
);
4874 if (!fp_access_check(s
)) {
4877 handle_fp_2src_double(s
, opcode
, rd
, rn
, rm
);
4880 unallocated_encoding(s
);
4884 /* C3.6.27 Floating-point data-processing (3 source) - single precision */
4885 static void handle_fp_3src_single(DisasContext
*s
, bool o0
, bool o1
,
4886 int rd
, int rn
, int rm
, int ra
)
4888 TCGv_i32 tcg_op1
, tcg_op2
, tcg_op3
;
4889 TCGv_i32 tcg_res
= tcg_temp_new_i32();
4890 TCGv_ptr fpst
= get_fpstatus_ptr();
4892 tcg_op1
= read_fp_sreg(s
, rn
);
4893 tcg_op2
= read_fp_sreg(s
, rm
);
4894 tcg_op3
= read_fp_sreg(s
, ra
);
4896 /* These are fused multiply-add, and must be done as one
4897 * floating point operation with no rounding between the
4898 * multiplication and addition steps.
4899 * NB that doing the negations here as separate steps is
4900 * correct : an input NaN should come out with its sign bit
4901 * flipped if it is a negated-input.
4904 gen_helper_vfp_negs(tcg_op3
, tcg_op3
);
4908 gen_helper_vfp_negs(tcg_op1
, tcg_op1
);
4911 gen_helper_vfp_muladds(tcg_res
, tcg_op1
, tcg_op2
, tcg_op3
, fpst
);
4913 write_fp_sreg(s
, rd
, tcg_res
);
4915 tcg_temp_free_ptr(fpst
);
4916 tcg_temp_free_i32(tcg_op1
);
4917 tcg_temp_free_i32(tcg_op2
);
4918 tcg_temp_free_i32(tcg_op3
);
4919 tcg_temp_free_i32(tcg_res
);
4922 /* C3.6.27 Floating-point data-processing (3 source) - double precision */
4923 static void handle_fp_3src_double(DisasContext
*s
, bool o0
, bool o1
,
4924 int rd
, int rn
, int rm
, int ra
)
4926 TCGv_i64 tcg_op1
, tcg_op2
, tcg_op3
;
4927 TCGv_i64 tcg_res
= tcg_temp_new_i64();
4928 TCGv_ptr fpst
= get_fpstatus_ptr();
4930 tcg_op1
= read_fp_dreg(s
, rn
);
4931 tcg_op2
= read_fp_dreg(s
, rm
);
4932 tcg_op3
= read_fp_dreg(s
, ra
);
4934 /* These are fused multiply-add, and must be done as one
4935 * floating point operation with no rounding between the
4936 * multiplication and addition steps.
4937 * NB that doing the negations here as separate steps is
4938 * correct : an input NaN should come out with its sign bit
4939 * flipped if it is a negated-input.
4942 gen_helper_vfp_negd(tcg_op3
, tcg_op3
);
4946 gen_helper_vfp_negd(tcg_op1
, tcg_op1
);
4949 gen_helper_vfp_muladdd(tcg_res
, tcg_op1
, tcg_op2
, tcg_op3
, fpst
);
4951 write_fp_dreg(s
, rd
, tcg_res
);
4953 tcg_temp_free_ptr(fpst
);
4954 tcg_temp_free_i64(tcg_op1
);
4955 tcg_temp_free_i64(tcg_op2
);
4956 tcg_temp_free_i64(tcg_op3
);
4957 tcg_temp_free_i64(tcg_res
);
4960 /* C3.6.27 Floating point data-processing (3 source)
4961 * 31 30 29 28 24 23 22 21 20 16 15 14 10 9 5 4 0
4962 * +---+---+---+-----------+------+----+------+----+------+------+------+
4963 * | M | 0 | S | 1 1 1 1 1 | type | o1 | Rm | o0 | Ra | Rn | Rd |
4964 * +---+---+---+-----------+------+----+------+----+------+------+------+
4966 static void disas_fp_3src(DisasContext
*s
, uint32_t insn
)
4968 int type
= extract32(insn
, 22, 2);
4969 int rd
= extract32(insn
, 0, 5);
4970 int rn
= extract32(insn
, 5, 5);
4971 int ra
= extract32(insn
, 10, 5);
4972 int rm
= extract32(insn
, 16, 5);
4973 bool o0
= extract32(insn
, 15, 1);
4974 bool o1
= extract32(insn
, 21, 1);
4978 if (!fp_access_check(s
)) {
4981 handle_fp_3src_single(s
, o0
, o1
, rd
, rn
, rm
, ra
);
4984 if (!fp_access_check(s
)) {
4987 handle_fp_3src_double(s
, o0
, o1
, rd
, rn
, rm
, ra
);
4990 unallocated_encoding(s
);
4994 /* C3.6.28 Floating point immediate
4995 * 31 30 29 28 24 23 22 21 20 13 12 10 9 5 4 0
4996 * +---+---+---+-----------+------+---+------------+-------+------+------+
4997 * | M | 0 | S | 1 1 1 1 0 | type | 1 | imm8 | 1 0 0 | imm5 | Rd |
4998 * +---+---+---+-----------+------+---+------------+-------+------+------+
5000 static void disas_fp_imm(DisasContext
*s
, uint32_t insn
)
5002 int rd
= extract32(insn
, 0, 5);
5003 int imm8
= extract32(insn
, 13, 8);
5004 int is_double
= extract32(insn
, 22, 2);
5008 if (is_double
> 1) {
5009 unallocated_encoding(s
);
5013 if (!fp_access_check(s
)) {
5017 /* The imm8 encodes the sign bit, enough bits to represent
5018 * an exponent in the range 01....1xx to 10....0xx,
5019 * and the most significant 4 bits of the mantissa; see
5020 * VFPExpandImm() in the v8 ARM ARM.
5023 imm
= (extract32(imm8
, 7, 1) ? 0x8000 : 0) |
5024 (extract32(imm8
, 6, 1) ? 0x3fc0 : 0x4000) |
5025 extract32(imm8
, 0, 6);
5028 imm
= (extract32(imm8
, 7, 1) ? 0x8000 : 0) |
5029 (extract32(imm8
, 6, 1) ? 0x3e00 : 0x4000) |
5030 (extract32(imm8
, 0, 6) << 3);
5034 tcg_res
= tcg_const_i64(imm
);
5035 write_fp_dreg(s
, rd
, tcg_res
);
5036 tcg_temp_free_i64(tcg_res
);
5039 /* Handle floating point <=> fixed point conversions. Note that we can
5040 * also deal with fp <=> integer conversions as a special case (scale == 64)
5041 * OPTME: consider handling that special case specially or at least skipping
5042 * the call to scalbn in the helpers for zero shifts.
5044 static void handle_fpfpcvt(DisasContext
*s
, int rd
, int rn
, int opcode
,
5045 bool itof
, int rmode
, int scale
, int sf
, int type
)
5047 bool is_signed
= !(opcode
& 1);
5048 bool is_double
= type
;
5049 TCGv_ptr tcg_fpstatus
;
5052 tcg_fpstatus
= get_fpstatus_ptr();
5054 tcg_shift
= tcg_const_i32(64 - scale
);
5057 TCGv_i64 tcg_int
= cpu_reg(s
, rn
);
5059 TCGv_i64 tcg_extend
= new_tmp_a64(s
);
5062 tcg_gen_ext32s_i64(tcg_extend
, tcg_int
);
5064 tcg_gen_ext32u_i64(tcg_extend
, tcg_int
);
5067 tcg_int
= tcg_extend
;
5071 TCGv_i64 tcg_double
= tcg_temp_new_i64();
5073 gen_helper_vfp_sqtod(tcg_double
, tcg_int
,
5074 tcg_shift
, tcg_fpstatus
);
5076 gen_helper_vfp_uqtod(tcg_double
, tcg_int
,
5077 tcg_shift
, tcg_fpstatus
);
5079 write_fp_dreg(s
, rd
, tcg_double
);
5080 tcg_temp_free_i64(tcg_double
);
5082 TCGv_i32 tcg_single
= tcg_temp_new_i32();
5084 gen_helper_vfp_sqtos(tcg_single
, tcg_int
,
5085 tcg_shift
, tcg_fpstatus
);
5087 gen_helper_vfp_uqtos(tcg_single
, tcg_int
,
5088 tcg_shift
, tcg_fpstatus
);
5090 write_fp_sreg(s
, rd
, tcg_single
);
5091 tcg_temp_free_i32(tcg_single
);
5094 TCGv_i64 tcg_int
= cpu_reg(s
, rd
);
5097 if (extract32(opcode
, 2, 1)) {
5098 /* There are too many rounding modes to all fit into rmode,
5099 * so FCVTA[US] is a special case.
5101 rmode
= FPROUNDING_TIEAWAY
;
5104 tcg_rmode
= tcg_const_i32(arm_rmode_to_sf(rmode
));
5106 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
5109 TCGv_i64 tcg_double
= read_fp_dreg(s
, rn
);
5112 gen_helper_vfp_tosld(tcg_int
, tcg_double
,
5113 tcg_shift
, tcg_fpstatus
);
5115 gen_helper_vfp_tosqd(tcg_int
, tcg_double
,
5116 tcg_shift
, tcg_fpstatus
);
5120 gen_helper_vfp_tould(tcg_int
, tcg_double
,
5121 tcg_shift
, tcg_fpstatus
);
5123 gen_helper_vfp_touqd(tcg_int
, tcg_double
,
5124 tcg_shift
, tcg_fpstatus
);
5127 tcg_temp_free_i64(tcg_double
);
5129 TCGv_i32 tcg_single
= read_fp_sreg(s
, rn
);
5132 gen_helper_vfp_tosqs(tcg_int
, tcg_single
,
5133 tcg_shift
, tcg_fpstatus
);
5135 gen_helper_vfp_touqs(tcg_int
, tcg_single
,
5136 tcg_shift
, tcg_fpstatus
);
5139 TCGv_i32 tcg_dest
= tcg_temp_new_i32();
5141 gen_helper_vfp_tosls(tcg_dest
, tcg_single
,
5142 tcg_shift
, tcg_fpstatus
);
5144 gen_helper_vfp_touls(tcg_dest
, tcg_single
,
5145 tcg_shift
, tcg_fpstatus
);
5147 tcg_gen_extu_i32_i64(tcg_int
, tcg_dest
);
5148 tcg_temp_free_i32(tcg_dest
);
5150 tcg_temp_free_i32(tcg_single
);
5153 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
5154 tcg_temp_free_i32(tcg_rmode
);
5157 tcg_gen_ext32u_i64(tcg_int
, tcg_int
);
5161 tcg_temp_free_ptr(tcg_fpstatus
);
5162 tcg_temp_free_i32(tcg_shift
);
5165 /* C3.6.29 Floating point <-> fixed point conversions
5166 * 31 30 29 28 24 23 22 21 20 19 18 16 15 10 9 5 4 0
5167 * +----+---+---+-----------+------+---+-------+--------+-------+------+------+
5168 * | sf | 0 | S | 1 1 1 1 0 | type | 0 | rmode | opcode | scale | Rn | Rd |
5169 * +----+---+---+-----------+------+---+-------+--------+-------+------+------+
5171 static void disas_fp_fixed_conv(DisasContext
*s
, uint32_t insn
)
5173 int rd
= extract32(insn
, 0, 5);
5174 int rn
= extract32(insn
, 5, 5);
5175 int scale
= extract32(insn
, 10, 6);
5176 int opcode
= extract32(insn
, 16, 3);
5177 int rmode
= extract32(insn
, 19, 2);
5178 int type
= extract32(insn
, 22, 2);
5179 bool sbit
= extract32(insn
, 29, 1);
5180 bool sf
= extract32(insn
, 31, 1);
5183 if (sbit
|| (type
> 1)
5184 || (!sf
&& scale
< 32)) {
5185 unallocated_encoding(s
);
5189 switch ((rmode
<< 3) | opcode
) {
5190 case 0x2: /* SCVTF */
5191 case 0x3: /* UCVTF */
5194 case 0x18: /* FCVTZS */
5195 case 0x19: /* FCVTZU */
5199 unallocated_encoding(s
);
5203 if (!fp_access_check(s
)) {
5207 handle_fpfpcvt(s
, rd
, rn
, opcode
, itof
, FPROUNDING_ZERO
, scale
, sf
, type
);
5210 static void handle_fmov(DisasContext
*s
, int rd
, int rn
, int type
, bool itof
)
5212 /* FMOV: gpr to or from float, double, or top half of quad fp reg,
5213 * without conversion.
5217 TCGv_i64 tcg_rn
= cpu_reg(s
, rn
);
5223 TCGv_i64 tmp
= tcg_temp_new_i64();
5224 tcg_gen_ext32u_i64(tmp
, tcg_rn
);
5225 tcg_gen_st_i64(tmp
, cpu_env
, fp_reg_offset(s
, rd
, MO_64
));
5226 tcg_gen_movi_i64(tmp
, 0);
5227 tcg_gen_st_i64(tmp
, cpu_env
, fp_reg_hi_offset(s
, rd
));
5228 tcg_temp_free_i64(tmp
);
5234 TCGv_i64 tmp
= tcg_const_i64(0);
5235 tcg_gen_st_i64(tcg_rn
, cpu_env
, fp_reg_offset(s
, rd
, MO_64
));
5236 tcg_gen_st_i64(tmp
, cpu_env
, fp_reg_hi_offset(s
, rd
));
5237 tcg_temp_free_i64(tmp
);
5241 /* 64 bit to top half. */
5242 tcg_gen_st_i64(tcg_rn
, cpu_env
, fp_reg_hi_offset(s
, rd
));
5246 TCGv_i64 tcg_rd
= cpu_reg(s
, rd
);
5251 tcg_gen_ld32u_i64(tcg_rd
, cpu_env
, fp_reg_offset(s
, rn
, MO_32
));
5255 tcg_gen_ld_i64(tcg_rd
, cpu_env
, fp_reg_offset(s
, rn
, MO_64
));
5258 /* 64 bits from top half */
5259 tcg_gen_ld_i64(tcg_rd
, cpu_env
, fp_reg_hi_offset(s
, rn
));
5265 /* C3.6.30 Floating point <-> integer conversions
5266 * 31 30 29 28 24 23 22 21 20 19 18 16 15 10 9 5 4 0
5267 * +----+---+---+-----------+------+---+-------+-----+-------------+----+----+
5268 * | sf | 0 | S | 1 1 1 1 0 | type | 1 | rmode | opc | 0 0 0 0 0 0 | Rn | Rd |
5269 * +----+---+---+-----------+------+---+-------+-----+-------------+----+----+
5271 static void disas_fp_int_conv(DisasContext
*s
, uint32_t insn
)
5273 int rd
= extract32(insn
, 0, 5);
5274 int rn
= extract32(insn
, 5, 5);
5275 int opcode
= extract32(insn
, 16, 3);
5276 int rmode
= extract32(insn
, 19, 2);
5277 int type
= extract32(insn
, 22, 2);
5278 bool sbit
= extract32(insn
, 29, 1);
5279 bool sf
= extract32(insn
, 31, 1);
5282 unallocated_encoding(s
);
5288 bool itof
= opcode
& 1;
5291 unallocated_encoding(s
);
5295 switch (sf
<< 3 | type
<< 1 | rmode
) {
5296 case 0x0: /* 32 bit */
5297 case 0xa: /* 64 bit */
5298 case 0xd: /* 64 bit to top half of quad */
5301 /* all other sf/type/rmode combinations are invalid */
5302 unallocated_encoding(s
);
5306 if (!fp_access_check(s
)) {
5309 handle_fmov(s
, rd
, rn
, type
, itof
);
5311 /* actual FP conversions */
5312 bool itof
= extract32(opcode
, 1, 1);
5314 if (type
> 1 || (rmode
!= 0 && opcode
> 1)) {
5315 unallocated_encoding(s
);
5319 if (!fp_access_check(s
)) {
5322 handle_fpfpcvt(s
, rd
, rn
, opcode
, itof
, rmode
, 64, sf
, type
);
5326 /* FP-specific subcases of table C3-6 (SIMD and FP data processing)
5327 * 31 30 29 28 25 24 0
5328 * +---+---+---+---------+-----------------------------+
5329 * | | 0 | | 1 1 1 1 | |
5330 * +---+---+---+---------+-----------------------------+
5332 static void disas_data_proc_fp(DisasContext
*s
, uint32_t insn
)
5334 if (extract32(insn
, 24, 1)) {
5335 /* Floating point data-processing (3 source) */
5336 disas_fp_3src(s
, insn
);
5337 } else if (extract32(insn
, 21, 1) == 0) {
5338 /* Floating point to fixed point conversions */
5339 disas_fp_fixed_conv(s
, insn
);
5341 switch (extract32(insn
, 10, 2)) {
5343 /* Floating point conditional compare */
5344 disas_fp_ccomp(s
, insn
);
5347 /* Floating point data-processing (2 source) */
5348 disas_fp_2src(s
, insn
);
5351 /* Floating point conditional select */
5352 disas_fp_csel(s
, insn
);
5355 switch (ctz32(extract32(insn
, 12, 4))) {
5356 case 0: /* [15:12] == xxx1 */
5357 /* Floating point immediate */
5358 disas_fp_imm(s
, insn
);
5360 case 1: /* [15:12] == xx10 */
5361 /* Floating point compare */
5362 disas_fp_compare(s
, insn
);
5364 case 2: /* [15:12] == x100 */
5365 /* Floating point data-processing (1 source) */
5366 disas_fp_1src(s
, insn
);
5368 case 3: /* [15:12] == 1000 */
5369 unallocated_encoding(s
);
5371 default: /* [15:12] == 0000 */
5372 /* Floating point <-> integer conversions */
5373 disas_fp_int_conv(s
, insn
);
5381 static void do_ext64(DisasContext
*s
, TCGv_i64 tcg_left
, TCGv_i64 tcg_right
,
5384 /* Extract 64 bits from the middle of two concatenated 64 bit
5385 * vector register slices left:right. The extracted bits start
5386 * at 'pos' bits into the right (least significant) side.
5387 * We return the result in tcg_right, and guarantee not to
5390 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
5391 assert(pos
> 0 && pos
< 64);
5393 tcg_gen_shri_i64(tcg_right
, tcg_right
, pos
);
5394 tcg_gen_shli_i64(tcg_tmp
, tcg_left
, 64 - pos
);
5395 tcg_gen_or_i64(tcg_right
, tcg_right
, tcg_tmp
);
5397 tcg_temp_free_i64(tcg_tmp
);
5401 * 31 30 29 24 23 22 21 20 16 15 14 11 10 9 5 4 0
5402 * +---+---+-------------+-----+---+------+---+------+---+------+------+
5403 * | 0 | Q | 1 0 1 1 1 0 | op2 | 0 | Rm | 0 | imm4 | 0 | Rn | Rd |
5404 * +---+---+-------------+-----+---+------+---+------+---+------+------+
5406 static void disas_simd_ext(DisasContext
*s
, uint32_t insn
)
5408 int is_q
= extract32(insn
, 30, 1);
5409 int op2
= extract32(insn
, 22, 2);
5410 int imm4
= extract32(insn
, 11, 4);
5411 int rm
= extract32(insn
, 16, 5);
5412 int rn
= extract32(insn
, 5, 5);
5413 int rd
= extract32(insn
, 0, 5);
5414 int pos
= imm4
<< 3;
5415 TCGv_i64 tcg_resl
, tcg_resh
;
5417 if (op2
!= 0 || (!is_q
&& extract32(imm4
, 3, 1))) {
5418 unallocated_encoding(s
);
5422 if (!fp_access_check(s
)) {
5426 tcg_resh
= tcg_temp_new_i64();
5427 tcg_resl
= tcg_temp_new_i64();
5429 /* Vd gets bits starting at pos bits into Vm:Vn. This is
5430 * either extracting 128 bits from a 128:128 concatenation, or
5431 * extracting 64 bits from a 64:64 concatenation.
5434 read_vec_element(s
, tcg_resl
, rn
, 0, MO_64
);
5436 read_vec_element(s
, tcg_resh
, rm
, 0, MO_64
);
5437 do_ext64(s
, tcg_resh
, tcg_resl
, pos
);
5439 tcg_gen_movi_i64(tcg_resh
, 0);
5446 EltPosns eltposns
[] = { {rn
, 0}, {rn
, 1}, {rm
, 0}, {rm
, 1} };
5447 EltPosns
*elt
= eltposns
;
5454 read_vec_element(s
, tcg_resl
, elt
->reg
, elt
->elt
, MO_64
);
5456 read_vec_element(s
, tcg_resh
, elt
->reg
, elt
->elt
, MO_64
);
5459 do_ext64(s
, tcg_resh
, tcg_resl
, pos
);
5460 tcg_hh
= tcg_temp_new_i64();
5461 read_vec_element(s
, tcg_hh
, elt
->reg
, elt
->elt
, MO_64
);
5462 do_ext64(s
, tcg_hh
, tcg_resh
, pos
);
5463 tcg_temp_free_i64(tcg_hh
);
5467 write_vec_element(s
, tcg_resl
, rd
, 0, MO_64
);
5468 tcg_temp_free_i64(tcg_resl
);
5469 write_vec_element(s
, tcg_resh
, rd
, 1, MO_64
);
5470 tcg_temp_free_i64(tcg_resh
);
5474 * 31 30 29 24 23 22 21 20 16 15 14 13 12 11 10 9 5 4 0
5475 * +---+---+-------------+-----+---+------+---+-----+----+-----+------+------+
5476 * | 0 | Q | 0 0 1 1 1 0 | op2 | 0 | Rm | 0 | len | op | 0 0 | Rn | Rd |
5477 * +---+---+-------------+-----+---+------+---+-----+----+-----+------+------+
5479 static void disas_simd_tb(DisasContext
*s
, uint32_t insn
)
5481 int op2
= extract32(insn
, 22, 2);
5482 int is_q
= extract32(insn
, 30, 1);
5483 int rm
= extract32(insn
, 16, 5);
5484 int rn
= extract32(insn
, 5, 5);
5485 int rd
= extract32(insn
, 0, 5);
5486 int is_tblx
= extract32(insn
, 12, 1);
5487 int len
= extract32(insn
, 13, 2);
5488 TCGv_i64 tcg_resl
, tcg_resh
, tcg_idx
;
5489 TCGv_i32 tcg_regno
, tcg_numregs
;
5492 unallocated_encoding(s
);
5496 if (!fp_access_check(s
)) {
5500 /* This does a table lookup: for every byte element in the input
5501 * we index into a table formed from up to four vector registers,
5502 * and then the output is the result of the lookups. Our helper
5503 * function does the lookup operation for a single 64 bit part of
5506 tcg_resl
= tcg_temp_new_i64();
5507 tcg_resh
= tcg_temp_new_i64();
5510 read_vec_element(s
, tcg_resl
, rd
, 0, MO_64
);
5512 tcg_gen_movi_i64(tcg_resl
, 0);
5514 if (is_tblx
&& is_q
) {
5515 read_vec_element(s
, tcg_resh
, rd
, 1, MO_64
);
5517 tcg_gen_movi_i64(tcg_resh
, 0);
5520 tcg_idx
= tcg_temp_new_i64();
5521 tcg_regno
= tcg_const_i32(rn
);
5522 tcg_numregs
= tcg_const_i32(len
+ 1);
5523 read_vec_element(s
, tcg_idx
, rm
, 0, MO_64
);
5524 gen_helper_simd_tbl(tcg_resl
, cpu_env
, tcg_resl
, tcg_idx
,
5525 tcg_regno
, tcg_numregs
);
5527 read_vec_element(s
, tcg_idx
, rm
, 1, MO_64
);
5528 gen_helper_simd_tbl(tcg_resh
, cpu_env
, tcg_resh
, tcg_idx
,
5529 tcg_regno
, tcg_numregs
);
5531 tcg_temp_free_i64(tcg_idx
);
5532 tcg_temp_free_i32(tcg_regno
);
5533 tcg_temp_free_i32(tcg_numregs
);
5535 write_vec_element(s
, tcg_resl
, rd
, 0, MO_64
);
5536 tcg_temp_free_i64(tcg_resl
);
5537 write_vec_element(s
, tcg_resh
, rd
, 1, MO_64
);
5538 tcg_temp_free_i64(tcg_resh
);
5541 /* C3.6.3 ZIP/UZP/TRN
5542 * 31 30 29 24 23 22 21 20 16 15 14 12 11 10 9 5 4 0
5543 * +---+---+-------------+------+---+------+---+------------------+------+
5544 * | 0 | Q | 0 0 1 1 1 0 | size | 0 | Rm | 0 | opc | 1 0 | Rn | Rd |
5545 * +---+---+-------------+------+---+------+---+------------------+------+
5547 static void disas_simd_zip_trn(DisasContext
*s
, uint32_t insn
)
5549 int rd
= extract32(insn
, 0, 5);
5550 int rn
= extract32(insn
, 5, 5);
5551 int rm
= extract32(insn
, 16, 5);
5552 int size
= extract32(insn
, 22, 2);
5553 /* opc field bits [1:0] indicate ZIP/UZP/TRN;
5554 * bit 2 indicates 1 vs 2 variant of the insn.
5556 int opcode
= extract32(insn
, 12, 2);
5557 bool part
= extract32(insn
, 14, 1);
5558 bool is_q
= extract32(insn
, 30, 1);
5559 int esize
= 8 << size
;
5561 int datasize
= is_q
? 128 : 64;
5562 int elements
= datasize
/ esize
;
5563 TCGv_i64 tcg_res
, tcg_resl
, tcg_resh
;
5565 if (opcode
== 0 || (size
== 3 && !is_q
)) {
5566 unallocated_encoding(s
);
5570 if (!fp_access_check(s
)) {
5574 tcg_resl
= tcg_const_i64(0);
5575 tcg_resh
= tcg_const_i64(0);
5576 tcg_res
= tcg_temp_new_i64();
5578 for (i
= 0; i
< elements
; i
++) {
5580 case 1: /* UZP1/2 */
5582 int midpoint
= elements
/ 2;
5584 read_vec_element(s
, tcg_res
, rn
, 2 * i
+ part
, size
);
5586 read_vec_element(s
, tcg_res
, rm
,
5587 2 * (i
- midpoint
) + part
, size
);
5591 case 2: /* TRN1/2 */
5593 read_vec_element(s
, tcg_res
, rm
, (i
& ~1) + part
, size
);
5595 read_vec_element(s
, tcg_res
, rn
, (i
& ~1) + part
, size
);
5598 case 3: /* ZIP1/2 */
5600 int base
= part
* elements
/ 2;
5602 read_vec_element(s
, tcg_res
, rm
, base
+ (i
>> 1), size
);
5604 read_vec_element(s
, tcg_res
, rn
, base
+ (i
>> 1), size
);
5609 g_assert_not_reached();
5614 tcg_gen_shli_i64(tcg_res
, tcg_res
, ofs
);
5615 tcg_gen_or_i64(tcg_resl
, tcg_resl
, tcg_res
);
5617 tcg_gen_shli_i64(tcg_res
, tcg_res
, ofs
- 64);
5618 tcg_gen_or_i64(tcg_resh
, tcg_resh
, tcg_res
);
5622 tcg_temp_free_i64(tcg_res
);
5624 write_vec_element(s
, tcg_resl
, rd
, 0, MO_64
);
5625 tcg_temp_free_i64(tcg_resl
);
5626 write_vec_element(s
, tcg_resh
, rd
, 1, MO_64
);
5627 tcg_temp_free_i64(tcg_resh
);
5630 static void do_minmaxop(DisasContext
*s
, TCGv_i32 tcg_elt1
, TCGv_i32 tcg_elt2
,
5631 int opc
, bool is_min
, TCGv_ptr fpst
)
5633 /* Helper function for disas_simd_across_lanes: do a single precision
5634 * min/max operation on the specified two inputs,
5635 * and return the result in tcg_elt1.
5639 gen_helper_vfp_minnums(tcg_elt1
, tcg_elt1
, tcg_elt2
, fpst
);
5641 gen_helper_vfp_maxnums(tcg_elt1
, tcg_elt1
, tcg_elt2
, fpst
);
5646 gen_helper_vfp_mins(tcg_elt1
, tcg_elt1
, tcg_elt2
, fpst
);
5648 gen_helper_vfp_maxs(tcg_elt1
, tcg_elt1
, tcg_elt2
, fpst
);
5653 /* C3.6.4 AdvSIMD across lanes
5654 * 31 30 29 28 24 23 22 21 17 16 12 11 10 9 5 4 0
5655 * +---+---+---+-----------+------+-----------+--------+-----+------+------+
5656 * | 0 | Q | U | 0 1 1 1 0 | size | 1 1 0 0 0 | opcode | 1 0 | Rn | Rd |
5657 * +---+---+---+-----------+------+-----------+--------+-----+------+------+
5659 static void disas_simd_across_lanes(DisasContext
*s
, uint32_t insn
)
5661 int rd
= extract32(insn
, 0, 5);
5662 int rn
= extract32(insn
, 5, 5);
5663 int size
= extract32(insn
, 22, 2);
5664 int opcode
= extract32(insn
, 12, 5);
5665 bool is_q
= extract32(insn
, 30, 1);
5666 bool is_u
= extract32(insn
, 29, 1);
5668 bool is_min
= false;
5672 TCGv_i64 tcg_res
, tcg_elt
;
5675 case 0x1b: /* ADDV */
5677 unallocated_encoding(s
);
5681 case 0x3: /* SADDLV, UADDLV */
5682 case 0xa: /* SMAXV, UMAXV */
5683 case 0x1a: /* SMINV, UMINV */
5684 if (size
== 3 || (size
== 2 && !is_q
)) {
5685 unallocated_encoding(s
);
5689 case 0xc: /* FMAXNMV, FMINNMV */
5690 case 0xf: /* FMAXV, FMINV */
5691 if (!is_u
|| !is_q
|| extract32(size
, 0, 1)) {
5692 unallocated_encoding(s
);
5695 /* Bit 1 of size field encodes min vs max, and actual size is always
5696 * 32 bits: adjust the size variable so following code can rely on it
5698 is_min
= extract32(size
, 1, 1);
5703 unallocated_encoding(s
);
5707 if (!fp_access_check(s
)) {
5712 elements
= (is_q
? 128 : 64) / esize
;
5714 tcg_res
= tcg_temp_new_i64();
5715 tcg_elt
= tcg_temp_new_i64();
5717 /* These instructions operate across all lanes of a vector
5718 * to produce a single result. We can guarantee that a 64
5719 * bit intermediate is sufficient:
5720 * + for [US]ADDLV the maximum element size is 32 bits, and
5721 * the result type is 64 bits
5722 * + for FMAX*V, FMIN*V, ADDV the intermediate type is the
5723 * same as the element size, which is 32 bits at most
5724 * For the integer operations we can choose to work at 64
5725 * or 32 bits and truncate at the end; for simplicity
5726 * we use 64 bits always. The floating point
5727 * ops do require 32 bit intermediates, though.
5730 read_vec_element(s
, tcg_res
, rn
, 0, size
| (is_u
? 0 : MO_SIGN
));
5732 for (i
= 1; i
< elements
; i
++) {
5733 read_vec_element(s
, tcg_elt
, rn
, i
, size
| (is_u
? 0 : MO_SIGN
));
5736 case 0x03: /* SADDLV / UADDLV */
5737 case 0x1b: /* ADDV */
5738 tcg_gen_add_i64(tcg_res
, tcg_res
, tcg_elt
);
5740 case 0x0a: /* SMAXV / UMAXV */
5741 tcg_gen_movcond_i64(is_u
? TCG_COND_GEU
: TCG_COND_GE
,
5743 tcg_res
, tcg_elt
, tcg_res
, tcg_elt
);
5745 case 0x1a: /* SMINV / UMINV */
5746 tcg_gen_movcond_i64(is_u
? TCG_COND_LEU
: TCG_COND_LE
,
5748 tcg_res
, tcg_elt
, tcg_res
, tcg_elt
);
5752 g_assert_not_reached();
5757 /* Floating point ops which work on 32 bit (single) intermediates.
5758 * Note that correct NaN propagation requires that we do these
5759 * operations in exactly the order specified by the pseudocode.
5761 TCGv_i32 tcg_elt1
= tcg_temp_new_i32();
5762 TCGv_i32 tcg_elt2
= tcg_temp_new_i32();
5763 TCGv_i32 tcg_elt3
= tcg_temp_new_i32();
5764 TCGv_ptr fpst
= get_fpstatus_ptr();
5766 assert(esize
== 32);
5767 assert(elements
== 4);
5769 read_vec_element(s
, tcg_elt
, rn
, 0, MO_32
);
5770 tcg_gen_extrl_i64_i32(tcg_elt1
, tcg_elt
);
5771 read_vec_element(s
, tcg_elt
, rn
, 1, MO_32
);
5772 tcg_gen_extrl_i64_i32(tcg_elt2
, tcg_elt
);
5774 do_minmaxop(s
, tcg_elt1
, tcg_elt2
, opcode
, is_min
, fpst
);
5776 read_vec_element(s
, tcg_elt
, rn
, 2, MO_32
);
5777 tcg_gen_extrl_i64_i32(tcg_elt2
, tcg_elt
);
5778 read_vec_element(s
, tcg_elt
, rn
, 3, MO_32
);
5779 tcg_gen_extrl_i64_i32(tcg_elt3
, tcg_elt
);
5781 do_minmaxop(s
, tcg_elt2
, tcg_elt3
, opcode
, is_min
, fpst
);
5783 do_minmaxop(s
, tcg_elt1
, tcg_elt2
, opcode
, is_min
, fpst
);
5785 tcg_gen_extu_i32_i64(tcg_res
, tcg_elt1
);
5786 tcg_temp_free_i32(tcg_elt1
);
5787 tcg_temp_free_i32(tcg_elt2
);
5788 tcg_temp_free_i32(tcg_elt3
);
5789 tcg_temp_free_ptr(fpst
);
5792 tcg_temp_free_i64(tcg_elt
);
5794 /* Now truncate the result to the width required for the final output */
5795 if (opcode
== 0x03) {
5796 /* SADDLV, UADDLV: result is 2*esize */
5802 tcg_gen_ext8u_i64(tcg_res
, tcg_res
);
5805 tcg_gen_ext16u_i64(tcg_res
, tcg_res
);
5808 tcg_gen_ext32u_i64(tcg_res
, tcg_res
);
5813 g_assert_not_reached();
5816 write_fp_dreg(s
, rd
, tcg_res
);
5817 tcg_temp_free_i64(tcg_res
);
5820 /* C6.3.31 DUP (Element, Vector)
5822 * 31 30 29 21 20 16 15 10 9 5 4 0
5823 * +---+---+-------------------+--------+-------------+------+------+
5824 * | 0 | Q | 0 0 1 1 1 0 0 0 0 | imm5 | 0 0 0 0 0 1 | Rn | Rd |
5825 * +---+---+-------------------+--------+-------------+------+------+
5827 * size: encoded in imm5 (see ARM ARM LowestSetBit())
5829 static void handle_simd_dupe(DisasContext
*s
, int is_q
, int rd
, int rn
,
5832 int size
= ctz32(imm5
);
5833 int esize
= 8 << size
;
5834 int elements
= (is_q
? 128 : 64) / esize
;
5838 if (size
> 3 || (size
== 3 && !is_q
)) {
5839 unallocated_encoding(s
);
5843 if (!fp_access_check(s
)) {
5847 index
= imm5
>> (size
+ 1);
5849 tmp
= tcg_temp_new_i64();
5850 read_vec_element(s
, tmp
, rn
, index
, size
);
5852 for (i
= 0; i
< elements
; i
++) {
5853 write_vec_element(s
, tmp
, rd
, i
, size
);
5857 clear_vec_high(s
, rd
);
5860 tcg_temp_free_i64(tmp
);
5863 /* C6.3.31 DUP (element, scalar)
5864 * 31 21 20 16 15 10 9 5 4 0
5865 * +-----------------------+--------+-------------+------+------+
5866 * | 0 1 0 1 1 1 1 0 0 0 0 | imm5 | 0 0 0 0 0 1 | Rn | Rd |
5867 * +-----------------------+--------+-------------+------+------+
5869 static void handle_simd_dupes(DisasContext
*s
, int rd
, int rn
,
5872 int size
= ctz32(imm5
);
5877 unallocated_encoding(s
);
5881 if (!fp_access_check(s
)) {
5885 index
= imm5
>> (size
+ 1);
5887 /* This instruction just extracts the specified element and
5888 * zero-extends it into the bottom of the destination register.
5890 tmp
= tcg_temp_new_i64();
5891 read_vec_element(s
, tmp
, rn
, index
, size
);
5892 write_fp_dreg(s
, rd
, tmp
);
5893 tcg_temp_free_i64(tmp
);
5896 /* C6.3.32 DUP (General)
5898 * 31 30 29 21 20 16 15 10 9 5 4 0
5899 * +---+---+-------------------+--------+-------------+------+------+
5900 * | 0 | Q | 0 0 1 1 1 0 0 0 0 | imm5 | 0 0 0 0 1 1 | Rn | Rd |
5901 * +---+---+-------------------+--------+-------------+------+------+
5903 * size: encoded in imm5 (see ARM ARM LowestSetBit())
5905 static void handle_simd_dupg(DisasContext
*s
, int is_q
, int rd
, int rn
,
5908 int size
= ctz32(imm5
);
5909 int esize
= 8 << size
;
5910 int elements
= (is_q
? 128 : 64)/esize
;
5913 if (size
> 3 || ((size
== 3) && !is_q
)) {
5914 unallocated_encoding(s
);
5918 if (!fp_access_check(s
)) {
5922 for (i
= 0; i
< elements
; i
++) {
5923 write_vec_element(s
, cpu_reg(s
, rn
), rd
, i
, size
);
5926 clear_vec_high(s
, rd
);
5930 /* C6.3.150 INS (Element)
5932 * 31 21 20 16 15 14 11 10 9 5 4 0
5933 * +-----------------------+--------+------------+---+------+------+
5934 * | 0 1 1 0 1 1 1 0 0 0 0 | imm5 | 0 | imm4 | 1 | Rn | Rd |
5935 * +-----------------------+--------+------------+---+------+------+
5937 * size: encoded in imm5 (see ARM ARM LowestSetBit())
5938 * index: encoded in imm5<4:size+1>
5940 static void handle_simd_inse(DisasContext
*s
, int rd
, int rn
,
5943 int size
= ctz32(imm5
);
5944 int src_index
, dst_index
;
5948 unallocated_encoding(s
);
5952 if (!fp_access_check(s
)) {
5956 dst_index
= extract32(imm5
, 1+size
, 5);
5957 src_index
= extract32(imm4
, size
, 4);
5959 tmp
= tcg_temp_new_i64();
5961 read_vec_element(s
, tmp
, rn
, src_index
, size
);
5962 write_vec_element(s
, tmp
, rd
, dst_index
, size
);
5964 tcg_temp_free_i64(tmp
);
5968 /* C6.3.151 INS (General)
5970 * 31 21 20 16 15 10 9 5 4 0
5971 * +-----------------------+--------+-------------+------+------+
5972 * | 0 1 0 0 1 1 1 0 0 0 0 | imm5 | 0 0 0 1 1 1 | Rn | Rd |
5973 * +-----------------------+--------+-------------+------+------+
5975 * size: encoded in imm5 (see ARM ARM LowestSetBit())
5976 * index: encoded in imm5<4:size+1>
5978 static void handle_simd_insg(DisasContext
*s
, int rd
, int rn
, int imm5
)
5980 int size
= ctz32(imm5
);
5984 unallocated_encoding(s
);
5988 if (!fp_access_check(s
)) {
5992 idx
= extract32(imm5
, 1 + size
, 4 - size
);
5993 write_vec_element(s
, cpu_reg(s
, rn
), rd
, idx
, size
);
5997 * C6.3.321 UMOV (General)
5998 * C6.3.237 SMOV (General)
6000 * 31 30 29 21 20 16 15 12 10 9 5 4 0
6001 * +---+---+-------------------+--------+-------------+------+------+
6002 * | 0 | Q | 0 0 1 1 1 0 0 0 0 | imm5 | 0 0 1 U 1 1 | Rn | Rd |
6003 * +---+---+-------------------+--------+-------------+------+------+
6005 * U: unsigned when set
6006 * size: encoded in imm5 (see ARM ARM LowestSetBit())
6008 static void handle_simd_umov_smov(DisasContext
*s
, int is_q
, int is_signed
,
6009 int rn
, int rd
, int imm5
)
6011 int size
= ctz32(imm5
);
6015 /* Check for UnallocatedEncodings */
6017 if (size
> 2 || (size
== 2 && !is_q
)) {
6018 unallocated_encoding(s
);
6023 || (size
< 3 && is_q
)
6024 || (size
== 3 && !is_q
)) {
6025 unallocated_encoding(s
);
6030 if (!fp_access_check(s
)) {
6034 element
= extract32(imm5
, 1+size
, 4);
6036 tcg_rd
= cpu_reg(s
, rd
);
6037 read_vec_element(s
, tcg_rd
, rn
, element
, size
| (is_signed
? MO_SIGN
: 0));
6038 if (is_signed
&& !is_q
) {
6039 tcg_gen_ext32u_i64(tcg_rd
, tcg_rd
);
6043 /* C3.6.5 AdvSIMD copy
6044 * 31 30 29 28 21 20 16 15 14 11 10 9 5 4 0
6045 * +---+---+----+-----------------+------+---+------+---+------+------+
6046 * | 0 | Q | op | 0 1 1 1 0 0 0 0 | imm5 | 0 | imm4 | 1 | Rn | Rd |
6047 * +---+---+----+-----------------+------+---+------+---+------+------+
6049 static void disas_simd_copy(DisasContext
*s
, uint32_t insn
)
6051 int rd
= extract32(insn
, 0, 5);
6052 int rn
= extract32(insn
, 5, 5);
6053 int imm4
= extract32(insn
, 11, 4);
6054 int op
= extract32(insn
, 29, 1);
6055 int is_q
= extract32(insn
, 30, 1);
6056 int imm5
= extract32(insn
, 16, 5);
6061 handle_simd_inse(s
, rd
, rn
, imm4
, imm5
);
6063 unallocated_encoding(s
);
6068 /* DUP (element - vector) */
6069 handle_simd_dupe(s
, is_q
, rd
, rn
, imm5
);
6073 handle_simd_dupg(s
, is_q
, rd
, rn
, imm5
);
6078 handle_simd_insg(s
, rd
, rn
, imm5
);
6080 unallocated_encoding(s
);
6085 /* UMOV/SMOV (is_q indicates 32/64; imm4 indicates signedness) */
6086 handle_simd_umov_smov(s
, is_q
, (imm4
== 5), rn
, rd
, imm5
);
6089 unallocated_encoding(s
);
6095 /* C3.6.6 AdvSIMD modified immediate
6096 * 31 30 29 28 19 18 16 15 12 11 10 9 5 4 0
6097 * +---+---+----+---------------------+-----+-------+----+---+-------+------+
6098 * | 0 | Q | op | 0 1 1 1 1 0 0 0 0 0 | abc | cmode | o2 | 1 | defgh | Rd |
6099 * +---+---+----+---------------------+-----+-------+----+---+-------+------+
6101 * There are a number of operations that can be carried out here:
6102 * MOVI - move (shifted) imm into register
6103 * MVNI - move inverted (shifted) imm into register
6104 * ORR - bitwise OR of (shifted) imm with register
6105 * BIC - bitwise clear of (shifted) imm with register
6107 static void disas_simd_mod_imm(DisasContext
*s
, uint32_t insn
)
6109 int rd
= extract32(insn
, 0, 5);
6110 int cmode
= extract32(insn
, 12, 4);
6111 int cmode_3_1
= extract32(cmode
, 1, 3);
6112 int cmode_0
= extract32(cmode
, 0, 1);
6113 int o2
= extract32(insn
, 11, 1);
6114 uint64_t abcdefgh
= extract32(insn
, 5, 5) | (extract32(insn
, 16, 3) << 5);
6115 bool is_neg
= extract32(insn
, 29, 1);
6116 bool is_q
= extract32(insn
, 30, 1);
6118 TCGv_i64 tcg_rd
, tcg_imm
;
6121 if (o2
!= 0 || ((cmode
== 0xf) && is_neg
&& !is_q
)) {
6122 unallocated_encoding(s
);
6126 if (!fp_access_check(s
)) {
6130 /* See AdvSIMDExpandImm() in ARM ARM */
6131 switch (cmode_3_1
) {
6132 case 0: /* Replicate(Zeros(24):imm8, 2) */
6133 case 1: /* Replicate(Zeros(16):imm8:Zeros(8), 2) */
6134 case 2: /* Replicate(Zeros(8):imm8:Zeros(16), 2) */
6135 case 3: /* Replicate(imm8:Zeros(24), 2) */
6137 int shift
= cmode_3_1
* 8;
6138 imm
= bitfield_replicate(abcdefgh
<< shift
, 32);
6141 case 4: /* Replicate(Zeros(8):imm8, 4) */
6142 case 5: /* Replicate(imm8:Zeros(8), 4) */
6144 int shift
= (cmode_3_1
& 0x1) * 8;
6145 imm
= bitfield_replicate(abcdefgh
<< shift
, 16);
6150 /* Replicate(Zeros(8):imm8:Ones(16), 2) */
6151 imm
= (abcdefgh
<< 16) | 0xffff;
6153 /* Replicate(Zeros(16):imm8:Ones(8), 2) */
6154 imm
= (abcdefgh
<< 8) | 0xff;
6156 imm
= bitfield_replicate(imm
, 32);
6159 if (!cmode_0
&& !is_neg
) {
6160 imm
= bitfield_replicate(abcdefgh
, 8);
6161 } else if (!cmode_0
&& is_neg
) {
6164 for (i
= 0; i
< 8; i
++) {
6165 if ((abcdefgh
) & (1 << i
)) {
6166 imm
|= 0xffULL
<< (i
* 8);
6169 } else if (cmode_0
) {
6171 imm
= (abcdefgh
& 0x3f) << 48;
6172 if (abcdefgh
& 0x80) {
6173 imm
|= 0x8000000000000000ULL
;
6175 if (abcdefgh
& 0x40) {
6176 imm
|= 0x3fc0000000000000ULL
;
6178 imm
|= 0x4000000000000000ULL
;
6181 imm
= (abcdefgh
& 0x3f) << 19;
6182 if (abcdefgh
& 0x80) {
6185 if (abcdefgh
& 0x40) {
6196 if (cmode_3_1
!= 7 && is_neg
) {
6200 tcg_imm
= tcg_const_i64(imm
);
6201 tcg_rd
= new_tmp_a64(s
);
6203 for (i
= 0; i
< 2; i
++) {
6204 int foffs
= i
? fp_reg_hi_offset(s
, rd
) : fp_reg_offset(s
, rd
, MO_64
);
6206 if (i
== 1 && !is_q
) {
6207 /* non-quad ops clear high half of vector */
6208 tcg_gen_movi_i64(tcg_rd
, 0);
6209 } else if ((cmode
& 0x9) == 0x1 || (cmode
& 0xd) == 0x9) {
6210 tcg_gen_ld_i64(tcg_rd
, cpu_env
, foffs
);
6213 tcg_gen_and_i64(tcg_rd
, tcg_rd
, tcg_imm
);
6216 tcg_gen_or_i64(tcg_rd
, tcg_rd
, tcg_imm
);
6220 tcg_gen_mov_i64(tcg_rd
, tcg_imm
);
6222 tcg_gen_st_i64(tcg_rd
, cpu_env
, foffs
);
6225 tcg_temp_free_i64(tcg_imm
);
6228 /* C3.6.7 AdvSIMD scalar copy
6229 * 31 30 29 28 21 20 16 15 14 11 10 9 5 4 0
6230 * +-----+----+-----------------+------+---+------+---+------+------+
6231 * | 0 1 | op | 1 1 1 1 0 0 0 0 | imm5 | 0 | imm4 | 1 | Rn | Rd |
6232 * +-----+----+-----------------+------+---+------+---+------+------+
6234 static void disas_simd_scalar_copy(DisasContext
*s
, uint32_t insn
)
6236 int rd
= extract32(insn
, 0, 5);
6237 int rn
= extract32(insn
, 5, 5);
6238 int imm4
= extract32(insn
, 11, 4);
6239 int imm5
= extract32(insn
, 16, 5);
6240 int op
= extract32(insn
, 29, 1);
6242 if (op
!= 0 || imm4
!= 0) {
6243 unallocated_encoding(s
);
6247 /* DUP (element, scalar) */
6248 handle_simd_dupes(s
, rd
, rn
, imm5
);
6251 /* C3.6.8 AdvSIMD scalar pairwise
6252 * 31 30 29 28 24 23 22 21 17 16 12 11 10 9 5 4 0
6253 * +-----+---+-----------+------+-----------+--------+-----+------+------+
6254 * | 0 1 | U | 1 1 1 1 0 | size | 1 1 0 0 0 | opcode | 1 0 | Rn | Rd |
6255 * +-----+---+-----------+------+-----------+--------+-----+------+------+
6257 static void disas_simd_scalar_pairwise(DisasContext
*s
, uint32_t insn
)
6259 int u
= extract32(insn
, 29, 1);
6260 int size
= extract32(insn
, 22, 2);
6261 int opcode
= extract32(insn
, 12, 5);
6262 int rn
= extract32(insn
, 5, 5);
6263 int rd
= extract32(insn
, 0, 5);
6266 /* For some ops (the FP ones), size[1] is part of the encoding.
6267 * For ADDP strictly it is not but size[1] is always 1 for valid
6270 opcode
|= (extract32(size
, 1, 1) << 5);
6273 case 0x3b: /* ADDP */
6274 if (u
|| size
!= 3) {
6275 unallocated_encoding(s
);
6278 if (!fp_access_check(s
)) {
6282 TCGV_UNUSED_PTR(fpst
);
6284 case 0xc: /* FMAXNMP */
6285 case 0xd: /* FADDP */
6286 case 0xf: /* FMAXP */
6287 case 0x2c: /* FMINNMP */
6288 case 0x2f: /* FMINP */
6289 /* FP op, size[0] is 32 or 64 bit */
6291 unallocated_encoding(s
);
6294 if (!fp_access_check(s
)) {
6298 size
= extract32(size
, 0, 1) ? 3 : 2;
6299 fpst
= get_fpstatus_ptr();
6302 unallocated_encoding(s
);
6307 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
6308 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
6309 TCGv_i64 tcg_res
= tcg_temp_new_i64();
6311 read_vec_element(s
, tcg_op1
, rn
, 0, MO_64
);
6312 read_vec_element(s
, tcg_op2
, rn
, 1, MO_64
);
6315 case 0x3b: /* ADDP */
6316 tcg_gen_add_i64(tcg_res
, tcg_op1
, tcg_op2
);
6318 case 0xc: /* FMAXNMP */
6319 gen_helper_vfp_maxnumd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6321 case 0xd: /* FADDP */
6322 gen_helper_vfp_addd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6324 case 0xf: /* FMAXP */
6325 gen_helper_vfp_maxd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6327 case 0x2c: /* FMINNMP */
6328 gen_helper_vfp_minnumd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6330 case 0x2f: /* FMINP */
6331 gen_helper_vfp_mind(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6334 g_assert_not_reached();
6337 write_fp_dreg(s
, rd
, tcg_res
);
6339 tcg_temp_free_i64(tcg_op1
);
6340 tcg_temp_free_i64(tcg_op2
);
6341 tcg_temp_free_i64(tcg_res
);
6343 TCGv_i32 tcg_op1
= tcg_temp_new_i32();
6344 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
6345 TCGv_i32 tcg_res
= tcg_temp_new_i32();
6347 read_vec_element_i32(s
, tcg_op1
, rn
, 0, MO_32
);
6348 read_vec_element_i32(s
, tcg_op2
, rn
, 1, MO_32
);
6351 case 0xc: /* FMAXNMP */
6352 gen_helper_vfp_maxnums(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6354 case 0xd: /* FADDP */
6355 gen_helper_vfp_adds(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6357 case 0xf: /* FMAXP */
6358 gen_helper_vfp_maxs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6360 case 0x2c: /* FMINNMP */
6361 gen_helper_vfp_minnums(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6363 case 0x2f: /* FMINP */
6364 gen_helper_vfp_mins(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
6367 g_assert_not_reached();
6370 write_fp_sreg(s
, rd
, tcg_res
);
6372 tcg_temp_free_i32(tcg_op1
);
6373 tcg_temp_free_i32(tcg_op2
);
6374 tcg_temp_free_i32(tcg_res
);
6377 if (!TCGV_IS_UNUSED_PTR(fpst
)) {
6378 tcg_temp_free_ptr(fpst
);
6383 * Common SSHR[RA]/USHR[RA] - Shift right (optional rounding/accumulate)
6385 * This code is handles the common shifting code and is used by both
6386 * the vector and scalar code.
6388 static void handle_shri_with_rndacc(TCGv_i64 tcg_res
, TCGv_i64 tcg_src
,
6389 TCGv_i64 tcg_rnd
, bool accumulate
,
6390 bool is_u
, int size
, int shift
)
6392 bool extended_result
= false;
6393 bool round
= !TCGV_IS_UNUSED_I64(tcg_rnd
);
6395 TCGv_i64 tcg_src_hi
;
6397 if (round
&& size
== 3) {
6398 extended_result
= true;
6399 ext_lshift
= 64 - shift
;
6400 tcg_src_hi
= tcg_temp_new_i64();
6401 } else if (shift
== 64) {
6402 if (!accumulate
&& is_u
) {
6403 /* result is zero */
6404 tcg_gen_movi_i64(tcg_res
, 0);
6409 /* Deal with the rounding step */
6411 if (extended_result
) {
6412 TCGv_i64 tcg_zero
= tcg_const_i64(0);
6414 /* take care of sign extending tcg_res */
6415 tcg_gen_sari_i64(tcg_src_hi
, tcg_src
, 63);
6416 tcg_gen_add2_i64(tcg_src
, tcg_src_hi
,
6417 tcg_src
, tcg_src_hi
,
6420 tcg_gen_add2_i64(tcg_src
, tcg_src_hi
,
6424 tcg_temp_free_i64(tcg_zero
);
6426 tcg_gen_add_i64(tcg_src
, tcg_src
, tcg_rnd
);
6430 /* Now do the shift right */
6431 if (round
&& extended_result
) {
6432 /* extended case, >64 bit precision required */
6433 if (ext_lshift
== 0) {
6434 /* special case, only high bits matter */
6435 tcg_gen_mov_i64(tcg_src
, tcg_src_hi
);
6437 tcg_gen_shri_i64(tcg_src
, tcg_src
, shift
);
6438 tcg_gen_shli_i64(tcg_src_hi
, tcg_src_hi
, ext_lshift
);
6439 tcg_gen_or_i64(tcg_src
, tcg_src
, tcg_src_hi
);
6444 /* essentially shifting in 64 zeros */
6445 tcg_gen_movi_i64(tcg_src
, 0);
6447 tcg_gen_shri_i64(tcg_src
, tcg_src
, shift
);
6451 /* effectively extending the sign-bit */
6452 tcg_gen_sari_i64(tcg_src
, tcg_src
, 63);
6454 tcg_gen_sari_i64(tcg_src
, tcg_src
, shift
);
6460 tcg_gen_add_i64(tcg_res
, tcg_res
, tcg_src
);
6462 tcg_gen_mov_i64(tcg_res
, tcg_src
);
6465 if (extended_result
) {
6466 tcg_temp_free_i64(tcg_src_hi
);
6470 /* Common SHL/SLI - Shift left with an optional insert */
6471 static void handle_shli_with_ins(TCGv_i64 tcg_res
, TCGv_i64 tcg_src
,
6472 bool insert
, int shift
)
6474 if (insert
) { /* SLI */
6475 tcg_gen_deposit_i64(tcg_res
, tcg_res
, tcg_src
, shift
, 64 - shift
);
6477 tcg_gen_shli_i64(tcg_res
, tcg_src
, shift
);
6481 /* SRI: shift right with insert */
6482 static void handle_shri_with_ins(TCGv_i64 tcg_res
, TCGv_i64 tcg_src
,
6483 int size
, int shift
)
6485 int esize
= 8 << size
;
6487 /* shift count same as element size is valid but does nothing;
6488 * special case to avoid potential shift by 64.
6490 if (shift
!= esize
) {
6491 tcg_gen_shri_i64(tcg_src
, tcg_src
, shift
);
6492 tcg_gen_deposit_i64(tcg_res
, tcg_res
, tcg_src
, 0, esize
- shift
);
6496 /* SSHR[RA]/USHR[RA] - Scalar shift right (optional rounding/accumulate) */
6497 static void handle_scalar_simd_shri(DisasContext
*s
,
6498 bool is_u
, int immh
, int immb
,
6499 int opcode
, int rn
, int rd
)
6502 int immhb
= immh
<< 3 | immb
;
6503 int shift
= 2 * (8 << size
) - immhb
;
6504 bool accumulate
= false;
6506 bool insert
= false;
6511 if (!extract32(immh
, 3, 1)) {
6512 unallocated_encoding(s
);
6516 if (!fp_access_check(s
)) {
6521 case 0x02: /* SSRA / USRA (accumulate) */
6524 case 0x04: /* SRSHR / URSHR (rounding) */
6527 case 0x06: /* SRSRA / URSRA (accum + rounding) */
6528 accumulate
= round
= true;
6530 case 0x08: /* SRI */
6536 uint64_t round_const
= 1ULL << (shift
- 1);
6537 tcg_round
= tcg_const_i64(round_const
);
6539 TCGV_UNUSED_I64(tcg_round
);
6542 tcg_rn
= read_fp_dreg(s
, rn
);
6543 tcg_rd
= (accumulate
|| insert
) ? read_fp_dreg(s
, rd
) : tcg_temp_new_i64();
6546 handle_shri_with_ins(tcg_rd
, tcg_rn
, size
, shift
);
6548 handle_shri_with_rndacc(tcg_rd
, tcg_rn
, tcg_round
,
6549 accumulate
, is_u
, size
, shift
);
6552 write_fp_dreg(s
, rd
, tcg_rd
);
6554 tcg_temp_free_i64(tcg_rn
);
6555 tcg_temp_free_i64(tcg_rd
);
6557 tcg_temp_free_i64(tcg_round
);
6561 /* SHL/SLI - Scalar shift left */
6562 static void handle_scalar_simd_shli(DisasContext
*s
, bool insert
,
6563 int immh
, int immb
, int opcode
,
6566 int size
= 32 - clz32(immh
) - 1;
6567 int immhb
= immh
<< 3 | immb
;
6568 int shift
= immhb
- (8 << size
);
6569 TCGv_i64 tcg_rn
= new_tmp_a64(s
);
6570 TCGv_i64 tcg_rd
= new_tmp_a64(s
);
6572 if (!extract32(immh
, 3, 1)) {
6573 unallocated_encoding(s
);
6577 if (!fp_access_check(s
)) {
6581 tcg_rn
= read_fp_dreg(s
, rn
);
6582 tcg_rd
= insert
? read_fp_dreg(s
, rd
) : tcg_temp_new_i64();
6584 handle_shli_with_ins(tcg_rd
, tcg_rn
, insert
, shift
);
6586 write_fp_dreg(s
, rd
, tcg_rd
);
6588 tcg_temp_free_i64(tcg_rn
);
6589 tcg_temp_free_i64(tcg_rd
);
6592 /* SQSHRN/SQSHRUN - Saturating (signed/unsigned) shift right with
6593 * (signed/unsigned) narrowing */
6594 static void handle_vec_simd_sqshrn(DisasContext
*s
, bool is_scalar
, bool is_q
,
6595 bool is_u_shift
, bool is_u_narrow
,
6596 int immh
, int immb
, int opcode
,
6599 int immhb
= immh
<< 3 | immb
;
6600 int size
= 32 - clz32(immh
) - 1;
6601 int esize
= 8 << size
;
6602 int shift
= (2 * esize
) - immhb
;
6603 int elements
= is_scalar
? 1 : (64 / esize
);
6604 bool round
= extract32(opcode
, 0, 1);
6605 TCGMemOp ldop
= (size
+ 1) | (is_u_shift
? 0 : MO_SIGN
);
6606 TCGv_i64 tcg_rn
, tcg_rd
, tcg_round
;
6607 TCGv_i32 tcg_rd_narrowed
;
6610 static NeonGenNarrowEnvFn
* const signed_narrow_fns
[4][2] = {
6611 { gen_helper_neon_narrow_sat_s8
,
6612 gen_helper_neon_unarrow_sat8
},
6613 { gen_helper_neon_narrow_sat_s16
,
6614 gen_helper_neon_unarrow_sat16
},
6615 { gen_helper_neon_narrow_sat_s32
,
6616 gen_helper_neon_unarrow_sat32
},
6619 static NeonGenNarrowEnvFn
* const unsigned_narrow_fns
[4] = {
6620 gen_helper_neon_narrow_sat_u8
,
6621 gen_helper_neon_narrow_sat_u16
,
6622 gen_helper_neon_narrow_sat_u32
,
6625 NeonGenNarrowEnvFn
*narrowfn
;
6631 if (extract32(immh
, 3, 1)) {
6632 unallocated_encoding(s
);
6636 if (!fp_access_check(s
)) {
6641 narrowfn
= unsigned_narrow_fns
[size
];
6643 narrowfn
= signed_narrow_fns
[size
][is_u_narrow
? 1 : 0];
6646 tcg_rn
= tcg_temp_new_i64();
6647 tcg_rd
= tcg_temp_new_i64();
6648 tcg_rd_narrowed
= tcg_temp_new_i32();
6649 tcg_final
= tcg_const_i64(0);
6652 uint64_t round_const
= 1ULL << (shift
- 1);
6653 tcg_round
= tcg_const_i64(round_const
);
6655 TCGV_UNUSED_I64(tcg_round
);
6658 for (i
= 0; i
< elements
; i
++) {
6659 read_vec_element(s
, tcg_rn
, rn
, i
, ldop
);
6660 handle_shri_with_rndacc(tcg_rd
, tcg_rn
, tcg_round
,
6661 false, is_u_shift
, size
+1, shift
);
6662 narrowfn(tcg_rd_narrowed
, cpu_env
, tcg_rd
);
6663 tcg_gen_extu_i32_i64(tcg_rd
, tcg_rd_narrowed
);
6664 tcg_gen_deposit_i64(tcg_final
, tcg_final
, tcg_rd
, esize
* i
, esize
);
6668 clear_vec_high(s
, rd
);
6669 write_vec_element(s
, tcg_final
, rd
, 0, MO_64
);
6671 write_vec_element(s
, tcg_final
, rd
, 1, MO_64
);
6675 tcg_temp_free_i64(tcg_round
);
6677 tcg_temp_free_i64(tcg_rn
);
6678 tcg_temp_free_i64(tcg_rd
);
6679 tcg_temp_free_i32(tcg_rd_narrowed
);
6680 tcg_temp_free_i64(tcg_final
);
6684 /* SQSHLU, UQSHL, SQSHL: saturating left shifts */
6685 static void handle_simd_qshl(DisasContext
*s
, bool scalar
, bool is_q
,
6686 bool src_unsigned
, bool dst_unsigned
,
6687 int immh
, int immb
, int rn
, int rd
)
6689 int immhb
= immh
<< 3 | immb
;
6690 int size
= 32 - clz32(immh
) - 1;
6691 int shift
= immhb
- (8 << size
);
6695 assert(!(scalar
&& is_q
));
6698 if (!is_q
&& extract32(immh
, 3, 1)) {
6699 unallocated_encoding(s
);
6703 /* Since we use the variable-shift helpers we must
6704 * replicate the shift count into each element of
6705 * the tcg_shift value.
6709 shift
|= shift
<< 8;
6712 shift
|= shift
<< 16;
6718 g_assert_not_reached();
6722 if (!fp_access_check(s
)) {
6727 TCGv_i64 tcg_shift
= tcg_const_i64(shift
);
6728 static NeonGenTwo64OpEnvFn
* const fns
[2][2] = {
6729 { gen_helper_neon_qshl_s64
, gen_helper_neon_qshlu_s64
},
6730 { NULL
, gen_helper_neon_qshl_u64
},
6732 NeonGenTwo64OpEnvFn
*genfn
= fns
[src_unsigned
][dst_unsigned
];
6733 int maxpass
= is_q
? 2 : 1;
6735 for (pass
= 0; pass
< maxpass
; pass
++) {
6736 TCGv_i64 tcg_op
= tcg_temp_new_i64();
6738 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
6739 genfn(tcg_op
, cpu_env
, tcg_op
, tcg_shift
);
6740 write_vec_element(s
, tcg_op
, rd
, pass
, MO_64
);
6742 tcg_temp_free_i64(tcg_op
);
6744 tcg_temp_free_i64(tcg_shift
);
6747 clear_vec_high(s
, rd
);
6750 TCGv_i32 tcg_shift
= tcg_const_i32(shift
);
6751 static NeonGenTwoOpEnvFn
* const fns
[2][2][3] = {
6753 { gen_helper_neon_qshl_s8
,
6754 gen_helper_neon_qshl_s16
,
6755 gen_helper_neon_qshl_s32
},
6756 { gen_helper_neon_qshlu_s8
,
6757 gen_helper_neon_qshlu_s16
,
6758 gen_helper_neon_qshlu_s32
}
6760 { NULL
, NULL
, NULL
},
6761 { gen_helper_neon_qshl_u8
,
6762 gen_helper_neon_qshl_u16
,
6763 gen_helper_neon_qshl_u32
}
6766 NeonGenTwoOpEnvFn
*genfn
= fns
[src_unsigned
][dst_unsigned
][size
];
6767 TCGMemOp memop
= scalar
? size
: MO_32
;
6768 int maxpass
= scalar
? 1 : is_q
? 4 : 2;
6770 for (pass
= 0; pass
< maxpass
; pass
++) {
6771 TCGv_i32 tcg_op
= tcg_temp_new_i32();
6773 read_vec_element_i32(s
, tcg_op
, rn
, pass
, memop
);
6774 genfn(tcg_op
, cpu_env
, tcg_op
, tcg_shift
);
6778 tcg_gen_ext8u_i32(tcg_op
, tcg_op
);
6781 tcg_gen_ext16u_i32(tcg_op
, tcg_op
);
6786 g_assert_not_reached();
6788 write_fp_sreg(s
, rd
, tcg_op
);
6790 write_vec_element_i32(s
, tcg_op
, rd
, pass
, MO_32
);
6793 tcg_temp_free_i32(tcg_op
);
6795 tcg_temp_free_i32(tcg_shift
);
6797 if (!is_q
&& !scalar
) {
6798 clear_vec_high(s
, rd
);
6803 /* Common vector code for handling integer to FP conversion */
6804 static void handle_simd_intfp_conv(DisasContext
*s
, int rd
, int rn
,
6805 int elements
, int is_signed
,
6806 int fracbits
, int size
)
6808 bool is_double
= size
== 3 ? true : false;
6809 TCGv_ptr tcg_fpst
= get_fpstatus_ptr();
6810 TCGv_i32 tcg_shift
= tcg_const_i32(fracbits
);
6811 TCGv_i64 tcg_int
= tcg_temp_new_i64();
6812 TCGMemOp mop
= size
| (is_signed
? MO_SIGN
: 0);
6815 for (pass
= 0; pass
< elements
; pass
++) {
6816 read_vec_element(s
, tcg_int
, rn
, pass
, mop
);
6819 TCGv_i64 tcg_double
= tcg_temp_new_i64();
6821 gen_helper_vfp_sqtod(tcg_double
, tcg_int
,
6822 tcg_shift
, tcg_fpst
);
6824 gen_helper_vfp_uqtod(tcg_double
, tcg_int
,
6825 tcg_shift
, tcg_fpst
);
6827 if (elements
== 1) {
6828 write_fp_dreg(s
, rd
, tcg_double
);
6830 write_vec_element(s
, tcg_double
, rd
, pass
, MO_64
);
6832 tcg_temp_free_i64(tcg_double
);
6834 TCGv_i32 tcg_single
= tcg_temp_new_i32();
6836 gen_helper_vfp_sqtos(tcg_single
, tcg_int
,
6837 tcg_shift
, tcg_fpst
);
6839 gen_helper_vfp_uqtos(tcg_single
, tcg_int
,
6840 tcg_shift
, tcg_fpst
);
6842 if (elements
== 1) {
6843 write_fp_sreg(s
, rd
, tcg_single
);
6845 write_vec_element_i32(s
, tcg_single
, rd
, pass
, MO_32
);
6847 tcg_temp_free_i32(tcg_single
);
6851 if (!is_double
&& elements
== 2) {
6852 clear_vec_high(s
, rd
);
6855 tcg_temp_free_i64(tcg_int
);
6856 tcg_temp_free_ptr(tcg_fpst
);
6857 tcg_temp_free_i32(tcg_shift
);
6860 /* UCVTF/SCVTF - Integer to FP conversion */
6861 static void handle_simd_shift_intfp_conv(DisasContext
*s
, bool is_scalar
,
6862 bool is_q
, bool is_u
,
6863 int immh
, int immb
, int opcode
,
6866 bool is_double
= extract32(immh
, 3, 1);
6867 int size
= is_double
? MO_64
: MO_32
;
6869 int immhb
= immh
<< 3 | immb
;
6870 int fracbits
= (is_double
? 128 : 64) - immhb
;
6872 if (!extract32(immh
, 2, 2)) {
6873 unallocated_encoding(s
);
6880 elements
= is_double
? 2 : is_q
? 4 : 2;
6881 if (is_double
&& !is_q
) {
6882 unallocated_encoding(s
);
6887 if (!fp_access_check(s
)) {
6891 /* immh == 0 would be a failure of the decode logic */
6894 handle_simd_intfp_conv(s
, rd
, rn
, elements
, !is_u
, fracbits
, size
);
6897 /* FCVTZS, FVCVTZU - FP to fixedpoint conversion */
6898 static void handle_simd_shift_fpint_conv(DisasContext
*s
, bool is_scalar
,
6899 bool is_q
, bool is_u
,
6900 int immh
, int immb
, int rn
, int rd
)
6902 bool is_double
= extract32(immh
, 3, 1);
6903 int immhb
= immh
<< 3 | immb
;
6904 int fracbits
= (is_double
? 128 : 64) - immhb
;
6906 TCGv_ptr tcg_fpstatus
;
6907 TCGv_i32 tcg_rmode
, tcg_shift
;
6909 if (!extract32(immh
, 2, 2)) {
6910 unallocated_encoding(s
);
6914 if (!is_scalar
&& !is_q
&& is_double
) {
6915 unallocated_encoding(s
);
6919 if (!fp_access_check(s
)) {
6923 assert(!(is_scalar
&& is_q
));
6925 tcg_rmode
= tcg_const_i32(arm_rmode_to_sf(FPROUNDING_ZERO
));
6926 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
6927 tcg_fpstatus
= get_fpstatus_ptr();
6928 tcg_shift
= tcg_const_i32(fracbits
);
6931 int maxpass
= is_scalar
? 1 : 2;
6933 for (pass
= 0; pass
< maxpass
; pass
++) {
6934 TCGv_i64 tcg_op
= tcg_temp_new_i64();
6936 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
6938 gen_helper_vfp_touqd(tcg_op
, tcg_op
, tcg_shift
, tcg_fpstatus
);
6940 gen_helper_vfp_tosqd(tcg_op
, tcg_op
, tcg_shift
, tcg_fpstatus
);
6942 write_vec_element(s
, tcg_op
, rd
, pass
, MO_64
);
6943 tcg_temp_free_i64(tcg_op
);
6946 clear_vec_high(s
, rd
);
6949 int maxpass
= is_scalar
? 1 : is_q
? 4 : 2;
6950 for (pass
= 0; pass
< maxpass
; pass
++) {
6951 TCGv_i32 tcg_op
= tcg_temp_new_i32();
6953 read_vec_element_i32(s
, tcg_op
, rn
, pass
, MO_32
);
6955 gen_helper_vfp_touls(tcg_op
, tcg_op
, tcg_shift
, tcg_fpstatus
);
6957 gen_helper_vfp_tosls(tcg_op
, tcg_op
, tcg_shift
, tcg_fpstatus
);
6960 write_fp_sreg(s
, rd
, tcg_op
);
6962 write_vec_element_i32(s
, tcg_op
, rd
, pass
, MO_32
);
6964 tcg_temp_free_i32(tcg_op
);
6966 if (!is_q
&& !is_scalar
) {
6967 clear_vec_high(s
, rd
);
6971 tcg_temp_free_ptr(tcg_fpstatus
);
6972 tcg_temp_free_i32(tcg_shift
);
6973 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
6974 tcg_temp_free_i32(tcg_rmode
);
6977 /* C3.6.9 AdvSIMD scalar shift by immediate
6978 * 31 30 29 28 23 22 19 18 16 15 11 10 9 5 4 0
6979 * +-----+---+-------------+------+------+--------+---+------+------+
6980 * | 0 1 | U | 1 1 1 1 1 0 | immh | immb | opcode | 1 | Rn | Rd |
6981 * +-----+---+-------------+------+------+--------+---+------+------+
6983 * This is the scalar version so it works on a fixed sized registers
6985 static void disas_simd_scalar_shift_imm(DisasContext
*s
, uint32_t insn
)
6987 int rd
= extract32(insn
, 0, 5);
6988 int rn
= extract32(insn
, 5, 5);
6989 int opcode
= extract32(insn
, 11, 5);
6990 int immb
= extract32(insn
, 16, 3);
6991 int immh
= extract32(insn
, 19, 4);
6992 bool is_u
= extract32(insn
, 29, 1);
6995 unallocated_encoding(s
);
7000 case 0x08: /* SRI */
7002 unallocated_encoding(s
);
7006 case 0x00: /* SSHR / USHR */
7007 case 0x02: /* SSRA / USRA */
7008 case 0x04: /* SRSHR / URSHR */
7009 case 0x06: /* SRSRA / URSRA */
7010 handle_scalar_simd_shri(s
, is_u
, immh
, immb
, opcode
, rn
, rd
);
7012 case 0x0a: /* SHL / SLI */
7013 handle_scalar_simd_shli(s
, is_u
, immh
, immb
, opcode
, rn
, rd
);
7015 case 0x1c: /* SCVTF, UCVTF */
7016 handle_simd_shift_intfp_conv(s
, true, false, is_u
, immh
, immb
,
7019 case 0x10: /* SQSHRUN, SQSHRUN2 */
7020 case 0x11: /* SQRSHRUN, SQRSHRUN2 */
7022 unallocated_encoding(s
);
7025 handle_vec_simd_sqshrn(s
, true, false, false, true,
7026 immh
, immb
, opcode
, rn
, rd
);
7028 case 0x12: /* SQSHRN, SQSHRN2, UQSHRN */
7029 case 0x13: /* SQRSHRN, SQRSHRN2, UQRSHRN, UQRSHRN2 */
7030 handle_vec_simd_sqshrn(s
, true, false, is_u
, is_u
,
7031 immh
, immb
, opcode
, rn
, rd
);
7033 case 0xc: /* SQSHLU */
7035 unallocated_encoding(s
);
7038 handle_simd_qshl(s
, true, false, false, true, immh
, immb
, rn
, rd
);
7040 case 0xe: /* SQSHL, UQSHL */
7041 handle_simd_qshl(s
, true, false, is_u
, is_u
, immh
, immb
, rn
, rd
);
7043 case 0x1f: /* FCVTZS, FCVTZU */
7044 handle_simd_shift_fpint_conv(s
, true, false, is_u
, immh
, immb
, rn
, rd
);
7047 unallocated_encoding(s
);
7052 /* C3.6.10 AdvSIMD scalar three different
7053 * 31 30 29 28 24 23 22 21 20 16 15 12 11 10 9 5 4 0
7054 * +-----+---+-----------+------+---+------+--------+-----+------+------+
7055 * | 0 1 | U | 1 1 1 1 0 | size | 1 | Rm | opcode | 0 0 | Rn | Rd |
7056 * +-----+---+-----------+------+---+------+--------+-----+------+------+
7058 static void disas_simd_scalar_three_reg_diff(DisasContext
*s
, uint32_t insn
)
7060 bool is_u
= extract32(insn
, 29, 1);
7061 int size
= extract32(insn
, 22, 2);
7062 int opcode
= extract32(insn
, 12, 4);
7063 int rm
= extract32(insn
, 16, 5);
7064 int rn
= extract32(insn
, 5, 5);
7065 int rd
= extract32(insn
, 0, 5);
7068 unallocated_encoding(s
);
7073 case 0x9: /* SQDMLAL, SQDMLAL2 */
7074 case 0xb: /* SQDMLSL, SQDMLSL2 */
7075 case 0xd: /* SQDMULL, SQDMULL2 */
7076 if (size
== 0 || size
== 3) {
7077 unallocated_encoding(s
);
7082 unallocated_encoding(s
);
7086 if (!fp_access_check(s
)) {
7091 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
7092 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
7093 TCGv_i64 tcg_res
= tcg_temp_new_i64();
7095 read_vec_element(s
, tcg_op1
, rn
, 0, MO_32
| MO_SIGN
);
7096 read_vec_element(s
, tcg_op2
, rm
, 0, MO_32
| MO_SIGN
);
7098 tcg_gen_mul_i64(tcg_res
, tcg_op1
, tcg_op2
);
7099 gen_helper_neon_addl_saturate_s64(tcg_res
, cpu_env
, tcg_res
, tcg_res
);
7102 case 0xd: /* SQDMULL, SQDMULL2 */
7104 case 0xb: /* SQDMLSL, SQDMLSL2 */
7105 tcg_gen_neg_i64(tcg_res
, tcg_res
);
7107 case 0x9: /* SQDMLAL, SQDMLAL2 */
7108 read_vec_element(s
, tcg_op1
, rd
, 0, MO_64
);
7109 gen_helper_neon_addl_saturate_s64(tcg_res
, cpu_env
,
7113 g_assert_not_reached();
7116 write_fp_dreg(s
, rd
, tcg_res
);
7118 tcg_temp_free_i64(tcg_op1
);
7119 tcg_temp_free_i64(tcg_op2
);
7120 tcg_temp_free_i64(tcg_res
);
7122 TCGv_i32 tcg_op1
= tcg_temp_new_i32();
7123 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
7124 TCGv_i64 tcg_res
= tcg_temp_new_i64();
7126 read_vec_element_i32(s
, tcg_op1
, rn
, 0, MO_16
);
7127 read_vec_element_i32(s
, tcg_op2
, rm
, 0, MO_16
);
7129 gen_helper_neon_mull_s16(tcg_res
, tcg_op1
, tcg_op2
);
7130 gen_helper_neon_addl_saturate_s32(tcg_res
, cpu_env
, tcg_res
, tcg_res
);
7133 case 0xd: /* SQDMULL, SQDMULL2 */
7135 case 0xb: /* SQDMLSL, SQDMLSL2 */
7136 gen_helper_neon_negl_u32(tcg_res
, tcg_res
);
7138 case 0x9: /* SQDMLAL, SQDMLAL2 */
7140 TCGv_i64 tcg_op3
= tcg_temp_new_i64();
7141 read_vec_element(s
, tcg_op3
, rd
, 0, MO_32
);
7142 gen_helper_neon_addl_saturate_s32(tcg_res
, cpu_env
,
7144 tcg_temp_free_i64(tcg_op3
);
7148 g_assert_not_reached();
7151 tcg_gen_ext32u_i64(tcg_res
, tcg_res
);
7152 write_fp_dreg(s
, rd
, tcg_res
);
7154 tcg_temp_free_i32(tcg_op1
);
7155 tcg_temp_free_i32(tcg_op2
);
7156 tcg_temp_free_i64(tcg_res
);
7160 static void handle_3same_64(DisasContext
*s
, int opcode
, bool u
,
7161 TCGv_i64 tcg_rd
, TCGv_i64 tcg_rn
, TCGv_i64 tcg_rm
)
7163 /* Handle 64x64->64 opcodes which are shared between the scalar
7164 * and vector 3-same groups. We cover every opcode where size == 3
7165 * is valid in either the three-reg-same (integer, not pairwise)
7166 * or scalar-three-reg-same groups. (Some opcodes are not yet
7172 case 0x1: /* SQADD */
7174 gen_helper_neon_qadd_u64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7176 gen_helper_neon_qadd_s64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7179 case 0x5: /* SQSUB */
7181 gen_helper_neon_qsub_u64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7183 gen_helper_neon_qsub_s64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7186 case 0x6: /* CMGT, CMHI */
7187 /* 64 bit integer comparison, result = test ? (2^64 - 1) : 0.
7188 * We implement this using setcond (test) and then negating.
7190 cond
= u
? TCG_COND_GTU
: TCG_COND_GT
;
7192 tcg_gen_setcond_i64(cond
, tcg_rd
, tcg_rn
, tcg_rm
);
7193 tcg_gen_neg_i64(tcg_rd
, tcg_rd
);
7195 case 0x7: /* CMGE, CMHS */
7196 cond
= u
? TCG_COND_GEU
: TCG_COND_GE
;
7198 case 0x11: /* CMTST, CMEQ */
7203 /* CMTST : test is "if (X & Y != 0)". */
7204 tcg_gen_and_i64(tcg_rd
, tcg_rn
, tcg_rm
);
7205 tcg_gen_setcondi_i64(TCG_COND_NE
, tcg_rd
, tcg_rd
, 0);
7206 tcg_gen_neg_i64(tcg_rd
, tcg_rd
);
7208 case 0x8: /* SSHL, USHL */
7210 gen_helper_neon_shl_u64(tcg_rd
, tcg_rn
, tcg_rm
);
7212 gen_helper_neon_shl_s64(tcg_rd
, tcg_rn
, tcg_rm
);
7215 case 0x9: /* SQSHL, UQSHL */
7217 gen_helper_neon_qshl_u64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7219 gen_helper_neon_qshl_s64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7222 case 0xa: /* SRSHL, URSHL */
7224 gen_helper_neon_rshl_u64(tcg_rd
, tcg_rn
, tcg_rm
);
7226 gen_helper_neon_rshl_s64(tcg_rd
, tcg_rn
, tcg_rm
);
7229 case 0xb: /* SQRSHL, UQRSHL */
7231 gen_helper_neon_qrshl_u64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7233 gen_helper_neon_qrshl_s64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rm
);
7236 case 0x10: /* ADD, SUB */
7238 tcg_gen_sub_i64(tcg_rd
, tcg_rn
, tcg_rm
);
7240 tcg_gen_add_i64(tcg_rd
, tcg_rn
, tcg_rm
);
7244 g_assert_not_reached();
7248 /* Handle the 3-same-operands float operations; shared by the scalar
7249 * and vector encodings. The caller must filter out any encodings
7250 * not allocated for the encoding it is dealing with.
7252 static void handle_3same_float(DisasContext
*s
, int size
, int elements
,
7253 int fpopcode
, int rd
, int rn
, int rm
)
7256 TCGv_ptr fpst
= get_fpstatus_ptr();
7258 for (pass
= 0; pass
< elements
; pass
++) {
7261 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
7262 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
7263 TCGv_i64 tcg_res
= tcg_temp_new_i64();
7265 read_vec_element(s
, tcg_op1
, rn
, pass
, MO_64
);
7266 read_vec_element(s
, tcg_op2
, rm
, pass
, MO_64
);
7269 case 0x39: /* FMLS */
7270 /* As usual for ARM, separate negation for fused multiply-add */
7271 gen_helper_vfp_negd(tcg_op1
, tcg_op1
);
7273 case 0x19: /* FMLA */
7274 read_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
7275 gen_helper_vfp_muladdd(tcg_res
, tcg_op1
, tcg_op2
,
7278 case 0x18: /* FMAXNM */
7279 gen_helper_vfp_maxnumd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7281 case 0x1a: /* FADD */
7282 gen_helper_vfp_addd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7284 case 0x1b: /* FMULX */
7285 gen_helper_vfp_mulxd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7287 case 0x1c: /* FCMEQ */
7288 gen_helper_neon_ceq_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7290 case 0x1e: /* FMAX */
7291 gen_helper_vfp_maxd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7293 case 0x1f: /* FRECPS */
7294 gen_helper_recpsf_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7296 case 0x38: /* FMINNM */
7297 gen_helper_vfp_minnumd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7299 case 0x3a: /* FSUB */
7300 gen_helper_vfp_subd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7302 case 0x3e: /* FMIN */
7303 gen_helper_vfp_mind(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7305 case 0x3f: /* FRSQRTS */
7306 gen_helper_rsqrtsf_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7308 case 0x5b: /* FMUL */
7309 gen_helper_vfp_muld(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7311 case 0x5c: /* FCMGE */
7312 gen_helper_neon_cge_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7314 case 0x5d: /* FACGE */
7315 gen_helper_neon_acge_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7317 case 0x5f: /* FDIV */
7318 gen_helper_vfp_divd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7320 case 0x7a: /* FABD */
7321 gen_helper_vfp_subd(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7322 gen_helper_vfp_absd(tcg_res
, tcg_res
);
7324 case 0x7c: /* FCMGT */
7325 gen_helper_neon_cgt_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7327 case 0x7d: /* FACGT */
7328 gen_helper_neon_acgt_f64(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7331 g_assert_not_reached();
7334 write_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
7336 tcg_temp_free_i64(tcg_res
);
7337 tcg_temp_free_i64(tcg_op1
);
7338 tcg_temp_free_i64(tcg_op2
);
7341 TCGv_i32 tcg_op1
= tcg_temp_new_i32();
7342 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
7343 TCGv_i32 tcg_res
= tcg_temp_new_i32();
7345 read_vec_element_i32(s
, tcg_op1
, rn
, pass
, MO_32
);
7346 read_vec_element_i32(s
, tcg_op2
, rm
, pass
, MO_32
);
7349 case 0x39: /* FMLS */
7350 /* As usual for ARM, separate negation for fused multiply-add */
7351 gen_helper_vfp_negs(tcg_op1
, tcg_op1
);
7353 case 0x19: /* FMLA */
7354 read_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
7355 gen_helper_vfp_muladds(tcg_res
, tcg_op1
, tcg_op2
,
7358 case 0x1a: /* FADD */
7359 gen_helper_vfp_adds(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7361 case 0x1b: /* FMULX */
7362 gen_helper_vfp_mulxs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7364 case 0x1c: /* FCMEQ */
7365 gen_helper_neon_ceq_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7367 case 0x1e: /* FMAX */
7368 gen_helper_vfp_maxs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7370 case 0x1f: /* FRECPS */
7371 gen_helper_recpsf_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7373 case 0x18: /* FMAXNM */
7374 gen_helper_vfp_maxnums(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7376 case 0x38: /* FMINNM */
7377 gen_helper_vfp_minnums(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7379 case 0x3a: /* FSUB */
7380 gen_helper_vfp_subs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7382 case 0x3e: /* FMIN */
7383 gen_helper_vfp_mins(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7385 case 0x3f: /* FRSQRTS */
7386 gen_helper_rsqrtsf_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7388 case 0x5b: /* FMUL */
7389 gen_helper_vfp_muls(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7391 case 0x5c: /* FCMGE */
7392 gen_helper_neon_cge_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7394 case 0x5d: /* FACGE */
7395 gen_helper_neon_acge_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7397 case 0x5f: /* FDIV */
7398 gen_helper_vfp_divs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7400 case 0x7a: /* FABD */
7401 gen_helper_vfp_subs(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7402 gen_helper_vfp_abss(tcg_res
, tcg_res
);
7404 case 0x7c: /* FCMGT */
7405 gen_helper_neon_cgt_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7407 case 0x7d: /* FACGT */
7408 gen_helper_neon_acgt_f32(tcg_res
, tcg_op1
, tcg_op2
, fpst
);
7411 g_assert_not_reached();
7414 if (elements
== 1) {
7415 /* scalar single so clear high part */
7416 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
7418 tcg_gen_extu_i32_i64(tcg_tmp
, tcg_res
);
7419 write_vec_element(s
, tcg_tmp
, rd
, pass
, MO_64
);
7420 tcg_temp_free_i64(tcg_tmp
);
7422 write_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
7425 tcg_temp_free_i32(tcg_res
);
7426 tcg_temp_free_i32(tcg_op1
);
7427 tcg_temp_free_i32(tcg_op2
);
7431 tcg_temp_free_ptr(fpst
);
7433 if ((elements
<< size
) < 4) {
7434 /* scalar, or non-quad vector op */
7435 clear_vec_high(s
, rd
);
7439 /* C3.6.11 AdvSIMD scalar three same
7440 * 31 30 29 28 24 23 22 21 20 16 15 11 10 9 5 4 0
7441 * +-----+---+-----------+------+---+------+--------+---+------+------+
7442 * | 0 1 | U | 1 1 1 1 0 | size | 1 | Rm | opcode | 1 | Rn | Rd |
7443 * +-----+---+-----------+------+---+------+--------+---+------+------+
7445 static void disas_simd_scalar_three_reg_same(DisasContext
*s
, uint32_t insn
)
7447 int rd
= extract32(insn
, 0, 5);
7448 int rn
= extract32(insn
, 5, 5);
7449 int opcode
= extract32(insn
, 11, 5);
7450 int rm
= extract32(insn
, 16, 5);
7451 int size
= extract32(insn
, 22, 2);
7452 bool u
= extract32(insn
, 29, 1);
7455 if (opcode
>= 0x18) {
7456 /* Floating point: U, size[1] and opcode indicate operation */
7457 int fpopcode
= opcode
| (extract32(size
, 1, 1) << 5) | (u
<< 6);
7459 case 0x1b: /* FMULX */
7460 case 0x1f: /* FRECPS */
7461 case 0x3f: /* FRSQRTS */
7462 case 0x5d: /* FACGE */
7463 case 0x7d: /* FACGT */
7464 case 0x1c: /* FCMEQ */
7465 case 0x5c: /* FCMGE */
7466 case 0x7c: /* FCMGT */
7467 case 0x7a: /* FABD */
7470 unallocated_encoding(s
);
7474 if (!fp_access_check(s
)) {
7478 handle_3same_float(s
, extract32(size
, 0, 1), 1, fpopcode
, rd
, rn
, rm
);
7483 case 0x1: /* SQADD, UQADD */
7484 case 0x5: /* SQSUB, UQSUB */
7485 case 0x9: /* SQSHL, UQSHL */
7486 case 0xb: /* SQRSHL, UQRSHL */
7488 case 0x8: /* SSHL, USHL */
7489 case 0xa: /* SRSHL, URSHL */
7490 case 0x6: /* CMGT, CMHI */
7491 case 0x7: /* CMGE, CMHS */
7492 case 0x11: /* CMTST, CMEQ */
7493 case 0x10: /* ADD, SUB (vector) */
7495 unallocated_encoding(s
);
7499 case 0x16: /* SQDMULH, SQRDMULH (vector) */
7500 if (size
!= 1 && size
!= 2) {
7501 unallocated_encoding(s
);
7506 unallocated_encoding(s
);
7510 if (!fp_access_check(s
)) {
7514 tcg_rd
= tcg_temp_new_i64();
7517 TCGv_i64 tcg_rn
= read_fp_dreg(s
, rn
);
7518 TCGv_i64 tcg_rm
= read_fp_dreg(s
, rm
);
7520 handle_3same_64(s
, opcode
, u
, tcg_rd
, tcg_rn
, tcg_rm
);
7521 tcg_temp_free_i64(tcg_rn
);
7522 tcg_temp_free_i64(tcg_rm
);
7524 /* Do a single operation on the lowest element in the vector.
7525 * We use the standard Neon helpers and rely on 0 OP 0 == 0 with
7526 * no side effects for all these operations.
7527 * OPTME: special-purpose helpers would avoid doing some
7528 * unnecessary work in the helper for the 8 and 16 bit cases.
7530 NeonGenTwoOpEnvFn
*genenvfn
;
7531 TCGv_i32 tcg_rn
= tcg_temp_new_i32();
7532 TCGv_i32 tcg_rm
= tcg_temp_new_i32();
7533 TCGv_i32 tcg_rd32
= tcg_temp_new_i32();
7535 read_vec_element_i32(s
, tcg_rn
, rn
, 0, size
);
7536 read_vec_element_i32(s
, tcg_rm
, rm
, 0, size
);
7539 case 0x1: /* SQADD, UQADD */
7541 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
7542 { gen_helper_neon_qadd_s8
, gen_helper_neon_qadd_u8
},
7543 { gen_helper_neon_qadd_s16
, gen_helper_neon_qadd_u16
},
7544 { gen_helper_neon_qadd_s32
, gen_helper_neon_qadd_u32
},
7546 genenvfn
= fns
[size
][u
];
7549 case 0x5: /* SQSUB, UQSUB */
7551 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
7552 { gen_helper_neon_qsub_s8
, gen_helper_neon_qsub_u8
},
7553 { gen_helper_neon_qsub_s16
, gen_helper_neon_qsub_u16
},
7554 { gen_helper_neon_qsub_s32
, gen_helper_neon_qsub_u32
},
7556 genenvfn
= fns
[size
][u
];
7559 case 0x9: /* SQSHL, UQSHL */
7561 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
7562 { gen_helper_neon_qshl_s8
, gen_helper_neon_qshl_u8
},
7563 { gen_helper_neon_qshl_s16
, gen_helper_neon_qshl_u16
},
7564 { gen_helper_neon_qshl_s32
, gen_helper_neon_qshl_u32
},
7566 genenvfn
= fns
[size
][u
];
7569 case 0xb: /* SQRSHL, UQRSHL */
7571 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
7572 { gen_helper_neon_qrshl_s8
, gen_helper_neon_qrshl_u8
},
7573 { gen_helper_neon_qrshl_s16
, gen_helper_neon_qrshl_u16
},
7574 { gen_helper_neon_qrshl_s32
, gen_helper_neon_qrshl_u32
},
7576 genenvfn
= fns
[size
][u
];
7579 case 0x16: /* SQDMULH, SQRDMULH */
7581 static NeonGenTwoOpEnvFn
* const fns
[2][2] = {
7582 { gen_helper_neon_qdmulh_s16
, gen_helper_neon_qrdmulh_s16
},
7583 { gen_helper_neon_qdmulh_s32
, gen_helper_neon_qrdmulh_s32
},
7585 assert(size
== 1 || size
== 2);
7586 genenvfn
= fns
[size
- 1][u
];
7590 g_assert_not_reached();
7593 genenvfn(tcg_rd32
, cpu_env
, tcg_rn
, tcg_rm
);
7594 tcg_gen_extu_i32_i64(tcg_rd
, tcg_rd32
);
7595 tcg_temp_free_i32(tcg_rd32
);
7596 tcg_temp_free_i32(tcg_rn
);
7597 tcg_temp_free_i32(tcg_rm
);
7600 write_fp_dreg(s
, rd
, tcg_rd
);
7602 tcg_temp_free_i64(tcg_rd
);
7605 static void handle_2misc_64(DisasContext
*s
, int opcode
, bool u
,
7606 TCGv_i64 tcg_rd
, TCGv_i64 tcg_rn
,
7607 TCGv_i32 tcg_rmode
, TCGv_ptr tcg_fpstatus
)
7609 /* Handle 64->64 opcodes which are shared between the scalar and
7610 * vector 2-reg-misc groups. We cover every integer opcode where size == 3
7611 * is valid in either group and also the double-precision fp ops.
7612 * The caller only need provide tcg_rmode and tcg_fpstatus if the op
7618 case 0x4: /* CLS, CLZ */
7620 gen_helper_clz64(tcg_rd
, tcg_rn
);
7622 gen_helper_cls64(tcg_rd
, tcg_rn
);
7626 /* This opcode is shared with CNT and RBIT but we have earlier
7627 * enforced that size == 3 if and only if this is the NOT insn.
7629 tcg_gen_not_i64(tcg_rd
, tcg_rn
);
7631 case 0x7: /* SQABS, SQNEG */
7633 gen_helper_neon_qneg_s64(tcg_rd
, cpu_env
, tcg_rn
);
7635 gen_helper_neon_qabs_s64(tcg_rd
, cpu_env
, tcg_rn
);
7638 case 0xa: /* CMLT */
7639 /* 64 bit integer comparison against zero, result is
7640 * test ? (2^64 - 1) : 0. We implement via setcond(!test) and
7645 tcg_gen_setcondi_i64(cond
, tcg_rd
, tcg_rn
, 0);
7646 tcg_gen_neg_i64(tcg_rd
, tcg_rd
);
7648 case 0x8: /* CMGT, CMGE */
7649 cond
= u
? TCG_COND_GE
: TCG_COND_GT
;
7651 case 0x9: /* CMEQ, CMLE */
7652 cond
= u
? TCG_COND_LE
: TCG_COND_EQ
;
7654 case 0xb: /* ABS, NEG */
7656 tcg_gen_neg_i64(tcg_rd
, tcg_rn
);
7658 TCGv_i64 tcg_zero
= tcg_const_i64(0);
7659 tcg_gen_neg_i64(tcg_rd
, tcg_rn
);
7660 tcg_gen_movcond_i64(TCG_COND_GT
, tcg_rd
, tcg_rn
, tcg_zero
,
7662 tcg_temp_free_i64(tcg_zero
);
7665 case 0x2f: /* FABS */
7666 gen_helper_vfp_absd(tcg_rd
, tcg_rn
);
7668 case 0x6f: /* FNEG */
7669 gen_helper_vfp_negd(tcg_rd
, tcg_rn
);
7671 case 0x7f: /* FSQRT */
7672 gen_helper_vfp_sqrtd(tcg_rd
, tcg_rn
, cpu_env
);
7674 case 0x1a: /* FCVTNS */
7675 case 0x1b: /* FCVTMS */
7676 case 0x1c: /* FCVTAS */
7677 case 0x3a: /* FCVTPS */
7678 case 0x3b: /* FCVTZS */
7680 TCGv_i32 tcg_shift
= tcg_const_i32(0);
7681 gen_helper_vfp_tosqd(tcg_rd
, tcg_rn
, tcg_shift
, tcg_fpstatus
);
7682 tcg_temp_free_i32(tcg_shift
);
7685 case 0x5a: /* FCVTNU */
7686 case 0x5b: /* FCVTMU */
7687 case 0x5c: /* FCVTAU */
7688 case 0x7a: /* FCVTPU */
7689 case 0x7b: /* FCVTZU */
7691 TCGv_i32 tcg_shift
= tcg_const_i32(0);
7692 gen_helper_vfp_touqd(tcg_rd
, tcg_rn
, tcg_shift
, tcg_fpstatus
);
7693 tcg_temp_free_i32(tcg_shift
);
7696 case 0x18: /* FRINTN */
7697 case 0x19: /* FRINTM */
7698 case 0x38: /* FRINTP */
7699 case 0x39: /* FRINTZ */
7700 case 0x58: /* FRINTA */
7701 case 0x79: /* FRINTI */
7702 gen_helper_rintd(tcg_rd
, tcg_rn
, tcg_fpstatus
);
7704 case 0x59: /* FRINTX */
7705 gen_helper_rintd_exact(tcg_rd
, tcg_rn
, tcg_fpstatus
);
7708 g_assert_not_reached();
7712 static void handle_2misc_fcmp_zero(DisasContext
*s
, int opcode
,
7713 bool is_scalar
, bool is_u
, bool is_q
,
7714 int size
, int rn
, int rd
)
7716 bool is_double
= (size
== 3);
7719 if (!fp_access_check(s
)) {
7723 fpst
= get_fpstatus_ptr();
7726 TCGv_i64 tcg_op
= tcg_temp_new_i64();
7727 TCGv_i64 tcg_zero
= tcg_const_i64(0);
7728 TCGv_i64 tcg_res
= tcg_temp_new_i64();
7729 NeonGenTwoDoubleOPFn
*genfn
;
7734 case 0x2e: /* FCMLT (zero) */
7737 case 0x2c: /* FCMGT (zero) */
7738 genfn
= gen_helper_neon_cgt_f64
;
7740 case 0x2d: /* FCMEQ (zero) */
7741 genfn
= gen_helper_neon_ceq_f64
;
7743 case 0x6d: /* FCMLE (zero) */
7746 case 0x6c: /* FCMGE (zero) */
7747 genfn
= gen_helper_neon_cge_f64
;
7750 g_assert_not_reached();
7753 for (pass
= 0; pass
< (is_scalar
? 1 : 2); pass
++) {
7754 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
7756 genfn(tcg_res
, tcg_zero
, tcg_op
, fpst
);
7758 genfn(tcg_res
, tcg_op
, tcg_zero
, fpst
);
7760 write_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
7763 clear_vec_high(s
, rd
);
7766 tcg_temp_free_i64(tcg_res
);
7767 tcg_temp_free_i64(tcg_zero
);
7768 tcg_temp_free_i64(tcg_op
);
7770 TCGv_i32 tcg_op
= tcg_temp_new_i32();
7771 TCGv_i32 tcg_zero
= tcg_const_i32(0);
7772 TCGv_i32 tcg_res
= tcg_temp_new_i32();
7773 NeonGenTwoSingleOPFn
*genfn
;
7775 int pass
, maxpasses
;
7778 case 0x2e: /* FCMLT (zero) */
7781 case 0x2c: /* FCMGT (zero) */
7782 genfn
= gen_helper_neon_cgt_f32
;
7784 case 0x2d: /* FCMEQ (zero) */
7785 genfn
= gen_helper_neon_ceq_f32
;
7787 case 0x6d: /* FCMLE (zero) */
7790 case 0x6c: /* FCMGE (zero) */
7791 genfn
= gen_helper_neon_cge_f32
;
7794 g_assert_not_reached();
7800 maxpasses
= is_q
? 4 : 2;
7803 for (pass
= 0; pass
< maxpasses
; pass
++) {
7804 read_vec_element_i32(s
, tcg_op
, rn
, pass
, MO_32
);
7806 genfn(tcg_res
, tcg_zero
, tcg_op
, fpst
);
7808 genfn(tcg_res
, tcg_op
, tcg_zero
, fpst
);
7811 write_fp_sreg(s
, rd
, tcg_res
);
7813 write_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
7816 tcg_temp_free_i32(tcg_res
);
7817 tcg_temp_free_i32(tcg_zero
);
7818 tcg_temp_free_i32(tcg_op
);
7819 if (!is_q
&& !is_scalar
) {
7820 clear_vec_high(s
, rd
);
7824 tcg_temp_free_ptr(fpst
);
7827 static void handle_2misc_reciprocal(DisasContext
*s
, int opcode
,
7828 bool is_scalar
, bool is_u
, bool is_q
,
7829 int size
, int rn
, int rd
)
7831 bool is_double
= (size
== 3);
7832 TCGv_ptr fpst
= get_fpstatus_ptr();
7835 TCGv_i64 tcg_op
= tcg_temp_new_i64();
7836 TCGv_i64 tcg_res
= tcg_temp_new_i64();
7839 for (pass
= 0; pass
< (is_scalar
? 1 : 2); pass
++) {
7840 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
7842 case 0x3d: /* FRECPE */
7843 gen_helper_recpe_f64(tcg_res
, tcg_op
, fpst
);
7845 case 0x3f: /* FRECPX */
7846 gen_helper_frecpx_f64(tcg_res
, tcg_op
, fpst
);
7848 case 0x7d: /* FRSQRTE */
7849 gen_helper_rsqrte_f64(tcg_res
, tcg_op
, fpst
);
7852 g_assert_not_reached();
7854 write_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
7857 clear_vec_high(s
, rd
);
7860 tcg_temp_free_i64(tcg_res
);
7861 tcg_temp_free_i64(tcg_op
);
7863 TCGv_i32 tcg_op
= tcg_temp_new_i32();
7864 TCGv_i32 tcg_res
= tcg_temp_new_i32();
7865 int pass
, maxpasses
;
7870 maxpasses
= is_q
? 4 : 2;
7873 for (pass
= 0; pass
< maxpasses
; pass
++) {
7874 read_vec_element_i32(s
, tcg_op
, rn
, pass
, MO_32
);
7877 case 0x3c: /* URECPE */
7878 gen_helper_recpe_u32(tcg_res
, tcg_op
, fpst
);
7880 case 0x3d: /* FRECPE */
7881 gen_helper_recpe_f32(tcg_res
, tcg_op
, fpst
);
7883 case 0x3f: /* FRECPX */
7884 gen_helper_frecpx_f32(tcg_res
, tcg_op
, fpst
);
7886 case 0x7d: /* FRSQRTE */
7887 gen_helper_rsqrte_f32(tcg_res
, tcg_op
, fpst
);
7890 g_assert_not_reached();
7894 write_fp_sreg(s
, rd
, tcg_res
);
7896 write_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
7899 tcg_temp_free_i32(tcg_res
);
7900 tcg_temp_free_i32(tcg_op
);
7901 if (!is_q
&& !is_scalar
) {
7902 clear_vec_high(s
, rd
);
7905 tcg_temp_free_ptr(fpst
);
7908 static void handle_2misc_narrow(DisasContext
*s
, bool scalar
,
7909 int opcode
, bool u
, bool is_q
,
7910 int size
, int rn
, int rd
)
7912 /* Handle 2-reg-misc ops which are narrowing (so each 2*size element
7913 * in the source becomes a size element in the destination).
7916 TCGv_i32 tcg_res
[2];
7917 int destelt
= is_q
? 2 : 0;
7918 int passes
= scalar
? 1 : 2;
7921 tcg_res
[1] = tcg_const_i32(0);
7924 for (pass
= 0; pass
< passes
; pass
++) {
7925 TCGv_i64 tcg_op
= tcg_temp_new_i64();
7926 NeonGenNarrowFn
*genfn
= NULL
;
7927 NeonGenNarrowEnvFn
*genenvfn
= NULL
;
7930 read_vec_element(s
, tcg_op
, rn
, pass
, size
+ 1);
7932 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
7934 tcg_res
[pass
] = tcg_temp_new_i32();
7937 case 0x12: /* XTN, SQXTUN */
7939 static NeonGenNarrowFn
* const xtnfns
[3] = {
7940 gen_helper_neon_narrow_u8
,
7941 gen_helper_neon_narrow_u16
,
7942 tcg_gen_extrl_i64_i32
,
7944 static NeonGenNarrowEnvFn
* const sqxtunfns
[3] = {
7945 gen_helper_neon_unarrow_sat8
,
7946 gen_helper_neon_unarrow_sat16
,
7947 gen_helper_neon_unarrow_sat32
,
7950 genenvfn
= sqxtunfns
[size
];
7952 genfn
= xtnfns
[size
];
7956 case 0x14: /* SQXTN, UQXTN */
7958 static NeonGenNarrowEnvFn
* const fns
[3][2] = {
7959 { gen_helper_neon_narrow_sat_s8
,
7960 gen_helper_neon_narrow_sat_u8
},
7961 { gen_helper_neon_narrow_sat_s16
,
7962 gen_helper_neon_narrow_sat_u16
},
7963 { gen_helper_neon_narrow_sat_s32
,
7964 gen_helper_neon_narrow_sat_u32
},
7966 genenvfn
= fns
[size
][u
];
7969 case 0x16: /* FCVTN, FCVTN2 */
7970 /* 32 bit to 16 bit or 64 bit to 32 bit float conversion */
7972 gen_helper_vfp_fcvtsd(tcg_res
[pass
], tcg_op
, cpu_env
);
7974 TCGv_i32 tcg_lo
= tcg_temp_new_i32();
7975 TCGv_i32 tcg_hi
= tcg_temp_new_i32();
7976 tcg_gen_extr_i64_i32(tcg_lo
, tcg_hi
, tcg_op
);
7977 gen_helper_vfp_fcvt_f32_to_f16(tcg_lo
, tcg_lo
, cpu_env
);
7978 gen_helper_vfp_fcvt_f32_to_f16(tcg_hi
, tcg_hi
, cpu_env
);
7979 tcg_gen_deposit_i32(tcg_res
[pass
], tcg_lo
, tcg_hi
, 16, 16);
7980 tcg_temp_free_i32(tcg_lo
);
7981 tcg_temp_free_i32(tcg_hi
);
7984 case 0x56: /* FCVTXN, FCVTXN2 */
7985 /* 64 bit to 32 bit float conversion
7986 * with von Neumann rounding (round to odd)
7989 gen_helper_fcvtx_f64_to_f32(tcg_res
[pass
], tcg_op
, cpu_env
);
7992 g_assert_not_reached();
7996 genfn(tcg_res
[pass
], tcg_op
);
7997 } else if (genenvfn
) {
7998 genenvfn(tcg_res
[pass
], cpu_env
, tcg_op
);
8001 tcg_temp_free_i64(tcg_op
);
8004 for (pass
= 0; pass
< 2; pass
++) {
8005 write_vec_element_i32(s
, tcg_res
[pass
], rd
, destelt
+ pass
, MO_32
);
8006 tcg_temp_free_i32(tcg_res
[pass
]);
8009 clear_vec_high(s
, rd
);
8013 /* Remaining saturating accumulating ops */
8014 static void handle_2misc_satacc(DisasContext
*s
, bool is_scalar
, bool is_u
,
8015 bool is_q
, int size
, int rn
, int rd
)
8017 bool is_double
= (size
== 3);
8020 TCGv_i64 tcg_rn
= tcg_temp_new_i64();
8021 TCGv_i64 tcg_rd
= tcg_temp_new_i64();
8024 for (pass
= 0; pass
< (is_scalar
? 1 : 2); pass
++) {
8025 read_vec_element(s
, tcg_rn
, rn
, pass
, MO_64
);
8026 read_vec_element(s
, tcg_rd
, rd
, pass
, MO_64
);
8028 if (is_u
) { /* USQADD */
8029 gen_helper_neon_uqadd_s64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8030 } else { /* SUQADD */
8031 gen_helper_neon_sqadd_u64(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8033 write_vec_element(s
, tcg_rd
, rd
, pass
, MO_64
);
8036 clear_vec_high(s
, rd
);
8039 tcg_temp_free_i64(tcg_rd
);
8040 tcg_temp_free_i64(tcg_rn
);
8042 TCGv_i32 tcg_rn
= tcg_temp_new_i32();
8043 TCGv_i32 tcg_rd
= tcg_temp_new_i32();
8044 int pass
, maxpasses
;
8049 maxpasses
= is_q
? 4 : 2;
8052 for (pass
= 0; pass
< maxpasses
; pass
++) {
8054 read_vec_element_i32(s
, tcg_rn
, rn
, pass
, size
);
8055 read_vec_element_i32(s
, tcg_rd
, rd
, pass
, size
);
8057 read_vec_element_i32(s
, tcg_rn
, rn
, pass
, MO_32
);
8058 read_vec_element_i32(s
, tcg_rd
, rd
, pass
, MO_32
);
8061 if (is_u
) { /* USQADD */
8064 gen_helper_neon_uqadd_s8(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8067 gen_helper_neon_uqadd_s16(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8070 gen_helper_neon_uqadd_s32(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8073 g_assert_not_reached();
8075 } else { /* SUQADD */
8078 gen_helper_neon_sqadd_u8(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8081 gen_helper_neon_sqadd_u16(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8084 gen_helper_neon_sqadd_u32(tcg_rd
, cpu_env
, tcg_rn
, tcg_rd
);
8087 g_assert_not_reached();
8092 TCGv_i64 tcg_zero
= tcg_const_i64(0);
8093 write_vec_element(s
, tcg_zero
, rd
, 0, MO_64
);
8094 tcg_temp_free_i64(tcg_zero
);
8096 write_vec_element_i32(s
, tcg_rd
, rd
, pass
, MO_32
);
8100 clear_vec_high(s
, rd
);
8103 tcg_temp_free_i32(tcg_rd
);
8104 tcg_temp_free_i32(tcg_rn
);
8108 /* C3.6.12 AdvSIMD scalar two reg misc
8109 * 31 30 29 28 24 23 22 21 17 16 12 11 10 9 5 4 0
8110 * +-----+---+-----------+------+-----------+--------+-----+------+------+
8111 * | 0 1 | U | 1 1 1 1 0 | size | 1 0 0 0 0 | opcode | 1 0 | Rn | Rd |
8112 * +-----+---+-----------+------+-----------+--------+-----+------+------+
8114 static void disas_simd_scalar_two_reg_misc(DisasContext
*s
, uint32_t insn
)
8116 int rd
= extract32(insn
, 0, 5);
8117 int rn
= extract32(insn
, 5, 5);
8118 int opcode
= extract32(insn
, 12, 5);
8119 int size
= extract32(insn
, 22, 2);
8120 bool u
= extract32(insn
, 29, 1);
8121 bool is_fcvt
= false;
8124 TCGv_ptr tcg_fpstatus
;
8127 case 0x3: /* USQADD / SUQADD*/
8128 if (!fp_access_check(s
)) {
8131 handle_2misc_satacc(s
, true, u
, false, size
, rn
, rd
);
8133 case 0x7: /* SQABS / SQNEG */
8135 case 0xa: /* CMLT */
8137 unallocated_encoding(s
);
8141 case 0x8: /* CMGT, CMGE */
8142 case 0x9: /* CMEQ, CMLE */
8143 case 0xb: /* ABS, NEG */
8145 unallocated_encoding(s
);
8149 case 0x12: /* SQXTUN */
8151 unallocated_encoding(s
);
8155 case 0x14: /* SQXTN, UQXTN */
8157 unallocated_encoding(s
);
8160 if (!fp_access_check(s
)) {
8163 handle_2misc_narrow(s
, true, opcode
, u
, false, size
, rn
, rd
);
8168 /* Floating point: U, size[1] and opcode indicate operation;
8169 * size[0] indicates single or double precision.
8171 opcode
|= (extract32(size
, 1, 1) << 5) | (u
<< 6);
8172 size
= extract32(size
, 0, 1) ? 3 : 2;
8174 case 0x2c: /* FCMGT (zero) */
8175 case 0x2d: /* FCMEQ (zero) */
8176 case 0x2e: /* FCMLT (zero) */
8177 case 0x6c: /* FCMGE (zero) */
8178 case 0x6d: /* FCMLE (zero) */
8179 handle_2misc_fcmp_zero(s
, opcode
, true, u
, true, size
, rn
, rd
);
8181 case 0x1d: /* SCVTF */
8182 case 0x5d: /* UCVTF */
8184 bool is_signed
= (opcode
== 0x1d);
8185 if (!fp_access_check(s
)) {
8188 handle_simd_intfp_conv(s
, rd
, rn
, 1, is_signed
, 0, size
);
8191 case 0x3d: /* FRECPE */
8192 case 0x3f: /* FRECPX */
8193 case 0x7d: /* FRSQRTE */
8194 if (!fp_access_check(s
)) {
8197 handle_2misc_reciprocal(s
, opcode
, true, u
, true, size
, rn
, rd
);
8199 case 0x1a: /* FCVTNS */
8200 case 0x1b: /* FCVTMS */
8201 case 0x3a: /* FCVTPS */
8202 case 0x3b: /* FCVTZS */
8203 case 0x5a: /* FCVTNU */
8204 case 0x5b: /* FCVTMU */
8205 case 0x7a: /* FCVTPU */
8206 case 0x7b: /* FCVTZU */
8208 rmode
= extract32(opcode
, 5, 1) | (extract32(opcode
, 0, 1) << 1);
8210 case 0x1c: /* FCVTAS */
8211 case 0x5c: /* FCVTAU */
8212 /* TIEAWAY doesn't fit in the usual rounding mode encoding */
8214 rmode
= FPROUNDING_TIEAWAY
;
8216 case 0x56: /* FCVTXN, FCVTXN2 */
8218 unallocated_encoding(s
);
8221 if (!fp_access_check(s
)) {
8224 handle_2misc_narrow(s
, true, opcode
, u
, false, size
- 1, rn
, rd
);
8227 unallocated_encoding(s
);
8232 unallocated_encoding(s
);
8236 if (!fp_access_check(s
)) {
8241 tcg_rmode
= tcg_const_i32(arm_rmode_to_sf(rmode
));
8242 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
8243 tcg_fpstatus
= get_fpstatus_ptr();
8245 TCGV_UNUSED_I32(tcg_rmode
);
8246 TCGV_UNUSED_PTR(tcg_fpstatus
);
8250 TCGv_i64 tcg_rn
= read_fp_dreg(s
, rn
);
8251 TCGv_i64 tcg_rd
= tcg_temp_new_i64();
8253 handle_2misc_64(s
, opcode
, u
, tcg_rd
, tcg_rn
, tcg_rmode
, tcg_fpstatus
);
8254 write_fp_dreg(s
, rd
, tcg_rd
);
8255 tcg_temp_free_i64(tcg_rd
);
8256 tcg_temp_free_i64(tcg_rn
);
8258 TCGv_i32 tcg_rn
= tcg_temp_new_i32();
8259 TCGv_i32 tcg_rd
= tcg_temp_new_i32();
8261 read_vec_element_i32(s
, tcg_rn
, rn
, 0, size
);
8264 case 0x7: /* SQABS, SQNEG */
8266 NeonGenOneOpEnvFn
*genfn
;
8267 static NeonGenOneOpEnvFn
* const fns
[3][2] = {
8268 { gen_helper_neon_qabs_s8
, gen_helper_neon_qneg_s8
},
8269 { gen_helper_neon_qabs_s16
, gen_helper_neon_qneg_s16
},
8270 { gen_helper_neon_qabs_s32
, gen_helper_neon_qneg_s32
},
8272 genfn
= fns
[size
][u
];
8273 genfn(tcg_rd
, cpu_env
, tcg_rn
);
8276 case 0x1a: /* FCVTNS */
8277 case 0x1b: /* FCVTMS */
8278 case 0x1c: /* FCVTAS */
8279 case 0x3a: /* FCVTPS */
8280 case 0x3b: /* FCVTZS */
8282 TCGv_i32 tcg_shift
= tcg_const_i32(0);
8283 gen_helper_vfp_tosls(tcg_rd
, tcg_rn
, tcg_shift
, tcg_fpstatus
);
8284 tcg_temp_free_i32(tcg_shift
);
8287 case 0x5a: /* FCVTNU */
8288 case 0x5b: /* FCVTMU */
8289 case 0x5c: /* FCVTAU */
8290 case 0x7a: /* FCVTPU */
8291 case 0x7b: /* FCVTZU */
8293 TCGv_i32 tcg_shift
= tcg_const_i32(0);
8294 gen_helper_vfp_touls(tcg_rd
, tcg_rn
, tcg_shift
, tcg_fpstatus
);
8295 tcg_temp_free_i32(tcg_shift
);
8299 g_assert_not_reached();
8302 write_fp_sreg(s
, rd
, tcg_rd
);
8303 tcg_temp_free_i32(tcg_rd
);
8304 tcg_temp_free_i32(tcg_rn
);
8308 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
8309 tcg_temp_free_i32(tcg_rmode
);
8310 tcg_temp_free_ptr(tcg_fpstatus
);
8314 /* SSHR[RA]/USHR[RA] - Vector shift right (optional rounding/accumulate) */
8315 static void handle_vec_simd_shri(DisasContext
*s
, bool is_q
, bool is_u
,
8316 int immh
, int immb
, int opcode
, int rn
, int rd
)
8318 int size
= 32 - clz32(immh
) - 1;
8319 int immhb
= immh
<< 3 | immb
;
8320 int shift
= 2 * (8 << size
) - immhb
;
8321 bool accumulate
= false;
8323 bool insert
= false;
8324 int dsize
= is_q
? 128 : 64;
8325 int esize
= 8 << size
;
8326 int elements
= dsize
/esize
;
8327 TCGMemOp memop
= size
| (is_u
? 0 : MO_SIGN
);
8328 TCGv_i64 tcg_rn
= new_tmp_a64(s
);
8329 TCGv_i64 tcg_rd
= new_tmp_a64(s
);
8333 if (extract32(immh
, 3, 1) && !is_q
) {
8334 unallocated_encoding(s
);
8338 if (size
> 3 && !is_q
) {
8339 unallocated_encoding(s
);
8343 if (!fp_access_check(s
)) {
8348 case 0x02: /* SSRA / USRA (accumulate) */
8351 case 0x04: /* SRSHR / URSHR (rounding) */
8354 case 0x06: /* SRSRA / URSRA (accum + rounding) */
8355 accumulate
= round
= true;
8357 case 0x08: /* SRI */
8363 uint64_t round_const
= 1ULL << (shift
- 1);
8364 tcg_round
= tcg_const_i64(round_const
);
8366 TCGV_UNUSED_I64(tcg_round
);
8369 for (i
= 0; i
< elements
; i
++) {
8370 read_vec_element(s
, tcg_rn
, rn
, i
, memop
);
8371 if (accumulate
|| insert
) {
8372 read_vec_element(s
, tcg_rd
, rd
, i
, memop
);
8376 handle_shri_with_ins(tcg_rd
, tcg_rn
, size
, shift
);
8378 handle_shri_with_rndacc(tcg_rd
, tcg_rn
, tcg_round
,
8379 accumulate
, is_u
, size
, shift
);
8382 write_vec_element(s
, tcg_rd
, rd
, i
, size
);
8386 clear_vec_high(s
, rd
);
8390 tcg_temp_free_i64(tcg_round
);
8394 /* SHL/SLI - Vector shift left */
8395 static void handle_vec_simd_shli(DisasContext
*s
, bool is_q
, bool insert
,
8396 int immh
, int immb
, int opcode
, int rn
, int rd
)
8398 int size
= 32 - clz32(immh
) - 1;
8399 int immhb
= immh
<< 3 | immb
;
8400 int shift
= immhb
- (8 << size
);
8401 int dsize
= is_q
? 128 : 64;
8402 int esize
= 8 << size
;
8403 int elements
= dsize
/esize
;
8404 TCGv_i64 tcg_rn
= new_tmp_a64(s
);
8405 TCGv_i64 tcg_rd
= new_tmp_a64(s
);
8408 if (extract32(immh
, 3, 1) && !is_q
) {
8409 unallocated_encoding(s
);
8413 if (size
> 3 && !is_q
) {
8414 unallocated_encoding(s
);
8418 if (!fp_access_check(s
)) {
8422 for (i
= 0; i
< elements
; i
++) {
8423 read_vec_element(s
, tcg_rn
, rn
, i
, size
);
8425 read_vec_element(s
, tcg_rd
, rd
, i
, size
);
8428 handle_shli_with_ins(tcg_rd
, tcg_rn
, insert
, shift
);
8430 write_vec_element(s
, tcg_rd
, rd
, i
, size
);
8434 clear_vec_high(s
, rd
);
8438 /* USHLL/SHLL - Vector shift left with widening */
8439 static void handle_vec_simd_wshli(DisasContext
*s
, bool is_q
, bool is_u
,
8440 int immh
, int immb
, int opcode
, int rn
, int rd
)
8442 int size
= 32 - clz32(immh
) - 1;
8443 int immhb
= immh
<< 3 | immb
;
8444 int shift
= immhb
- (8 << size
);
8446 int esize
= 8 << size
;
8447 int elements
= dsize
/esize
;
8448 TCGv_i64 tcg_rn
= new_tmp_a64(s
);
8449 TCGv_i64 tcg_rd
= new_tmp_a64(s
);
8453 unallocated_encoding(s
);
8457 if (!fp_access_check(s
)) {
8461 /* For the LL variants the store is larger than the load,
8462 * so if rd == rn we would overwrite parts of our input.
8463 * So load everything right now and use shifts in the main loop.
8465 read_vec_element(s
, tcg_rn
, rn
, is_q
? 1 : 0, MO_64
);
8467 for (i
= 0; i
< elements
; i
++) {
8468 tcg_gen_shri_i64(tcg_rd
, tcg_rn
, i
* esize
);
8469 ext_and_shift_reg(tcg_rd
, tcg_rd
, size
| (!is_u
<< 2), 0);
8470 tcg_gen_shli_i64(tcg_rd
, tcg_rd
, shift
);
8471 write_vec_element(s
, tcg_rd
, rd
, i
, size
+ 1);
8475 /* SHRN/RSHRN - Shift right with narrowing (and potential rounding) */
8476 static void handle_vec_simd_shrn(DisasContext
*s
, bool is_q
,
8477 int immh
, int immb
, int opcode
, int rn
, int rd
)
8479 int immhb
= immh
<< 3 | immb
;
8480 int size
= 32 - clz32(immh
) - 1;
8482 int esize
= 8 << size
;
8483 int elements
= dsize
/esize
;
8484 int shift
= (2 * esize
) - immhb
;
8485 bool round
= extract32(opcode
, 0, 1);
8486 TCGv_i64 tcg_rn
, tcg_rd
, tcg_final
;
8490 if (extract32(immh
, 3, 1)) {
8491 unallocated_encoding(s
);
8495 if (!fp_access_check(s
)) {
8499 tcg_rn
= tcg_temp_new_i64();
8500 tcg_rd
= tcg_temp_new_i64();
8501 tcg_final
= tcg_temp_new_i64();
8502 read_vec_element(s
, tcg_final
, rd
, is_q
? 1 : 0, MO_64
);
8505 uint64_t round_const
= 1ULL << (shift
- 1);
8506 tcg_round
= tcg_const_i64(round_const
);
8508 TCGV_UNUSED_I64(tcg_round
);
8511 for (i
= 0; i
< elements
; i
++) {
8512 read_vec_element(s
, tcg_rn
, rn
, i
, size
+1);
8513 handle_shri_with_rndacc(tcg_rd
, tcg_rn
, tcg_round
,
8514 false, true, size
+1, shift
);
8516 tcg_gen_deposit_i64(tcg_final
, tcg_final
, tcg_rd
, esize
* i
, esize
);
8520 clear_vec_high(s
, rd
);
8521 write_vec_element(s
, tcg_final
, rd
, 0, MO_64
);
8523 write_vec_element(s
, tcg_final
, rd
, 1, MO_64
);
8527 tcg_temp_free_i64(tcg_round
);
8529 tcg_temp_free_i64(tcg_rn
);
8530 tcg_temp_free_i64(tcg_rd
);
8531 tcg_temp_free_i64(tcg_final
);
8536 /* C3.6.14 AdvSIMD shift by immediate
8537 * 31 30 29 28 23 22 19 18 16 15 11 10 9 5 4 0
8538 * +---+---+---+-------------+------+------+--------+---+------+------+
8539 * | 0 | Q | U | 0 1 1 1 1 0 | immh | immb | opcode | 1 | Rn | Rd |
8540 * +---+---+---+-------------+------+------+--------+---+------+------+
8542 static void disas_simd_shift_imm(DisasContext
*s
, uint32_t insn
)
8544 int rd
= extract32(insn
, 0, 5);
8545 int rn
= extract32(insn
, 5, 5);
8546 int opcode
= extract32(insn
, 11, 5);
8547 int immb
= extract32(insn
, 16, 3);
8548 int immh
= extract32(insn
, 19, 4);
8549 bool is_u
= extract32(insn
, 29, 1);
8550 bool is_q
= extract32(insn
, 30, 1);
8553 case 0x08: /* SRI */
8555 unallocated_encoding(s
);
8559 case 0x00: /* SSHR / USHR */
8560 case 0x02: /* SSRA / USRA (accumulate) */
8561 case 0x04: /* SRSHR / URSHR (rounding) */
8562 case 0x06: /* SRSRA / URSRA (accum + rounding) */
8563 handle_vec_simd_shri(s
, is_q
, is_u
, immh
, immb
, opcode
, rn
, rd
);
8565 case 0x0a: /* SHL / SLI */
8566 handle_vec_simd_shli(s
, is_q
, is_u
, immh
, immb
, opcode
, rn
, rd
);
8568 case 0x10: /* SHRN */
8569 case 0x11: /* RSHRN / SQRSHRUN */
8571 handle_vec_simd_sqshrn(s
, false, is_q
, false, true, immh
, immb
,
8574 handle_vec_simd_shrn(s
, is_q
, immh
, immb
, opcode
, rn
, rd
);
8577 case 0x12: /* SQSHRN / UQSHRN */
8578 case 0x13: /* SQRSHRN / UQRSHRN */
8579 handle_vec_simd_sqshrn(s
, false, is_q
, is_u
, is_u
, immh
, immb
,
8582 case 0x14: /* SSHLL / USHLL */
8583 handle_vec_simd_wshli(s
, is_q
, is_u
, immh
, immb
, opcode
, rn
, rd
);
8585 case 0x1c: /* SCVTF / UCVTF */
8586 handle_simd_shift_intfp_conv(s
, false, is_q
, is_u
, immh
, immb
,
8589 case 0xc: /* SQSHLU */
8591 unallocated_encoding(s
);
8594 handle_simd_qshl(s
, false, is_q
, false, true, immh
, immb
, rn
, rd
);
8596 case 0xe: /* SQSHL, UQSHL */
8597 handle_simd_qshl(s
, false, is_q
, is_u
, is_u
, immh
, immb
, rn
, rd
);
8599 case 0x1f: /* FCVTZS/ FCVTZU */
8600 handle_simd_shift_fpint_conv(s
, false, is_q
, is_u
, immh
, immb
, rn
, rd
);
8603 unallocated_encoding(s
);
8608 /* Generate code to do a "long" addition or subtraction, ie one done in
8609 * TCGv_i64 on vector lanes twice the width specified by size.
8611 static void gen_neon_addl(int size
, bool is_sub
, TCGv_i64 tcg_res
,
8612 TCGv_i64 tcg_op1
, TCGv_i64 tcg_op2
)
8614 static NeonGenTwo64OpFn
* const fns
[3][2] = {
8615 { gen_helper_neon_addl_u16
, gen_helper_neon_subl_u16
},
8616 { gen_helper_neon_addl_u32
, gen_helper_neon_subl_u32
},
8617 { tcg_gen_add_i64
, tcg_gen_sub_i64
},
8619 NeonGenTwo64OpFn
*genfn
;
8622 genfn
= fns
[size
][is_sub
];
8623 genfn(tcg_res
, tcg_op1
, tcg_op2
);
8626 static void handle_3rd_widening(DisasContext
*s
, int is_q
, int is_u
, int size
,
8627 int opcode
, int rd
, int rn
, int rm
)
8629 /* 3-reg-different widening insns: 64 x 64 -> 128 */
8630 TCGv_i64 tcg_res
[2];
8633 tcg_res
[0] = tcg_temp_new_i64();
8634 tcg_res
[1] = tcg_temp_new_i64();
8636 /* Does this op do an adding accumulate, a subtracting accumulate,
8637 * or no accumulate at all?
8655 read_vec_element(s
, tcg_res
[0], rd
, 0, MO_64
);
8656 read_vec_element(s
, tcg_res
[1], rd
, 1, MO_64
);
8659 /* size == 2 means two 32x32->64 operations; this is worth special
8660 * casing because we can generally handle it inline.
8663 for (pass
= 0; pass
< 2; pass
++) {
8664 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
8665 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
8666 TCGv_i64 tcg_passres
;
8667 TCGMemOp memop
= MO_32
| (is_u
? 0 : MO_SIGN
);
8669 int elt
= pass
+ is_q
* 2;
8671 read_vec_element(s
, tcg_op1
, rn
, elt
, memop
);
8672 read_vec_element(s
, tcg_op2
, rm
, elt
, memop
);
8675 tcg_passres
= tcg_res
[pass
];
8677 tcg_passres
= tcg_temp_new_i64();
8681 case 0: /* SADDL, SADDL2, UADDL, UADDL2 */
8682 tcg_gen_add_i64(tcg_passres
, tcg_op1
, tcg_op2
);
8684 case 2: /* SSUBL, SSUBL2, USUBL, USUBL2 */
8685 tcg_gen_sub_i64(tcg_passres
, tcg_op1
, tcg_op2
);
8687 case 5: /* SABAL, SABAL2, UABAL, UABAL2 */
8688 case 7: /* SABDL, SABDL2, UABDL, UABDL2 */
8690 TCGv_i64 tcg_tmp1
= tcg_temp_new_i64();
8691 TCGv_i64 tcg_tmp2
= tcg_temp_new_i64();
8693 tcg_gen_sub_i64(tcg_tmp1
, tcg_op1
, tcg_op2
);
8694 tcg_gen_sub_i64(tcg_tmp2
, tcg_op2
, tcg_op1
);
8695 tcg_gen_movcond_i64(is_u
? TCG_COND_GEU
: TCG_COND_GE
,
8697 tcg_op1
, tcg_op2
, tcg_tmp1
, tcg_tmp2
);
8698 tcg_temp_free_i64(tcg_tmp1
);
8699 tcg_temp_free_i64(tcg_tmp2
);
8702 case 8: /* SMLAL, SMLAL2, UMLAL, UMLAL2 */
8703 case 10: /* SMLSL, SMLSL2, UMLSL, UMLSL2 */
8704 case 12: /* UMULL, UMULL2, SMULL, SMULL2 */
8705 tcg_gen_mul_i64(tcg_passres
, tcg_op1
, tcg_op2
);
8707 case 9: /* SQDMLAL, SQDMLAL2 */
8708 case 11: /* SQDMLSL, SQDMLSL2 */
8709 case 13: /* SQDMULL, SQDMULL2 */
8710 tcg_gen_mul_i64(tcg_passres
, tcg_op1
, tcg_op2
);
8711 gen_helper_neon_addl_saturate_s64(tcg_passres
, cpu_env
,
8712 tcg_passres
, tcg_passres
);
8715 g_assert_not_reached();
8718 if (opcode
== 9 || opcode
== 11) {
8719 /* saturating accumulate ops */
8721 tcg_gen_neg_i64(tcg_passres
, tcg_passres
);
8723 gen_helper_neon_addl_saturate_s64(tcg_res
[pass
], cpu_env
,
8724 tcg_res
[pass
], tcg_passres
);
8725 } else if (accop
> 0) {
8726 tcg_gen_add_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_passres
);
8727 } else if (accop
< 0) {
8728 tcg_gen_sub_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_passres
);
8732 tcg_temp_free_i64(tcg_passres
);
8735 tcg_temp_free_i64(tcg_op1
);
8736 tcg_temp_free_i64(tcg_op2
);
8739 /* size 0 or 1, generally helper functions */
8740 for (pass
= 0; pass
< 2; pass
++) {
8741 TCGv_i32 tcg_op1
= tcg_temp_new_i32();
8742 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
8743 TCGv_i64 tcg_passres
;
8744 int elt
= pass
+ is_q
* 2;
8746 read_vec_element_i32(s
, tcg_op1
, rn
, elt
, MO_32
);
8747 read_vec_element_i32(s
, tcg_op2
, rm
, elt
, MO_32
);
8750 tcg_passres
= tcg_res
[pass
];
8752 tcg_passres
= tcg_temp_new_i64();
8756 case 0: /* SADDL, SADDL2, UADDL, UADDL2 */
8757 case 2: /* SSUBL, SSUBL2, USUBL, USUBL2 */
8759 TCGv_i64 tcg_op2_64
= tcg_temp_new_i64();
8760 static NeonGenWidenFn
* const widenfns
[2][2] = {
8761 { gen_helper_neon_widen_s8
, gen_helper_neon_widen_u8
},
8762 { gen_helper_neon_widen_s16
, gen_helper_neon_widen_u16
},
8764 NeonGenWidenFn
*widenfn
= widenfns
[size
][is_u
];
8766 widenfn(tcg_op2_64
, tcg_op2
);
8767 widenfn(tcg_passres
, tcg_op1
);
8768 gen_neon_addl(size
, (opcode
== 2), tcg_passres
,
8769 tcg_passres
, tcg_op2_64
);
8770 tcg_temp_free_i64(tcg_op2_64
);
8773 case 5: /* SABAL, SABAL2, UABAL, UABAL2 */
8774 case 7: /* SABDL, SABDL2, UABDL, UABDL2 */
8777 gen_helper_neon_abdl_u16(tcg_passres
, tcg_op1
, tcg_op2
);
8779 gen_helper_neon_abdl_s16(tcg_passres
, tcg_op1
, tcg_op2
);
8783 gen_helper_neon_abdl_u32(tcg_passres
, tcg_op1
, tcg_op2
);
8785 gen_helper_neon_abdl_s32(tcg_passres
, tcg_op1
, tcg_op2
);
8789 case 8: /* SMLAL, SMLAL2, UMLAL, UMLAL2 */
8790 case 10: /* SMLSL, SMLSL2, UMLSL, UMLSL2 */
8791 case 12: /* UMULL, UMULL2, SMULL, SMULL2 */
8794 gen_helper_neon_mull_u8(tcg_passres
, tcg_op1
, tcg_op2
);
8796 gen_helper_neon_mull_s8(tcg_passres
, tcg_op1
, tcg_op2
);
8800 gen_helper_neon_mull_u16(tcg_passres
, tcg_op1
, tcg_op2
);
8802 gen_helper_neon_mull_s16(tcg_passres
, tcg_op1
, tcg_op2
);
8806 case 9: /* SQDMLAL, SQDMLAL2 */
8807 case 11: /* SQDMLSL, SQDMLSL2 */
8808 case 13: /* SQDMULL, SQDMULL2 */
8810 gen_helper_neon_mull_s16(tcg_passres
, tcg_op1
, tcg_op2
);
8811 gen_helper_neon_addl_saturate_s32(tcg_passres
, cpu_env
,
8812 tcg_passres
, tcg_passres
);
8814 case 14: /* PMULL */
8816 gen_helper_neon_mull_p8(tcg_passres
, tcg_op1
, tcg_op2
);
8819 g_assert_not_reached();
8821 tcg_temp_free_i32(tcg_op1
);
8822 tcg_temp_free_i32(tcg_op2
);
8825 if (opcode
== 9 || opcode
== 11) {
8826 /* saturating accumulate ops */
8828 gen_helper_neon_negl_u32(tcg_passres
, tcg_passres
);
8830 gen_helper_neon_addl_saturate_s32(tcg_res
[pass
], cpu_env
,
8834 gen_neon_addl(size
, (accop
< 0), tcg_res
[pass
],
8835 tcg_res
[pass
], tcg_passres
);
8837 tcg_temp_free_i64(tcg_passres
);
8842 write_vec_element(s
, tcg_res
[0], rd
, 0, MO_64
);
8843 write_vec_element(s
, tcg_res
[1], rd
, 1, MO_64
);
8844 tcg_temp_free_i64(tcg_res
[0]);
8845 tcg_temp_free_i64(tcg_res
[1]);
8848 static void handle_3rd_wide(DisasContext
*s
, int is_q
, int is_u
, int size
,
8849 int opcode
, int rd
, int rn
, int rm
)
8851 TCGv_i64 tcg_res
[2];
8852 int part
= is_q
? 2 : 0;
8855 for (pass
= 0; pass
< 2; pass
++) {
8856 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
8857 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
8858 TCGv_i64 tcg_op2_wide
= tcg_temp_new_i64();
8859 static NeonGenWidenFn
* const widenfns
[3][2] = {
8860 { gen_helper_neon_widen_s8
, gen_helper_neon_widen_u8
},
8861 { gen_helper_neon_widen_s16
, gen_helper_neon_widen_u16
},
8862 { tcg_gen_ext_i32_i64
, tcg_gen_extu_i32_i64
},
8864 NeonGenWidenFn
*widenfn
= widenfns
[size
][is_u
];
8866 read_vec_element(s
, tcg_op1
, rn
, pass
, MO_64
);
8867 read_vec_element_i32(s
, tcg_op2
, rm
, part
+ pass
, MO_32
);
8868 widenfn(tcg_op2_wide
, tcg_op2
);
8869 tcg_temp_free_i32(tcg_op2
);
8870 tcg_res
[pass
] = tcg_temp_new_i64();
8871 gen_neon_addl(size
, (opcode
== 3),
8872 tcg_res
[pass
], tcg_op1
, tcg_op2_wide
);
8873 tcg_temp_free_i64(tcg_op1
);
8874 tcg_temp_free_i64(tcg_op2_wide
);
8877 for (pass
= 0; pass
< 2; pass
++) {
8878 write_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
8879 tcg_temp_free_i64(tcg_res
[pass
]);
8883 static void do_narrow_round_high_u32(TCGv_i32 res
, TCGv_i64 in
)
8885 tcg_gen_addi_i64(in
, in
, 1U << 31);
8886 tcg_gen_extrh_i64_i32(res
, in
);
8889 static void handle_3rd_narrowing(DisasContext
*s
, int is_q
, int is_u
, int size
,
8890 int opcode
, int rd
, int rn
, int rm
)
8892 TCGv_i32 tcg_res
[2];
8893 int part
= is_q
? 2 : 0;
8896 for (pass
= 0; pass
< 2; pass
++) {
8897 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
8898 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
8899 TCGv_i64 tcg_wideres
= tcg_temp_new_i64();
8900 static NeonGenNarrowFn
* const narrowfns
[3][2] = {
8901 { gen_helper_neon_narrow_high_u8
,
8902 gen_helper_neon_narrow_round_high_u8
},
8903 { gen_helper_neon_narrow_high_u16
,
8904 gen_helper_neon_narrow_round_high_u16
},
8905 { tcg_gen_extrh_i64_i32
, do_narrow_round_high_u32
},
8907 NeonGenNarrowFn
*gennarrow
= narrowfns
[size
][is_u
];
8909 read_vec_element(s
, tcg_op1
, rn
, pass
, MO_64
);
8910 read_vec_element(s
, tcg_op2
, rm
, pass
, MO_64
);
8912 gen_neon_addl(size
, (opcode
== 6), tcg_wideres
, tcg_op1
, tcg_op2
);
8914 tcg_temp_free_i64(tcg_op1
);
8915 tcg_temp_free_i64(tcg_op2
);
8917 tcg_res
[pass
] = tcg_temp_new_i32();
8918 gennarrow(tcg_res
[pass
], tcg_wideres
);
8919 tcg_temp_free_i64(tcg_wideres
);
8922 for (pass
= 0; pass
< 2; pass
++) {
8923 write_vec_element_i32(s
, tcg_res
[pass
], rd
, pass
+ part
, MO_32
);
8924 tcg_temp_free_i32(tcg_res
[pass
]);
8927 clear_vec_high(s
, rd
);
8931 static void handle_pmull_64(DisasContext
*s
, int is_q
, int rd
, int rn
, int rm
)
8933 /* PMULL of 64 x 64 -> 128 is an odd special case because it
8934 * is the only three-reg-diff instruction which produces a
8935 * 128-bit wide result from a single operation. However since
8936 * it's possible to calculate the two halves more or less
8937 * separately we just use two helper calls.
8939 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
8940 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
8941 TCGv_i64 tcg_res
= tcg_temp_new_i64();
8943 read_vec_element(s
, tcg_op1
, rn
, is_q
, MO_64
);
8944 read_vec_element(s
, tcg_op2
, rm
, is_q
, MO_64
);
8945 gen_helper_neon_pmull_64_lo(tcg_res
, tcg_op1
, tcg_op2
);
8946 write_vec_element(s
, tcg_res
, rd
, 0, MO_64
);
8947 gen_helper_neon_pmull_64_hi(tcg_res
, tcg_op1
, tcg_op2
);
8948 write_vec_element(s
, tcg_res
, rd
, 1, MO_64
);
8950 tcg_temp_free_i64(tcg_op1
);
8951 tcg_temp_free_i64(tcg_op2
);
8952 tcg_temp_free_i64(tcg_res
);
8955 /* C3.6.15 AdvSIMD three different
8956 * 31 30 29 28 24 23 22 21 20 16 15 12 11 10 9 5 4 0
8957 * +---+---+---+-----------+------+---+------+--------+-----+------+------+
8958 * | 0 | Q | U | 0 1 1 1 0 | size | 1 | Rm | opcode | 0 0 | Rn | Rd |
8959 * +---+---+---+-----------+------+---+------+--------+-----+------+------+
8961 static void disas_simd_three_reg_diff(DisasContext
*s
, uint32_t insn
)
8963 /* Instructions in this group fall into three basic classes
8964 * (in each case with the operation working on each element in
8965 * the input vectors):
8966 * (1) widening 64 x 64 -> 128 (with possibly Vd as an extra
8968 * (2) wide 64 x 128 -> 128
8969 * (3) narrowing 128 x 128 -> 64
8970 * Here we do initial decode, catch unallocated cases and
8971 * dispatch to separate functions for each class.
8973 int is_q
= extract32(insn
, 30, 1);
8974 int is_u
= extract32(insn
, 29, 1);
8975 int size
= extract32(insn
, 22, 2);
8976 int opcode
= extract32(insn
, 12, 4);
8977 int rm
= extract32(insn
, 16, 5);
8978 int rn
= extract32(insn
, 5, 5);
8979 int rd
= extract32(insn
, 0, 5);
8982 case 1: /* SADDW, SADDW2, UADDW, UADDW2 */
8983 case 3: /* SSUBW, SSUBW2, USUBW, USUBW2 */
8984 /* 64 x 128 -> 128 */
8986 unallocated_encoding(s
);
8989 if (!fp_access_check(s
)) {
8992 handle_3rd_wide(s
, is_q
, is_u
, size
, opcode
, rd
, rn
, rm
);
8994 case 4: /* ADDHN, ADDHN2, RADDHN, RADDHN2 */
8995 case 6: /* SUBHN, SUBHN2, RSUBHN, RSUBHN2 */
8996 /* 128 x 128 -> 64 */
8998 unallocated_encoding(s
);
9001 if (!fp_access_check(s
)) {
9004 handle_3rd_narrowing(s
, is_q
, is_u
, size
, opcode
, rd
, rn
, rm
);
9006 case 14: /* PMULL, PMULL2 */
9007 if (is_u
|| size
== 1 || size
== 2) {
9008 unallocated_encoding(s
);
9012 if (!arm_dc_feature(s
, ARM_FEATURE_V8_PMULL
)) {
9013 unallocated_encoding(s
);
9016 if (!fp_access_check(s
)) {
9019 handle_pmull_64(s
, is_q
, rd
, rn
, rm
);
9023 case 9: /* SQDMLAL, SQDMLAL2 */
9024 case 11: /* SQDMLSL, SQDMLSL2 */
9025 case 13: /* SQDMULL, SQDMULL2 */
9026 if (is_u
|| size
== 0) {
9027 unallocated_encoding(s
);
9031 case 0: /* SADDL, SADDL2, UADDL, UADDL2 */
9032 case 2: /* SSUBL, SSUBL2, USUBL, USUBL2 */
9033 case 5: /* SABAL, SABAL2, UABAL, UABAL2 */
9034 case 7: /* SABDL, SABDL2, UABDL, UABDL2 */
9035 case 8: /* SMLAL, SMLAL2, UMLAL, UMLAL2 */
9036 case 10: /* SMLSL, SMLSL2, UMLSL, UMLSL2 */
9037 case 12: /* SMULL, SMULL2, UMULL, UMULL2 */
9038 /* 64 x 64 -> 128 */
9040 unallocated_encoding(s
);
9044 if (!fp_access_check(s
)) {
9048 handle_3rd_widening(s
, is_q
, is_u
, size
, opcode
, rd
, rn
, rm
);
9051 /* opcode 15 not allocated */
9052 unallocated_encoding(s
);
9057 /* Logic op (opcode == 3) subgroup of C3.6.16. */
9058 static void disas_simd_3same_logic(DisasContext
*s
, uint32_t insn
)
9060 int rd
= extract32(insn
, 0, 5);
9061 int rn
= extract32(insn
, 5, 5);
9062 int rm
= extract32(insn
, 16, 5);
9063 int size
= extract32(insn
, 22, 2);
9064 bool is_u
= extract32(insn
, 29, 1);
9065 bool is_q
= extract32(insn
, 30, 1);
9066 TCGv_i64 tcg_op1
, tcg_op2
, tcg_res
[2];
9069 if (!fp_access_check(s
)) {
9073 tcg_op1
= tcg_temp_new_i64();
9074 tcg_op2
= tcg_temp_new_i64();
9075 tcg_res
[0] = tcg_temp_new_i64();
9076 tcg_res
[1] = tcg_temp_new_i64();
9078 for (pass
= 0; pass
< (is_q
? 2 : 1); pass
++) {
9079 read_vec_element(s
, tcg_op1
, rn
, pass
, MO_64
);
9080 read_vec_element(s
, tcg_op2
, rm
, pass
, MO_64
);
9085 tcg_gen_and_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9088 tcg_gen_andc_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9091 tcg_gen_or_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9094 tcg_gen_orc_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9099 /* B* ops need res loaded to operate on */
9100 read_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
9105 tcg_gen_xor_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9107 case 1: /* BSL bitwise select */
9108 tcg_gen_xor_i64(tcg_op1
, tcg_op1
, tcg_op2
);
9109 tcg_gen_and_i64(tcg_op1
, tcg_op1
, tcg_res
[pass
]);
9110 tcg_gen_xor_i64(tcg_res
[pass
], tcg_op2
, tcg_op1
);
9112 case 2: /* BIT, bitwise insert if true */
9113 tcg_gen_xor_i64(tcg_op1
, tcg_op1
, tcg_res
[pass
]);
9114 tcg_gen_and_i64(tcg_op1
, tcg_op1
, tcg_op2
);
9115 tcg_gen_xor_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_op1
);
9117 case 3: /* BIF, bitwise insert if false */
9118 tcg_gen_xor_i64(tcg_op1
, tcg_op1
, tcg_res
[pass
]);
9119 tcg_gen_andc_i64(tcg_op1
, tcg_op1
, tcg_op2
);
9120 tcg_gen_xor_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_op1
);
9126 write_vec_element(s
, tcg_res
[0], rd
, 0, MO_64
);
9128 tcg_gen_movi_i64(tcg_res
[1], 0);
9130 write_vec_element(s
, tcg_res
[1], rd
, 1, MO_64
);
9132 tcg_temp_free_i64(tcg_op1
);
9133 tcg_temp_free_i64(tcg_op2
);
9134 tcg_temp_free_i64(tcg_res
[0]);
9135 tcg_temp_free_i64(tcg_res
[1]);
9138 /* Helper functions for 32 bit comparisons */
9139 static void gen_max_s32(TCGv_i32 res
, TCGv_i32 op1
, TCGv_i32 op2
)
9141 tcg_gen_movcond_i32(TCG_COND_GE
, res
, op1
, op2
, op1
, op2
);
9144 static void gen_max_u32(TCGv_i32 res
, TCGv_i32 op1
, TCGv_i32 op2
)
9146 tcg_gen_movcond_i32(TCG_COND_GEU
, res
, op1
, op2
, op1
, op2
);
9149 static void gen_min_s32(TCGv_i32 res
, TCGv_i32 op1
, TCGv_i32 op2
)
9151 tcg_gen_movcond_i32(TCG_COND_LE
, res
, op1
, op2
, op1
, op2
);
9154 static void gen_min_u32(TCGv_i32 res
, TCGv_i32 op1
, TCGv_i32 op2
)
9156 tcg_gen_movcond_i32(TCG_COND_LEU
, res
, op1
, op2
, op1
, op2
);
9159 /* Pairwise op subgroup of C3.6.16.
9161 * This is called directly or via the handle_3same_float for float pairwise
9162 * operations where the opcode and size are calculated differently.
9164 static void handle_simd_3same_pair(DisasContext
*s
, int is_q
, int u
, int opcode
,
9165 int size
, int rn
, int rm
, int rd
)
9170 /* Floating point operations need fpst */
9171 if (opcode
>= 0x58) {
9172 fpst
= get_fpstatus_ptr();
9174 TCGV_UNUSED_PTR(fpst
);
9177 if (!fp_access_check(s
)) {
9181 /* These operations work on the concatenated rm:rn, with each pair of
9182 * adjacent elements being operated on to produce an element in the result.
9185 TCGv_i64 tcg_res
[2];
9187 for (pass
= 0; pass
< 2; pass
++) {
9188 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
9189 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
9190 int passreg
= (pass
== 0) ? rn
: rm
;
9192 read_vec_element(s
, tcg_op1
, passreg
, 0, MO_64
);
9193 read_vec_element(s
, tcg_op2
, passreg
, 1, MO_64
);
9194 tcg_res
[pass
] = tcg_temp_new_i64();
9197 case 0x17: /* ADDP */
9198 tcg_gen_add_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9200 case 0x58: /* FMAXNMP */
9201 gen_helper_vfp_maxnumd(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9203 case 0x5a: /* FADDP */
9204 gen_helper_vfp_addd(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9206 case 0x5e: /* FMAXP */
9207 gen_helper_vfp_maxd(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9209 case 0x78: /* FMINNMP */
9210 gen_helper_vfp_minnumd(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9212 case 0x7e: /* FMINP */
9213 gen_helper_vfp_mind(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9216 g_assert_not_reached();
9219 tcg_temp_free_i64(tcg_op1
);
9220 tcg_temp_free_i64(tcg_op2
);
9223 for (pass
= 0; pass
< 2; pass
++) {
9224 write_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
9225 tcg_temp_free_i64(tcg_res
[pass
]);
9228 int maxpass
= is_q
? 4 : 2;
9229 TCGv_i32 tcg_res
[4];
9231 for (pass
= 0; pass
< maxpass
; pass
++) {
9232 TCGv_i32 tcg_op1
= tcg_temp_new_i32();
9233 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
9234 NeonGenTwoOpFn
*genfn
= NULL
;
9235 int passreg
= pass
< (maxpass
/ 2) ? rn
: rm
;
9236 int passelt
= (is_q
&& (pass
& 1)) ? 2 : 0;
9238 read_vec_element_i32(s
, tcg_op1
, passreg
, passelt
, MO_32
);
9239 read_vec_element_i32(s
, tcg_op2
, passreg
, passelt
+ 1, MO_32
);
9240 tcg_res
[pass
] = tcg_temp_new_i32();
9243 case 0x17: /* ADDP */
9245 static NeonGenTwoOpFn
* const fns
[3] = {
9246 gen_helper_neon_padd_u8
,
9247 gen_helper_neon_padd_u16
,
9253 case 0x14: /* SMAXP, UMAXP */
9255 static NeonGenTwoOpFn
* const fns
[3][2] = {
9256 { gen_helper_neon_pmax_s8
, gen_helper_neon_pmax_u8
},
9257 { gen_helper_neon_pmax_s16
, gen_helper_neon_pmax_u16
},
9258 { gen_max_s32
, gen_max_u32
},
9260 genfn
= fns
[size
][u
];
9263 case 0x15: /* SMINP, UMINP */
9265 static NeonGenTwoOpFn
* const fns
[3][2] = {
9266 { gen_helper_neon_pmin_s8
, gen_helper_neon_pmin_u8
},
9267 { gen_helper_neon_pmin_s16
, gen_helper_neon_pmin_u16
},
9268 { gen_min_s32
, gen_min_u32
},
9270 genfn
= fns
[size
][u
];
9273 /* The FP operations are all on single floats (32 bit) */
9274 case 0x58: /* FMAXNMP */
9275 gen_helper_vfp_maxnums(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9277 case 0x5a: /* FADDP */
9278 gen_helper_vfp_adds(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9280 case 0x5e: /* FMAXP */
9281 gen_helper_vfp_maxs(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9283 case 0x78: /* FMINNMP */
9284 gen_helper_vfp_minnums(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9286 case 0x7e: /* FMINP */
9287 gen_helper_vfp_mins(tcg_res
[pass
], tcg_op1
, tcg_op2
, fpst
);
9290 g_assert_not_reached();
9293 /* FP ops called directly, otherwise call now */
9295 genfn(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9298 tcg_temp_free_i32(tcg_op1
);
9299 tcg_temp_free_i32(tcg_op2
);
9302 for (pass
= 0; pass
< maxpass
; pass
++) {
9303 write_vec_element_i32(s
, tcg_res
[pass
], rd
, pass
, MO_32
);
9304 tcg_temp_free_i32(tcg_res
[pass
]);
9307 clear_vec_high(s
, rd
);
9311 if (!TCGV_IS_UNUSED_PTR(fpst
)) {
9312 tcg_temp_free_ptr(fpst
);
9316 /* Floating point op subgroup of C3.6.16. */
9317 static void disas_simd_3same_float(DisasContext
*s
, uint32_t insn
)
9319 /* For floating point ops, the U, size[1] and opcode bits
9320 * together indicate the operation. size[0] indicates single
9323 int fpopcode
= extract32(insn
, 11, 5)
9324 | (extract32(insn
, 23, 1) << 5)
9325 | (extract32(insn
, 29, 1) << 6);
9326 int is_q
= extract32(insn
, 30, 1);
9327 int size
= extract32(insn
, 22, 1);
9328 int rm
= extract32(insn
, 16, 5);
9329 int rn
= extract32(insn
, 5, 5);
9330 int rd
= extract32(insn
, 0, 5);
9332 int datasize
= is_q
? 128 : 64;
9333 int esize
= 32 << size
;
9334 int elements
= datasize
/ esize
;
9336 if (size
== 1 && !is_q
) {
9337 unallocated_encoding(s
);
9342 case 0x58: /* FMAXNMP */
9343 case 0x5a: /* FADDP */
9344 case 0x5e: /* FMAXP */
9345 case 0x78: /* FMINNMP */
9346 case 0x7e: /* FMINP */
9347 if (size
&& !is_q
) {
9348 unallocated_encoding(s
);
9351 handle_simd_3same_pair(s
, is_q
, 0, fpopcode
, size
? MO_64
: MO_32
,
9354 case 0x1b: /* FMULX */
9355 case 0x1f: /* FRECPS */
9356 case 0x3f: /* FRSQRTS */
9357 case 0x5d: /* FACGE */
9358 case 0x7d: /* FACGT */
9359 case 0x19: /* FMLA */
9360 case 0x39: /* FMLS */
9361 case 0x18: /* FMAXNM */
9362 case 0x1a: /* FADD */
9363 case 0x1c: /* FCMEQ */
9364 case 0x1e: /* FMAX */
9365 case 0x38: /* FMINNM */
9366 case 0x3a: /* FSUB */
9367 case 0x3e: /* FMIN */
9368 case 0x5b: /* FMUL */
9369 case 0x5c: /* FCMGE */
9370 case 0x5f: /* FDIV */
9371 case 0x7a: /* FABD */
9372 case 0x7c: /* FCMGT */
9373 if (!fp_access_check(s
)) {
9377 handle_3same_float(s
, size
, elements
, fpopcode
, rd
, rn
, rm
);
9380 unallocated_encoding(s
);
9385 /* Integer op subgroup of C3.6.16. */
9386 static void disas_simd_3same_int(DisasContext
*s
, uint32_t insn
)
9388 int is_q
= extract32(insn
, 30, 1);
9389 int u
= extract32(insn
, 29, 1);
9390 int size
= extract32(insn
, 22, 2);
9391 int opcode
= extract32(insn
, 11, 5);
9392 int rm
= extract32(insn
, 16, 5);
9393 int rn
= extract32(insn
, 5, 5);
9394 int rd
= extract32(insn
, 0, 5);
9398 case 0x13: /* MUL, PMUL */
9399 if (u
&& size
!= 0) {
9400 unallocated_encoding(s
);
9404 case 0x0: /* SHADD, UHADD */
9405 case 0x2: /* SRHADD, URHADD */
9406 case 0x4: /* SHSUB, UHSUB */
9407 case 0xc: /* SMAX, UMAX */
9408 case 0xd: /* SMIN, UMIN */
9409 case 0xe: /* SABD, UABD */
9410 case 0xf: /* SABA, UABA */
9411 case 0x12: /* MLA, MLS */
9413 unallocated_encoding(s
);
9417 case 0x16: /* SQDMULH, SQRDMULH */
9418 if (size
== 0 || size
== 3) {
9419 unallocated_encoding(s
);
9424 if (size
== 3 && !is_q
) {
9425 unallocated_encoding(s
);
9431 if (!fp_access_check(s
)) {
9437 for (pass
= 0; pass
< 2; pass
++) {
9438 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
9439 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
9440 TCGv_i64 tcg_res
= tcg_temp_new_i64();
9442 read_vec_element(s
, tcg_op1
, rn
, pass
, MO_64
);
9443 read_vec_element(s
, tcg_op2
, rm
, pass
, MO_64
);
9445 handle_3same_64(s
, opcode
, u
, tcg_res
, tcg_op1
, tcg_op2
);
9447 write_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
9449 tcg_temp_free_i64(tcg_res
);
9450 tcg_temp_free_i64(tcg_op1
);
9451 tcg_temp_free_i64(tcg_op2
);
9454 for (pass
= 0; pass
< (is_q
? 4 : 2); pass
++) {
9455 TCGv_i32 tcg_op1
= tcg_temp_new_i32();
9456 TCGv_i32 tcg_op2
= tcg_temp_new_i32();
9457 TCGv_i32 tcg_res
= tcg_temp_new_i32();
9458 NeonGenTwoOpFn
*genfn
= NULL
;
9459 NeonGenTwoOpEnvFn
*genenvfn
= NULL
;
9461 read_vec_element_i32(s
, tcg_op1
, rn
, pass
, MO_32
);
9462 read_vec_element_i32(s
, tcg_op2
, rm
, pass
, MO_32
);
9465 case 0x0: /* SHADD, UHADD */
9467 static NeonGenTwoOpFn
* const fns
[3][2] = {
9468 { gen_helper_neon_hadd_s8
, gen_helper_neon_hadd_u8
},
9469 { gen_helper_neon_hadd_s16
, gen_helper_neon_hadd_u16
},
9470 { gen_helper_neon_hadd_s32
, gen_helper_neon_hadd_u32
},
9472 genfn
= fns
[size
][u
];
9475 case 0x1: /* SQADD, UQADD */
9477 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
9478 { gen_helper_neon_qadd_s8
, gen_helper_neon_qadd_u8
},
9479 { gen_helper_neon_qadd_s16
, gen_helper_neon_qadd_u16
},
9480 { gen_helper_neon_qadd_s32
, gen_helper_neon_qadd_u32
},
9482 genenvfn
= fns
[size
][u
];
9485 case 0x2: /* SRHADD, URHADD */
9487 static NeonGenTwoOpFn
* const fns
[3][2] = {
9488 { gen_helper_neon_rhadd_s8
, gen_helper_neon_rhadd_u8
},
9489 { gen_helper_neon_rhadd_s16
, gen_helper_neon_rhadd_u16
},
9490 { gen_helper_neon_rhadd_s32
, gen_helper_neon_rhadd_u32
},
9492 genfn
= fns
[size
][u
];
9495 case 0x4: /* SHSUB, UHSUB */
9497 static NeonGenTwoOpFn
* const fns
[3][2] = {
9498 { gen_helper_neon_hsub_s8
, gen_helper_neon_hsub_u8
},
9499 { gen_helper_neon_hsub_s16
, gen_helper_neon_hsub_u16
},
9500 { gen_helper_neon_hsub_s32
, gen_helper_neon_hsub_u32
},
9502 genfn
= fns
[size
][u
];
9505 case 0x5: /* SQSUB, UQSUB */
9507 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
9508 { gen_helper_neon_qsub_s8
, gen_helper_neon_qsub_u8
},
9509 { gen_helper_neon_qsub_s16
, gen_helper_neon_qsub_u16
},
9510 { gen_helper_neon_qsub_s32
, gen_helper_neon_qsub_u32
},
9512 genenvfn
= fns
[size
][u
];
9515 case 0x6: /* CMGT, CMHI */
9517 static NeonGenTwoOpFn
* const fns
[3][2] = {
9518 { gen_helper_neon_cgt_s8
, gen_helper_neon_cgt_u8
},
9519 { gen_helper_neon_cgt_s16
, gen_helper_neon_cgt_u16
},
9520 { gen_helper_neon_cgt_s32
, gen_helper_neon_cgt_u32
},
9522 genfn
= fns
[size
][u
];
9525 case 0x7: /* CMGE, CMHS */
9527 static NeonGenTwoOpFn
* const fns
[3][2] = {
9528 { gen_helper_neon_cge_s8
, gen_helper_neon_cge_u8
},
9529 { gen_helper_neon_cge_s16
, gen_helper_neon_cge_u16
},
9530 { gen_helper_neon_cge_s32
, gen_helper_neon_cge_u32
},
9532 genfn
= fns
[size
][u
];
9535 case 0x8: /* SSHL, USHL */
9537 static NeonGenTwoOpFn
* const fns
[3][2] = {
9538 { gen_helper_neon_shl_s8
, gen_helper_neon_shl_u8
},
9539 { gen_helper_neon_shl_s16
, gen_helper_neon_shl_u16
},
9540 { gen_helper_neon_shl_s32
, gen_helper_neon_shl_u32
},
9542 genfn
= fns
[size
][u
];
9545 case 0x9: /* SQSHL, UQSHL */
9547 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
9548 { gen_helper_neon_qshl_s8
, gen_helper_neon_qshl_u8
},
9549 { gen_helper_neon_qshl_s16
, gen_helper_neon_qshl_u16
},
9550 { gen_helper_neon_qshl_s32
, gen_helper_neon_qshl_u32
},
9552 genenvfn
= fns
[size
][u
];
9555 case 0xa: /* SRSHL, URSHL */
9557 static NeonGenTwoOpFn
* const fns
[3][2] = {
9558 { gen_helper_neon_rshl_s8
, gen_helper_neon_rshl_u8
},
9559 { gen_helper_neon_rshl_s16
, gen_helper_neon_rshl_u16
},
9560 { gen_helper_neon_rshl_s32
, gen_helper_neon_rshl_u32
},
9562 genfn
= fns
[size
][u
];
9565 case 0xb: /* SQRSHL, UQRSHL */
9567 static NeonGenTwoOpEnvFn
* const fns
[3][2] = {
9568 { gen_helper_neon_qrshl_s8
, gen_helper_neon_qrshl_u8
},
9569 { gen_helper_neon_qrshl_s16
, gen_helper_neon_qrshl_u16
},
9570 { gen_helper_neon_qrshl_s32
, gen_helper_neon_qrshl_u32
},
9572 genenvfn
= fns
[size
][u
];
9575 case 0xc: /* SMAX, UMAX */
9577 static NeonGenTwoOpFn
* const fns
[3][2] = {
9578 { gen_helper_neon_max_s8
, gen_helper_neon_max_u8
},
9579 { gen_helper_neon_max_s16
, gen_helper_neon_max_u16
},
9580 { gen_max_s32
, gen_max_u32
},
9582 genfn
= fns
[size
][u
];
9586 case 0xd: /* SMIN, UMIN */
9588 static NeonGenTwoOpFn
* const fns
[3][2] = {
9589 { gen_helper_neon_min_s8
, gen_helper_neon_min_u8
},
9590 { gen_helper_neon_min_s16
, gen_helper_neon_min_u16
},
9591 { gen_min_s32
, gen_min_u32
},
9593 genfn
= fns
[size
][u
];
9596 case 0xe: /* SABD, UABD */
9597 case 0xf: /* SABA, UABA */
9599 static NeonGenTwoOpFn
* const fns
[3][2] = {
9600 { gen_helper_neon_abd_s8
, gen_helper_neon_abd_u8
},
9601 { gen_helper_neon_abd_s16
, gen_helper_neon_abd_u16
},
9602 { gen_helper_neon_abd_s32
, gen_helper_neon_abd_u32
},
9604 genfn
= fns
[size
][u
];
9607 case 0x10: /* ADD, SUB */
9609 static NeonGenTwoOpFn
* const fns
[3][2] = {
9610 { gen_helper_neon_add_u8
, gen_helper_neon_sub_u8
},
9611 { gen_helper_neon_add_u16
, gen_helper_neon_sub_u16
},
9612 { tcg_gen_add_i32
, tcg_gen_sub_i32
},
9614 genfn
= fns
[size
][u
];
9617 case 0x11: /* CMTST, CMEQ */
9619 static NeonGenTwoOpFn
* const fns
[3][2] = {
9620 { gen_helper_neon_tst_u8
, gen_helper_neon_ceq_u8
},
9621 { gen_helper_neon_tst_u16
, gen_helper_neon_ceq_u16
},
9622 { gen_helper_neon_tst_u32
, gen_helper_neon_ceq_u32
},
9624 genfn
= fns
[size
][u
];
9627 case 0x13: /* MUL, PMUL */
9631 genfn
= gen_helper_neon_mul_p8
;
9634 /* fall through : MUL */
9635 case 0x12: /* MLA, MLS */
9637 static NeonGenTwoOpFn
* const fns
[3] = {
9638 gen_helper_neon_mul_u8
,
9639 gen_helper_neon_mul_u16
,
9645 case 0x16: /* SQDMULH, SQRDMULH */
9647 static NeonGenTwoOpEnvFn
* const fns
[2][2] = {
9648 { gen_helper_neon_qdmulh_s16
, gen_helper_neon_qrdmulh_s16
},
9649 { gen_helper_neon_qdmulh_s32
, gen_helper_neon_qrdmulh_s32
},
9651 assert(size
== 1 || size
== 2);
9652 genenvfn
= fns
[size
- 1][u
];
9656 g_assert_not_reached();
9660 genenvfn(tcg_res
, cpu_env
, tcg_op1
, tcg_op2
);
9662 genfn(tcg_res
, tcg_op1
, tcg_op2
);
9665 if (opcode
== 0xf || opcode
== 0x12) {
9666 /* SABA, UABA, MLA, MLS: accumulating ops */
9667 static NeonGenTwoOpFn
* const fns
[3][2] = {
9668 { gen_helper_neon_add_u8
, gen_helper_neon_sub_u8
},
9669 { gen_helper_neon_add_u16
, gen_helper_neon_sub_u16
},
9670 { tcg_gen_add_i32
, tcg_gen_sub_i32
},
9672 bool is_sub
= (opcode
== 0x12 && u
); /* MLS */
9674 genfn
= fns
[size
][is_sub
];
9675 read_vec_element_i32(s
, tcg_op1
, rd
, pass
, MO_32
);
9676 genfn(tcg_res
, tcg_op1
, tcg_res
);
9679 write_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
9681 tcg_temp_free_i32(tcg_res
);
9682 tcg_temp_free_i32(tcg_op1
);
9683 tcg_temp_free_i32(tcg_op2
);
9688 clear_vec_high(s
, rd
);
9692 /* C3.6.16 AdvSIMD three same
9693 * 31 30 29 28 24 23 22 21 20 16 15 11 10 9 5 4 0
9694 * +---+---+---+-----------+------+---+------+--------+---+------+------+
9695 * | 0 | Q | U | 0 1 1 1 0 | size | 1 | Rm | opcode | 1 | Rn | Rd |
9696 * +---+---+---+-----------+------+---+------+--------+---+------+------+
9698 static void disas_simd_three_reg_same(DisasContext
*s
, uint32_t insn
)
9700 int opcode
= extract32(insn
, 11, 5);
9703 case 0x3: /* logic ops */
9704 disas_simd_3same_logic(s
, insn
);
9706 case 0x17: /* ADDP */
9707 case 0x14: /* SMAXP, UMAXP */
9708 case 0x15: /* SMINP, UMINP */
9710 /* Pairwise operations */
9711 int is_q
= extract32(insn
, 30, 1);
9712 int u
= extract32(insn
, 29, 1);
9713 int size
= extract32(insn
, 22, 2);
9714 int rm
= extract32(insn
, 16, 5);
9715 int rn
= extract32(insn
, 5, 5);
9716 int rd
= extract32(insn
, 0, 5);
9717 if (opcode
== 0x17) {
9718 if (u
|| (size
== 3 && !is_q
)) {
9719 unallocated_encoding(s
);
9724 unallocated_encoding(s
);
9728 handle_simd_3same_pair(s
, is_q
, u
, opcode
, size
, rn
, rm
, rd
);
9732 /* floating point ops, sz[1] and U are part of opcode */
9733 disas_simd_3same_float(s
, insn
);
9736 disas_simd_3same_int(s
, insn
);
9741 static void handle_2misc_widening(DisasContext
*s
, int opcode
, bool is_q
,
9742 int size
, int rn
, int rd
)
9744 /* Handle 2-reg-misc ops which are widening (so each size element
9745 * in the source becomes a 2*size element in the destination.
9746 * The only instruction like this is FCVTL.
9751 /* 32 -> 64 bit fp conversion */
9752 TCGv_i64 tcg_res
[2];
9753 int srcelt
= is_q
? 2 : 0;
9755 for (pass
= 0; pass
< 2; pass
++) {
9756 TCGv_i32 tcg_op
= tcg_temp_new_i32();
9757 tcg_res
[pass
] = tcg_temp_new_i64();
9759 read_vec_element_i32(s
, tcg_op
, rn
, srcelt
+ pass
, MO_32
);
9760 gen_helper_vfp_fcvtds(tcg_res
[pass
], tcg_op
, cpu_env
);
9761 tcg_temp_free_i32(tcg_op
);
9763 for (pass
= 0; pass
< 2; pass
++) {
9764 write_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
9765 tcg_temp_free_i64(tcg_res
[pass
]);
9768 /* 16 -> 32 bit fp conversion */
9769 int srcelt
= is_q
? 4 : 0;
9770 TCGv_i32 tcg_res
[4];
9772 for (pass
= 0; pass
< 4; pass
++) {
9773 tcg_res
[pass
] = tcg_temp_new_i32();
9775 read_vec_element_i32(s
, tcg_res
[pass
], rn
, srcelt
+ pass
, MO_16
);
9776 gen_helper_vfp_fcvt_f16_to_f32(tcg_res
[pass
], tcg_res
[pass
],
9779 for (pass
= 0; pass
< 4; pass
++) {
9780 write_vec_element_i32(s
, tcg_res
[pass
], rd
, pass
, MO_32
);
9781 tcg_temp_free_i32(tcg_res
[pass
]);
9786 static void handle_rev(DisasContext
*s
, int opcode
, bool u
,
9787 bool is_q
, int size
, int rn
, int rd
)
9789 int op
= (opcode
<< 1) | u
;
9790 int opsz
= op
+ size
;
9791 int grp_size
= 3 - opsz
;
9792 int dsize
= is_q
? 128 : 64;
9796 unallocated_encoding(s
);
9800 if (!fp_access_check(s
)) {
9805 /* Special case bytes, use bswap op on each group of elements */
9806 int groups
= dsize
/ (8 << grp_size
);
9808 for (i
= 0; i
< groups
; i
++) {
9809 TCGv_i64 tcg_tmp
= tcg_temp_new_i64();
9811 read_vec_element(s
, tcg_tmp
, rn
, i
, grp_size
);
9814 tcg_gen_bswap16_i64(tcg_tmp
, tcg_tmp
);
9817 tcg_gen_bswap32_i64(tcg_tmp
, tcg_tmp
);
9820 tcg_gen_bswap64_i64(tcg_tmp
, tcg_tmp
);
9823 g_assert_not_reached();
9825 write_vec_element(s
, tcg_tmp
, rd
, i
, grp_size
);
9826 tcg_temp_free_i64(tcg_tmp
);
9829 clear_vec_high(s
, rd
);
9832 int revmask
= (1 << grp_size
) - 1;
9833 int esize
= 8 << size
;
9834 int elements
= dsize
/ esize
;
9835 TCGv_i64 tcg_rn
= tcg_temp_new_i64();
9836 TCGv_i64 tcg_rd
= tcg_const_i64(0);
9837 TCGv_i64 tcg_rd_hi
= tcg_const_i64(0);
9839 for (i
= 0; i
< elements
; i
++) {
9840 int e_rev
= (i
& 0xf) ^ revmask
;
9841 int off
= e_rev
* esize
;
9842 read_vec_element(s
, tcg_rn
, rn
, i
, size
);
9844 tcg_gen_deposit_i64(tcg_rd_hi
, tcg_rd_hi
,
9845 tcg_rn
, off
- 64, esize
);
9847 tcg_gen_deposit_i64(tcg_rd
, tcg_rd
, tcg_rn
, off
, esize
);
9850 write_vec_element(s
, tcg_rd
, rd
, 0, MO_64
);
9851 write_vec_element(s
, tcg_rd_hi
, rd
, 1, MO_64
);
9853 tcg_temp_free_i64(tcg_rd_hi
);
9854 tcg_temp_free_i64(tcg_rd
);
9855 tcg_temp_free_i64(tcg_rn
);
9859 static void handle_2misc_pairwise(DisasContext
*s
, int opcode
, bool u
,
9860 bool is_q
, int size
, int rn
, int rd
)
9862 /* Implement the pairwise operations from 2-misc:
9863 * SADDLP, UADDLP, SADALP, UADALP.
9864 * These all add pairs of elements in the input to produce a
9865 * double-width result element in the output (possibly accumulating).
9867 bool accum
= (opcode
== 0x6);
9868 int maxpass
= is_q
? 2 : 1;
9870 TCGv_i64 tcg_res
[2];
9873 /* 32 + 32 -> 64 op */
9874 TCGMemOp memop
= size
+ (u
? 0 : MO_SIGN
);
9876 for (pass
= 0; pass
< maxpass
; pass
++) {
9877 TCGv_i64 tcg_op1
= tcg_temp_new_i64();
9878 TCGv_i64 tcg_op2
= tcg_temp_new_i64();
9880 tcg_res
[pass
] = tcg_temp_new_i64();
9882 read_vec_element(s
, tcg_op1
, rn
, pass
* 2, memop
);
9883 read_vec_element(s
, tcg_op2
, rn
, pass
* 2 + 1, memop
);
9884 tcg_gen_add_i64(tcg_res
[pass
], tcg_op1
, tcg_op2
);
9886 read_vec_element(s
, tcg_op1
, rd
, pass
, MO_64
);
9887 tcg_gen_add_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_op1
);
9890 tcg_temp_free_i64(tcg_op1
);
9891 tcg_temp_free_i64(tcg_op2
);
9894 for (pass
= 0; pass
< maxpass
; pass
++) {
9895 TCGv_i64 tcg_op
= tcg_temp_new_i64();
9896 NeonGenOneOpFn
*genfn
;
9897 static NeonGenOneOpFn
* const fns
[2][2] = {
9898 { gen_helper_neon_addlp_s8
, gen_helper_neon_addlp_u8
},
9899 { gen_helper_neon_addlp_s16
, gen_helper_neon_addlp_u16
},
9902 genfn
= fns
[size
][u
];
9904 tcg_res
[pass
] = tcg_temp_new_i64();
9906 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
9907 genfn(tcg_res
[pass
], tcg_op
);
9910 read_vec_element(s
, tcg_op
, rd
, pass
, MO_64
);
9912 gen_helper_neon_addl_u16(tcg_res
[pass
],
9913 tcg_res
[pass
], tcg_op
);
9915 gen_helper_neon_addl_u32(tcg_res
[pass
],
9916 tcg_res
[pass
], tcg_op
);
9919 tcg_temp_free_i64(tcg_op
);
9923 tcg_res
[1] = tcg_const_i64(0);
9925 for (pass
= 0; pass
< 2; pass
++) {
9926 write_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
9927 tcg_temp_free_i64(tcg_res
[pass
]);
9931 static void handle_shll(DisasContext
*s
, bool is_q
, int size
, int rn
, int rd
)
9933 /* Implement SHLL and SHLL2 */
9935 int part
= is_q
? 2 : 0;
9936 TCGv_i64 tcg_res
[2];
9938 for (pass
= 0; pass
< 2; pass
++) {
9939 static NeonGenWidenFn
* const widenfns
[3] = {
9940 gen_helper_neon_widen_u8
,
9941 gen_helper_neon_widen_u16
,
9942 tcg_gen_extu_i32_i64
,
9944 NeonGenWidenFn
*widenfn
= widenfns
[size
];
9945 TCGv_i32 tcg_op
= tcg_temp_new_i32();
9947 read_vec_element_i32(s
, tcg_op
, rn
, part
+ pass
, MO_32
);
9948 tcg_res
[pass
] = tcg_temp_new_i64();
9949 widenfn(tcg_res
[pass
], tcg_op
);
9950 tcg_gen_shli_i64(tcg_res
[pass
], tcg_res
[pass
], 8 << size
);
9952 tcg_temp_free_i32(tcg_op
);
9955 for (pass
= 0; pass
< 2; pass
++) {
9956 write_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
9957 tcg_temp_free_i64(tcg_res
[pass
]);
9961 /* C3.6.17 AdvSIMD two reg misc
9962 * 31 30 29 28 24 23 22 21 17 16 12 11 10 9 5 4 0
9963 * +---+---+---+-----------+------+-----------+--------+-----+------+------+
9964 * | 0 | Q | U | 0 1 1 1 0 | size | 1 0 0 0 0 | opcode | 1 0 | Rn | Rd |
9965 * +---+---+---+-----------+------+-----------+--------+-----+------+------+
9967 static void disas_simd_two_reg_misc(DisasContext
*s
, uint32_t insn
)
9969 int size
= extract32(insn
, 22, 2);
9970 int opcode
= extract32(insn
, 12, 5);
9971 bool u
= extract32(insn
, 29, 1);
9972 bool is_q
= extract32(insn
, 30, 1);
9973 int rn
= extract32(insn
, 5, 5);
9974 int rd
= extract32(insn
, 0, 5);
9975 bool need_fpstatus
= false;
9976 bool need_rmode
= false;
9979 TCGv_ptr tcg_fpstatus
;
9982 case 0x0: /* REV64, REV32 */
9983 case 0x1: /* REV16 */
9984 handle_rev(s
, opcode
, u
, is_q
, size
, rn
, rd
);
9986 case 0x5: /* CNT, NOT, RBIT */
9987 if (u
&& size
== 0) {
9988 /* NOT: adjust size so we can use the 64-bits-at-a-time loop. */
9991 } else if (u
&& size
== 1) {
9994 } else if (!u
&& size
== 0) {
9998 unallocated_encoding(s
);
10000 case 0x12: /* XTN, XTN2, SQXTUN, SQXTUN2 */
10001 case 0x14: /* SQXTN, SQXTN2, UQXTN, UQXTN2 */
10003 unallocated_encoding(s
);
10006 if (!fp_access_check(s
)) {
10010 handle_2misc_narrow(s
, false, opcode
, u
, is_q
, size
, rn
, rd
);
10012 case 0x4: /* CLS, CLZ */
10014 unallocated_encoding(s
);
10018 case 0x2: /* SADDLP, UADDLP */
10019 case 0x6: /* SADALP, UADALP */
10021 unallocated_encoding(s
);
10024 if (!fp_access_check(s
)) {
10027 handle_2misc_pairwise(s
, opcode
, u
, is_q
, size
, rn
, rd
);
10029 case 0x13: /* SHLL, SHLL2 */
10030 if (u
== 0 || size
== 3) {
10031 unallocated_encoding(s
);
10034 if (!fp_access_check(s
)) {
10037 handle_shll(s
, is_q
, size
, rn
, rd
);
10039 case 0xa: /* CMLT */
10041 unallocated_encoding(s
);
10045 case 0x8: /* CMGT, CMGE */
10046 case 0x9: /* CMEQ, CMLE */
10047 case 0xb: /* ABS, NEG */
10048 if (size
== 3 && !is_q
) {
10049 unallocated_encoding(s
);
10053 case 0x3: /* SUQADD, USQADD */
10054 if (size
== 3 && !is_q
) {
10055 unallocated_encoding(s
);
10058 if (!fp_access_check(s
)) {
10061 handle_2misc_satacc(s
, false, u
, is_q
, size
, rn
, rd
);
10063 case 0x7: /* SQABS, SQNEG */
10064 if (size
== 3 && !is_q
) {
10065 unallocated_encoding(s
);
10070 case 0x16 ... 0x1d:
10073 /* Floating point: U, size[1] and opcode indicate operation;
10074 * size[0] indicates single or double precision.
10076 int is_double
= extract32(size
, 0, 1);
10077 opcode
|= (extract32(size
, 1, 1) << 5) | (u
<< 6);
10078 size
= is_double
? 3 : 2;
10080 case 0x2f: /* FABS */
10081 case 0x6f: /* FNEG */
10082 if (size
== 3 && !is_q
) {
10083 unallocated_encoding(s
);
10087 case 0x1d: /* SCVTF */
10088 case 0x5d: /* UCVTF */
10090 bool is_signed
= (opcode
== 0x1d) ? true : false;
10091 int elements
= is_double
? 2 : is_q
? 4 : 2;
10092 if (is_double
&& !is_q
) {
10093 unallocated_encoding(s
);
10096 if (!fp_access_check(s
)) {
10099 handle_simd_intfp_conv(s
, rd
, rn
, elements
, is_signed
, 0, size
);
10102 case 0x2c: /* FCMGT (zero) */
10103 case 0x2d: /* FCMEQ (zero) */
10104 case 0x2e: /* FCMLT (zero) */
10105 case 0x6c: /* FCMGE (zero) */
10106 case 0x6d: /* FCMLE (zero) */
10107 if (size
== 3 && !is_q
) {
10108 unallocated_encoding(s
);
10111 handle_2misc_fcmp_zero(s
, opcode
, false, u
, is_q
, size
, rn
, rd
);
10113 case 0x7f: /* FSQRT */
10114 if (size
== 3 && !is_q
) {
10115 unallocated_encoding(s
);
10119 case 0x1a: /* FCVTNS */
10120 case 0x1b: /* FCVTMS */
10121 case 0x3a: /* FCVTPS */
10122 case 0x3b: /* FCVTZS */
10123 case 0x5a: /* FCVTNU */
10124 case 0x5b: /* FCVTMU */
10125 case 0x7a: /* FCVTPU */
10126 case 0x7b: /* FCVTZU */
10127 need_fpstatus
= true;
10129 rmode
= extract32(opcode
, 5, 1) | (extract32(opcode
, 0, 1) << 1);
10130 if (size
== 3 && !is_q
) {
10131 unallocated_encoding(s
);
10135 case 0x5c: /* FCVTAU */
10136 case 0x1c: /* FCVTAS */
10137 need_fpstatus
= true;
10139 rmode
= FPROUNDING_TIEAWAY
;
10140 if (size
== 3 && !is_q
) {
10141 unallocated_encoding(s
);
10145 case 0x3c: /* URECPE */
10147 unallocated_encoding(s
);
10151 case 0x3d: /* FRECPE */
10152 case 0x7d: /* FRSQRTE */
10153 if (size
== 3 && !is_q
) {
10154 unallocated_encoding(s
);
10157 if (!fp_access_check(s
)) {
10160 handle_2misc_reciprocal(s
, opcode
, false, u
, is_q
, size
, rn
, rd
);
10162 case 0x56: /* FCVTXN, FCVTXN2 */
10164 unallocated_encoding(s
);
10168 case 0x16: /* FCVTN, FCVTN2 */
10169 /* handle_2misc_narrow does a 2*size -> size operation, but these
10170 * instructions encode the source size rather than dest size.
10172 if (!fp_access_check(s
)) {
10175 handle_2misc_narrow(s
, false, opcode
, 0, is_q
, size
- 1, rn
, rd
);
10177 case 0x17: /* FCVTL, FCVTL2 */
10178 if (!fp_access_check(s
)) {
10181 handle_2misc_widening(s
, opcode
, is_q
, size
, rn
, rd
);
10183 case 0x18: /* FRINTN */
10184 case 0x19: /* FRINTM */
10185 case 0x38: /* FRINTP */
10186 case 0x39: /* FRINTZ */
10188 rmode
= extract32(opcode
, 5, 1) | (extract32(opcode
, 0, 1) << 1);
10190 case 0x59: /* FRINTX */
10191 case 0x79: /* FRINTI */
10192 need_fpstatus
= true;
10193 if (size
== 3 && !is_q
) {
10194 unallocated_encoding(s
);
10198 case 0x58: /* FRINTA */
10200 rmode
= FPROUNDING_TIEAWAY
;
10201 need_fpstatus
= true;
10202 if (size
== 3 && !is_q
) {
10203 unallocated_encoding(s
);
10207 case 0x7c: /* URSQRTE */
10209 unallocated_encoding(s
);
10212 need_fpstatus
= true;
10215 unallocated_encoding(s
);
10221 unallocated_encoding(s
);
10225 if (!fp_access_check(s
)) {
10229 if (need_fpstatus
) {
10230 tcg_fpstatus
= get_fpstatus_ptr();
10232 TCGV_UNUSED_PTR(tcg_fpstatus
);
10235 tcg_rmode
= tcg_const_i32(arm_rmode_to_sf(rmode
));
10236 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
10238 TCGV_UNUSED_I32(tcg_rmode
);
10242 /* All 64-bit element operations can be shared with scalar 2misc */
10245 for (pass
= 0; pass
< (is_q
? 2 : 1); pass
++) {
10246 TCGv_i64 tcg_op
= tcg_temp_new_i64();
10247 TCGv_i64 tcg_res
= tcg_temp_new_i64();
10249 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
10251 handle_2misc_64(s
, opcode
, u
, tcg_res
, tcg_op
,
10252 tcg_rmode
, tcg_fpstatus
);
10254 write_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
10256 tcg_temp_free_i64(tcg_res
);
10257 tcg_temp_free_i64(tcg_op
);
10262 for (pass
= 0; pass
< (is_q
? 4 : 2); pass
++) {
10263 TCGv_i32 tcg_op
= tcg_temp_new_i32();
10264 TCGv_i32 tcg_res
= tcg_temp_new_i32();
10267 read_vec_element_i32(s
, tcg_op
, rn
, pass
, MO_32
);
10270 /* Special cases for 32 bit elements */
10272 case 0xa: /* CMLT */
10273 /* 32 bit integer comparison against zero, result is
10274 * test ? (2^32 - 1) : 0. We implement via setcond(test)
10277 cond
= TCG_COND_LT
;
10279 tcg_gen_setcondi_i32(cond
, tcg_res
, tcg_op
, 0);
10280 tcg_gen_neg_i32(tcg_res
, tcg_res
);
10282 case 0x8: /* CMGT, CMGE */
10283 cond
= u
? TCG_COND_GE
: TCG_COND_GT
;
10285 case 0x9: /* CMEQ, CMLE */
10286 cond
= u
? TCG_COND_LE
: TCG_COND_EQ
;
10288 case 0x4: /* CLS */
10290 gen_helper_clz32(tcg_res
, tcg_op
);
10292 gen_helper_cls32(tcg_res
, tcg_op
);
10295 case 0x7: /* SQABS, SQNEG */
10297 gen_helper_neon_qneg_s32(tcg_res
, cpu_env
, tcg_op
);
10299 gen_helper_neon_qabs_s32(tcg_res
, cpu_env
, tcg_op
);
10302 case 0xb: /* ABS, NEG */
10304 tcg_gen_neg_i32(tcg_res
, tcg_op
);
10306 TCGv_i32 tcg_zero
= tcg_const_i32(0);
10307 tcg_gen_neg_i32(tcg_res
, tcg_op
);
10308 tcg_gen_movcond_i32(TCG_COND_GT
, tcg_res
, tcg_op
,
10309 tcg_zero
, tcg_op
, tcg_res
);
10310 tcg_temp_free_i32(tcg_zero
);
10313 case 0x2f: /* FABS */
10314 gen_helper_vfp_abss(tcg_res
, tcg_op
);
10316 case 0x6f: /* FNEG */
10317 gen_helper_vfp_negs(tcg_res
, tcg_op
);
10319 case 0x7f: /* FSQRT */
10320 gen_helper_vfp_sqrts(tcg_res
, tcg_op
, cpu_env
);
10322 case 0x1a: /* FCVTNS */
10323 case 0x1b: /* FCVTMS */
10324 case 0x1c: /* FCVTAS */
10325 case 0x3a: /* FCVTPS */
10326 case 0x3b: /* FCVTZS */
10328 TCGv_i32 tcg_shift
= tcg_const_i32(0);
10329 gen_helper_vfp_tosls(tcg_res
, tcg_op
,
10330 tcg_shift
, tcg_fpstatus
);
10331 tcg_temp_free_i32(tcg_shift
);
10334 case 0x5a: /* FCVTNU */
10335 case 0x5b: /* FCVTMU */
10336 case 0x5c: /* FCVTAU */
10337 case 0x7a: /* FCVTPU */
10338 case 0x7b: /* FCVTZU */
10340 TCGv_i32 tcg_shift
= tcg_const_i32(0);
10341 gen_helper_vfp_touls(tcg_res
, tcg_op
,
10342 tcg_shift
, tcg_fpstatus
);
10343 tcg_temp_free_i32(tcg_shift
);
10346 case 0x18: /* FRINTN */
10347 case 0x19: /* FRINTM */
10348 case 0x38: /* FRINTP */
10349 case 0x39: /* FRINTZ */
10350 case 0x58: /* FRINTA */
10351 case 0x79: /* FRINTI */
10352 gen_helper_rints(tcg_res
, tcg_op
, tcg_fpstatus
);
10354 case 0x59: /* FRINTX */
10355 gen_helper_rints_exact(tcg_res
, tcg_op
, tcg_fpstatus
);
10357 case 0x7c: /* URSQRTE */
10358 gen_helper_rsqrte_u32(tcg_res
, tcg_op
, tcg_fpstatus
);
10361 g_assert_not_reached();
10364 /* Use helpers for 8 and 16 bit elements */
10366 case 0x5: /* CNT, RBIT */
10367 /* For these two insns size is part of the opcode specifier
10368 * (handled earlier); they always operate on byte elements.
10371 gen_helper_neon_rbit_u8(tcg_res
, tcg_op
);
10373 gen_helper_neon_cnt_u8(tcg_res
, tcg_op
);
10376 case 0x7: /* SQABS, SQNEG */
10378 NeonGenOneOpEnvFn
*genfn
;
10379 static NeonGenOneOpEnvFn
* const fns
[2][2] = {
10380 { gen_helper_neon_qabs_s8
, gen_helper_neon_qneg_s8
},
10381 { gen_helper_neon_qabs_s16
, gen_helper_neon_qneg_s16
},
10383 genfn
= fns
[size
][u
];
10384 genfn(tcg_res
, cpu_env
, tcg_op
);
10387 case 0x8: /* CMGT, CMGE */
10388 case 0x9: /* CMEQ, CMLE */
10389 case 0xa: /* CMLT */
10391 static NeonGenTwoOpFn
* const fns
[3][2] = {
10392 { gen_helper_neon_cgt_s8
, gen_helper_neon_cgt_s16
},
10393 { gen_helper_neon_cge_s8
, gen_helper_neon_cge_s16
},
10394 { gen_helper_neon_ceq_u8
, gen_helper_neon_ceq_u16
},
10396 NeonGenTwoOpFn
*genfn
;
10399 TCGv_i32 tcg_zero
= tcg_const_i32(0);
10401 /* comp = index into [CMGT, CMGE, CMEQ, CMLE, CMLT] */
10402 comp
= (opcode
- 0x8) * 2 + u
;
10403 /* ...but LE, LT are implemented as reverse GE, GT */
10404 reverse
= (comp
> 2);
10408 genfn
= fns
[comp
][size
];
10410 genfn(tcg_res
, tcg_zero
, tcg_op
);
10412 genfn(tcg_res
, tcg_op
, tcg_zero
);
10414 tcg_temp_free_i32(tcg_zero
);
10417 case 0xb: /* ABS, NEG */
10419 TCGv_i32 tcg_zero
= tcg_const_i32(0);
10421 gen_helper_neon_sub_u16(tcg_res
, tcg_zero
, tcg_op
);
10423 gen_helper_neon_sub_u8(tcg_res
, tcg_zero
, tcg_op
);
10425 tcg_temp_free_i32(tcg_zero
);
10428 gen_helper_neon_abs_s16(tcg_res
, tcg_op
);
10430 gen_helper_neon_abs_s8(tcg_res
, tcg_op
);
10434 case 0x4: /* CLS, CLZ */
10437 gen_helper_neon_clz_u8(tcg_res
, tcg_op
);
10439 gen_helper_neon_clz_u16(tcg_res
, tcg_op
);
10443 gen_helper_neon_cls_s8(tcg_res
, tcg_op
);
10445 gen_helper_neon_cls_s16(tcg_res
, tcg_op
);
10450 g_assert_not_reached();
10454 write_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
10456 tcg_temp_free_i32(tcg_res
);
10457 tcg_temp_free_i32(tcg_op
);
10461 clear_vec_high(s
, rd
);
10465 gen_helper_set_rmode(tcg_rmode
, tcg_rmode
, cpu_env
);
10466 tcg_temp_free_i32(tcg_rmode
);
10468 if (need_fpstatus
) {
10469 tcg_temp_free_ptr(tcg_fpstatus
);
10473 /* C3.6.13 AdvSIMD scalar x indexed element
10474 * 31 30 29 28 24 23 22 21 20 19 16 15 12 11 10 9 5 4 0
10475 * +-----+---+-----------+------+---+---+------+-----+---+---+------+------+
10476 * | 0 1 | U | 1 1 1 1 1 | size | L | M | Rm | opc | H | 0 | Rn | Rd |
10477 * +-----+---+-----------+------+---+---+------+-----+---+---+------+------+
10478 * C3.6.18 AdvSIMD vector x indexed element
10479 * 31 30 29 28 24 23 22 21 20 19 16 15 12 11 10 9 5 4 0
10480 * +---+---+---+-----------+------+---+---+------+-----+---+---+------+------+
10481 * | 0 | Q | U | 0 1 1 1 1 | size | L | M | Rm | opc | H | 0 | Rn | Rd |
10482 * +---+---+---+-----------+------+---+---+------+-----+---+---+------+------+
10484 static void disas_simd_indexed(DisasContext
*s
, uint32_t insn
)
10486 /* This encoding has two kinds of instruction:
10487 * normal, where we perform elt x idxelt => elt for each
10488 * element in the vector
10489 * long, where we perform elt x idxelt and generate a result of
10490 * double the width of the input element
10491 * The long ops have a 'part' specifier (ie come in INSN, INSN2 pairs).
10493 bool is_scalar
= extract32(insn
, 28, 1);
10494 bool is_q
= extract32(insn
, 30, 1);
10495 bool u
= extract32(insn
, 29, 1);
10496 int size
= extract32(insn
, 22, 2);
10497 int l
= extract32(insn
, 21, 1);
10498 int m
= extract32(insn
, 20, 1);
10499 /* Note that the Rm field here is only 4 bits, not 5 as it usually is */
10500 int rm
= extract32(insn
, 16, 4);
10501 int opcode
= extract32(insn
, 12, 4);
10502 int h
= extract32(insn
, 11, 1);
10503 int rn
= extract32(insn
, 5, 5);
10504 int rd
= extract32(insn
, 0, 5);
10505 bool is_long
= false;
10506 bool is_fp
= false;
10511 case 0x0: /* MLA */
10512 case 0x4: /* MLS */
10513 if (!u
|| is_scalar
) {
10514 unallocated_encoding(s
);
10518 case 0x2: /* SMLAL, SMLAL2, UMLAL, UMLAL2 */
10519 case 0x6: /* SMLSL, SMLSL2, UMLSL, UMLSL2 */
10520 case 0xa: /* SMULL, SMULL2, UMULL, UMULL2 */
10522 unallocated_encoding(s
);
10527 case 0x3: /* SQDMLAL, SQDMLAL2 */
10528 case 0x7: /* SQDMLSL, SQDMLSL2 */
10529 case 0xb: /* SQDMULL, SQDMULL2 */
10532 case 0xc: /* SQDMULH */
10533 case 0xd: /* SQRDMULH */
10535 unallocated_encoding(s
);
10539 case 0x8: /* MUL */
10540 if (u
|| is_scalar
) {
10541 unallocated_encoding(s
);
10545 case 0x1: /* FMLA */
10546 case 0x5: /* FMLS */
10548 unallocated_encoding(s
);
10552 case 0x9: /* FMUL, FMULX */
10553 if (!extract32(size
, 1, 1)) {
10554 unallocated_encoding(s
);
10560 unallocated_encoding(s
);
10565 /* low bit of size indicates single/double */
10566 size
= extract32(size
, 0, 1) ? 3 : 2;
10568 index
= h
<< 1 | l
;
10571 unallocated_encoding(s
);
10580 index
= h
<< 2 | l
<< 1 | m
;
10583 index
= h
<< 1 | l
;
10587 unallocated_encoding(s
);
10592 if (!fp_access_check(s
)) {
10597 fpst
= get_fpstatus_ptr();
10599 TCGV_UNUSED_PTR(fpst
);
10603 TCGv_i64 tcg_idx
= tcg_temp_new_i64();
10606 assert(is_fp
&& is_q
&& !is_long
);
10608 read_vec_element(s
, tcg_idx
, rm
, index
, MO_64
);
10610 for (pass
= 0; pass
< (is_scalar
? 1 : 2); pass
++) {
10611 TCGv_i64 tcg_op
= tcg_temp_new_i64();
10612 TCGv_i64 tcg_res
= tcg_temp_new_i64();
10614 read_vec_element(s
, tcg_op
, rn
, pass
, MO_64
);
10617 case 0x5: /* FMLS */
10618 /* As usual for ARM, separate negation for fused multiply-add */
10619 gen_helper_vfp_negd(tcg_op
, tcg_op
);
10621 case 0x1: /* FMLA */
10622 read_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
10623 gen_helper_vfp_muladdd(tcg_res
, tcg_op
, tcg_idx
, tcg_res
, fpst
);
10625 case 0x9: /* FMUL, FMULX */
10627 gen_helper_vfp_mulxd(tcg_res
, tcg_op
, tcg_idx
, fpst
);
10629 gen_helper_vfp_muld(tcg_res
, tcg_op
, tcg_idx
, fpst
);
10633 g_assert_not_reached();
10636 write_vec_element(s
, tcg_res
, rd
, pass
, MO_64
);
10637 tcg_temp_free_i64(tcg_op
);
10638 tcg_temp_free_i64(tcg_res
);
10642 clear_vec_high(s
, rd
);
10645 tcg_temp_free_i64(tcg_idx
);
10646 } else if (!is_long
) {
10647 /* 32 bit floating point, or 16 or 32 bit integer.
10648 * For the 16 bit scalar case we use the usual Neon helpers and
10649 * rely on the fact that 0 op 0 == 0 with no side effects.
10651 TCGv_i32 tcg_idx
= tcg_temp_new_i32();
10652 int pass
, maxpasses
;
10657 maxpasses
= is_q
? 4 : 2;
10660 read_vec_element_i32(s
, tcg_idx
, rm
, index
, size
);
10662 if (size
== 1 && !is_scalar
) {
10663 /* The simplest way to handle the 16x16 indexed ops is to duplicate
10664 * the index into both halves of the 32 bit tcg_idx and then use
10665 * the usual Neon helpers.
10667 tcg_gen_deposit_i32(tcg_idx
, tcg_idx
, tcg_idx
, 16, 16);
10670 for (pass
= 0; pass
< maxpasses
; pass
++) {
10671 TCGv_i32 tcg_op
= tcg_temp_new_i32();
10672 TCGv_i32 tcg_res
= tcg_temp_new_i32();
10674 read_vec_element_i32(s
, tcg_op
, rn
, pass
, is_scalar
? size
: MO_32
);
10677 case 0x0: /* MLA */
10678 case 0x4: /* MLS */
10679 case 0x8: /* MUL */
10681 static NeonGenTwoOpFn
* const fns
[2][2] = {
10682 { gen_helper_neon_add_u16
, gen_helper_neon_sub_u16
},
10683 { tcg_gen_add_i32
, tcg_gen_sub_i32
},
10685 NeonGenTwoOpFn
*genfn
;
10686 bool is_sub
= opcode
== 0x4;
10689 gen_helper_neon_mul_u16(tcg_res
, tcg_op
, tcg_idx
);
10691 tcg_gen_mul_i32(tcg_res
, tcg_op
, tcg_idx
);
10693 if (opcode
== 0x8) {
10696 read_vec_element_i32(s
, tcg_op
, rd
, pass
, MO_32
);
10697 genfn
= fns
[size
- 1][is_sub
];
10698 genfn(tcg_res
, tcg_op
, tcg_res
);
10701 case 0x5: /* FMLS */
10702 /* As usual for ARM, separate negation for fused multiply-add */
10703 gen_helper_vfp_negs(tcg_op
, tcg_op
);
10705 case 0x1: /* FMLA */
10706 read_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
10707 gen_helper_vfp_muladds(tcg_res
, tcg_op
, tcg_idx
, tcg_res
, fpst
);
10709 case 0x9: /* FMUL, FMULX */
10711 gen_helper_vfp_mulxs(tcg_res
, tcg_op
, tcg_idx
, fpst
);
10713 gen_helper_vfp_muls(tcg_res
, tcg_op
, tcg_idx
, fpst
);
10716 case 0xc: /* SQDMULH */
10718 gen_helper_neon_qdmulh_s16(tcg_res
, cpu_env
,
10721 gen_helper_neon_qdmulh_s32(tcg_res
, cpu_env
,
10725 case 0xd: /* SQRDMULH */
10727 gen_helper_neon_qrdmulh_s16(tcg_res
, cpu_env
,
10730 gen_helper_neon_qrdmulh_s32(tcg_res
, cpu_env
,
10735 g_assert_not_reached();
10739 write_fp_sreg(s
, rd
, tcg_res
);
10741 write_vec_element_i32(s
, tcg_res
, rd
, pass
, MO_32
);
10744 tcg_temp_free_i32(tcg_op
);
10745 tcg_temp_free_i32(tcg_res
);
10748 tcg_temp_free_i32(tcg_idx
);
10751 clear_vec_high(s
, rd
);
10754 /* long ops: 16x16->32 or 32x32->64 */
10755 TCGv_i64 tcg_res
[2];
10757 bool satop
= extract32(opcode
, 0, 1);
10758 TCGMemOp memop
= MO_32
;
10765 TCGv_i64 tcg_idx
= tcg_temp_new_i64();
10767 read_vec_element(s
, tcg_idx
, rm
, index
, memop
);
10769 for (pass
= 0; pass
< (is_scalar
? 1 : 2); pass
++) {
10770 TCGv_i64 tcg_op
= tcg_temp_new_i64();
10771 TCGv_i64 tcg_passres
;
10777 passelt
= pass
+ (is_q
* 2);
10780 read_vec_element(s
, tcg_op
, rn
, passelt
, memop
);
10782 tcg_res
[pass
] = tcg_temp_new_i64();
10784 if (opcode
== 0xa || opcode
== 0xb) {
10785 /* Non-accumulating ops */
10786 tcg_passres
= tcg_res
[pass
];
10788 tcg_passres
= tcg_temp_new_i64();
10791 tcg_gen_mul_i64(tcg_passres
, tcg_op
, tcg_idx
);
10792 tcg_temp_free_i64(tcg_op
);
10795 /* saturating, doubling */
10796 gen_helper_neon_addl_saturate_s64(tcg_passres
, cpu_env
,
10797 tcg_passres
, tcg_passres
);
10800 if (opcode
== 0xa || opcode
== 0xb) {
10804 /* Accumulating op: handle accumulate step */
10805 read_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
10808 case 0x2: /* SMLAL, SMLAL2, UMLAL, UMLAL2 */
10809 tcg_gen_add_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_passres
);
10811 case 0x6: /* SMLSL, SMLSL2, UMLSL, UMLSL2 */
10812 tcg_gen_sub_i64(tcg_res
[pass
], tcg_res
[pass
], tcg_passres
);
10814 case 0x7: /* SQDMLSL, SQDMLSL2 */
10815 tcg_gen_neg_i64(tcg_passres
, tcg_passres
);
10817 case 0x3: /* SQDMLAL, SQDMLAL2 */
10818 gen_helper_neon_addl_saturate_s64(tcg_res
[pass
], cpu_env
,
10823 g_assert_not_reached();
10825 tcg_temp_free_i64(tcg_passres
);
10827 tcg_temp_free_i64(tcg_idx
);
10830 clear_vec_high(s
, rd
);
10833 TCGv_i32 tcg_idx
= tcg_temp_new_i32();
10836 read_vec_element_i32(s
, tcg_idx
, rm
, index
, size
);
10839 /* The simplest way to handle the 16x16 indexed ops is to
10840 * duplicate the index into both halves of the 32 bit tcg_idx
10841 * and then use the usual Neon helpers.
10843 tcg_gen_deposit_i32(tcg_idx
, tcg_idx
, tcg_idx
, 16, 16);
10846 for (pass
= 0; pass
< (is_scalar
? 1 : 2); pass
++) {
10847 TCGv_i32 tcg_op
= tcg_temp_new_i32();
10848 TCGv_i64 tcg_passres
;
10851 read_vec_element_i32(s
, tcg_op
, rn
, pass
, size
);
10853 read_vec_element_i32(s
, tcg_op
, rn
,
10854 pass
+ (is_q
* 2), MO_32
);
10857 tcg_res
[pass
] = tcg_temp_new_i64();
10859 if (opcode
== 0xa || opcode
== 0xb) {
10860 /* Non-accumulating ops */
10861 tcg_passres
= tcg_res
[pass
];
10863 tcg_passres
= tcg_temp_new_i64();
10866 if (memop
& MO_SIGN
) {
10867 gen_helper_neon_mull_s16(tcg_passres
, tcg_op
, tcg_idx
);
10869 gen_helper_neon_mull_u16(tcg_passres
, tcg_op
, tcg_idx
);
10872 gen_helper_neon_addl_saturate_s32(tcg_passres
, cpu_env
,
10873 tcg_passres
, tcg_passres
);
10875 tcg_temp_free_i32(tcg_op
);
10877 if (opcode
== 0xa || opcode
== 0xb) {
10881 /* Accumulating op: handle accumulate step */
10882 read_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
10885 case 0x2: /* SMLAL, SMLAL2, UMLAL, UMLAL2 */
10886 gen_helper_neon_addl_u32(tcg_res
[pass
], tcg_res
[pass
],
10889 case 0x6: /* SMLSL, SMLSL2, UMLSL, UMLSL2 */
10890 gen_helper_neon_subl_u32(tcg_res
[pass
], tcg_res
[pass
],
10893 case 0x7: /* SQDMLSL, SQDMLSL2 */
10894 gen_helper_neon_negl_u32(tcg_passres
, tcg_passres
);
10896 case 0x3: /* SQDMLAL, SQDMLAL2 */
10897 gen_helper_neon_addl_saturate_s32(tcg_res
[pass
], cpu_env
,
10902 g_assert_not_reached();
10904 tcg_temp_free_i64(tcg_passres
);
10906 tcg_temp_free_i32(tcg_idx
);
10909 tcg_gen_ext32u_i64(tcg_res
[0], tcg_res
[0]);
10914 tcg_res
[1] = tcg_const_i64(0);
10917 for (pass
= 0; pass
< 2; pass
++) {
10918 write_vec_element(s
, tcg_res
[pass
], rd
, pass
, MO_64
);
10919 tcg_temp_free_i64(tcg_res
[pass
]);
10923 if (!TCGV_IS_UNUSED_PTR(fpst
)) {
10924 tcg_temp_free_ptr(fpst
);
10928 /* C3.6.19 Crypto AES
10929 * 31 24 23 22 21 17 16 12 11 10 9 5 4 0
10930 * +-----------------+------+-----------+--------+-----+------+------+
10931 * | 0 1 0 0 1 1 1 0 | size | 1 0 1 0 0 | opcode | 1 0 | Rn | Rd |
10932 * +-----------------+------+-----------+--------+-----+------+------+
10934 static void disas_crypto_aes(DisasContext
*s
, uint32_t insn
)
10936 int size
= extract32(insn
, 22, 2);
10937 int opcode
= extract32(insn
, 12, 5);
10938 int rn
= extract32(insn
, 5, 5);
10939 int rd
= extract32(insn
, 0, 5);
10941 TCGv_i32 tcg_rd_regno
, tcg_rn_regno
, tcg_decrypt
;
10942 CryptoThreeOpEnvFn
*genfn
;
10944 if (!arm_dc_feature(s
, ARM_FEATURE_V8_AES
)
10946 unallocated_encoding(s
);
10951 case 0x4: /* AESE */
10953 genfn
= gen_helper_crypto_aese
;
10955 case 0x6: /* AESMC */
10957 genfn
= gen_helper_crypto_aesmc
;
10959 case 0x5: /* AESD */
10961 genfn
= gen_helper_crypto_aese
;
10963 case 0x7: /* AESIMC */
10965 genfn
= gen_helper_crypto_aesmc
;
10968 unallocated_encoding(s
);
10972 /* Note that we convert the Vx register indexes into the
10973 * index within the vfp.regs[] array, so we can share the
10974 * helper with the AArch32 instructions.
10976 tcg_rd_regno
= tcg_const_i32(rd
<< 1);
10977 tcg_rn_regno
= tcg_const_i32(rn
<< 1);
10978 tcg_decrypt
= tcg_const_i32(decrypt
);
10980 genfn(cpu_env
, tcg_rd_regno
, tcg_rn_regno
, tcg_decrypt
);
10982 tcg_temp_free_i32(tcg_rd_regno
);
10983 tcg_temp_free_i32(tcg_rn_regno
);
10984 tcg_temp_free_i32(tcg_decrypt
);
10987 /* C3.6.20 Crypto three-reg SHA
10988 * 31 24 23 22 21 20 16 15 14 12 11 10 9 5 4 0
10989 * +-----------------+------+---+------+---+--------+-----+------+------+
10990 * | 0 1 0 1 1 1 1 0 | size | 0 | Rm | 0 | opcode | 0 0 | Rn | Rd |
10991 * +-----------------+------+---+------+---+--------+-----+------+------+
10993 static void disas_crypto_three_reg_sha(DisasContext
*s
, uint32_t insn
)
10995 int size
= extract32(insn
, 22, 2);
10996 int opcode
= extract32(insn
, 12, 3);
10997 int rm
= extract32(insn
, 16, 5);
10998 int rn
= extract32(insn
, 5, 5);
10999 int rd
= extract32(insn
, 0, 5);
11000 CryptoThreeOpEnvFn
*genfn
;
11001 TCGv_i32 tcg_rd_regno
, tcg_rn_regno
, tcg_rm_regno
;
11002 int feature
= ARM_FEATURE_V8_SHA256
;
11005 unallocated_encoding(s
);
11010 case 0: /* SHA1C */
11011 case 1: /* SHA1P */
11012 case 2: /* SHA1M */
11013 case 3: /* SHA1SU0 */
11015 feature
= ARM_FEATURE_V8_SHA1
;
11017 case 4: /* SHA256H */
11018 genfn
= gen_helper_crypto_sha256h
;
11020 case 5: /* SHA256H2 */
11021 genfn
= gen_helper_crypto_sha256h2
;
11023 case 6: /* SHA256SU1 */
11024 genfn
= gen_helper_crypto_sha256su1
;
11027 unallocated_encoding(s
);
11031 if (!arm_dc_feature(s
, feature
)) {
11032 unallocated_encoding(s
);
11036 tcg_rd_regno
= tcg_const_i32(rd
<< 1);
11037 tcg_rn_regno
= tcg_const_i32(rn
<< 1);
11038 tcg_rm_regno
= tcg_const_i32(rm
<< 1);
11041 genfn(cpu_env
, tcg_rd_regno
, tcg_rn_regno
, tcg_rm_regno
);
11043 TCGv_i32 tcg_opcode
= tcg_const_i32(opcode
);
11045 gen_helper_crypto_sha1_3reg(cpu_env
, tcg_rd_regno
,
11046 tcg_rn_regno
, tcg_rm_regno
, tcg_opcode
);
11047 tcg_temp_free_i32(tcg_opcode
);
11050 tcg_temp_free_i32(tcg_rd_regno
);
11051 tcg_temp_free_i32(tcg_rn_regno
);
11052 tcg_temp_free_i32(tcg_rm_regno
);
11055 /* C3.6.21 Crypto two-reg SHA
11056 * 31 24 23 22 21 17 16 12 11 10 9 5 4 0
11057 * +-----------------+------+-----------+--------+-----+------+------+
11058 * | 0 1 0 1 1 1 1 0 | size | 1 0 1 0 0 | opcode | 1 0 | Rn | Rd |
11059 * +-----------------+------+-----------+--------+-----+------+------+
11061 static void disas_crypto_two_reg_sha(DisasContext
*s
, uint32_t insn
)
11063 int size
= extract32(insn
, 22, 2);
11064 int opcode
= extract32(insn
, 12, 5);
11065 int rn
= extract32(insn
, 5, 5);
11066 int rd
= extract32(insn
, 0, 5);
11067 CryptoTwoOpEnvFn
*genfn
;
11069 TCGv_i32 tcg_rd_regno
, tcg_rn_regno
;
11072 unallocated_encoding(s
);
11077 case 0: /* SHA1H */
11078 feature
= ARM_FEATURE_V8_SHA1
;
11079 genfn
= gen_helper_crypto_sha1h
;
11081 case 1: /* SHA1SU1 */
11082 feature
= ARM_FEATURE_V8_SHA1
;
11083 genfn
= gen_helper_crypto_sha1su1
;
11085 case 2: /* SHA256SU0 */
11086 feature
= ARM_FEATURE_V8_SHA256
;
11087 genfn
= gen_helper_crypto_sha256su0
;
11090 unallocated_encoding(s
);
11094 if (!arm_dc_feature(s
, feature
)) {
11095 unallocated_encoding(s
);
11099 tcg_rd_regno
= tcg_const_i32(rd
<< 1);
11100 tcg_rn_regno
= tcg_const_i32(rn
<< 1);
11102 genfn(cpu_env
, tcg_rd_regno
, tcg_rn_regno
);
11104 tcg_temp_free_i32(tcg_rd_regno
);
11105 tcg_temp_free_i32(tcg_rn_regno
);
11108 /* C3.6 Data processing - SIMD, inc Crypto
11110 * As the decode gets a little complex we are using a table based
11111 * approach for this part of the decode.
11113 static const AArch64DecodeTable data_proc_simd
[] = {
11114 /* pattern , mask , fn */
11115 { 0x0e200400, 0x9f200400, disas_simd_three_reg_same
},
11116 { 0x0e200000, 0x9f200c00, disas_simd_three_reg_diff
},
11117 { 0x0e200800, 0x9f3e0c00, disas_simd_two_reg_misc
},
11118 { 0x0e300800, 0x9f3e0c00, disas_simd_across_lanes
},
11119 { 0x0e000400, 0x9fe08400, disas_simd_copy
},
11120 { 0x0f000000, 0x9f000400, disas_simd_indexed
}, /* vector indexed */
11121 /* simd_mod_imm decode is a subset of simd_shift_imm, so must precede it */
11122 { 0x0f000400, 0x9ff80400, disas_simd_mod_imm
},
11123 { 0x0f000400, 0x9f800400, disas_simd_shift_imm
},
11124 { 0x0e000000, 0xbf208c00, disas_simd_tb
},
11125 { 0x0e000800, 0xbf208c00, disas_simd_zip_trn
},
11126 { 0x2e000000, 0xbf208400, disas_simd_ext
},
11127 { 0x5e200400, 0xdf200400, disas_simd_scalar_three_reg_same
},
11128 { 0x5e200000, 0xdf200c00, disas_simd_scalar_three_reg_diff
},
11129 { 0x5e200800, 0xdf3e0c00, disas_simd_scalar_two_reg_misc
},
11130 { 0x5e300800, 0xdf3e0c00, disas_simd_scalar_pairwise
},
11131 { 0x5e000400, 0xdfe08400, disas_simd_scalar_copy
},
11132 { 0x5f000000, 0xdf000400, disas_simd_indexed
}, /* scalar indexed */
11133 { 0x5f000400, 0xdf800400, disas_simd_scalar_shift_imm
},
11134 { 0x4e280800, 0xff3e0c00, disas_crypto_aes
},
11135 { 0x5e000000, 0xff208c00, disas_crypto_three_reg_sha
},
11136 { 0x5e280800, 0xff3e0c00, disas_crypto_two_reg_sha
},
11137 { 0x00000000, 0x00000000, NULL
}
11140 static void disas_data_proc_simd(DisasContext
*s
, uint32_t insn
)
11142 /* Note that this is called with all non-FP cases from
11143 * table C3-6 so it must UNDEF for entries not specifically
11144 * allocated to instructions in that table.
11146 AArch64DecodeFn
*fn
= lookup_disas_fn(&data_proc_simd
[0], insn
);
11150 unallocated_encoding(s
);
11154 /* C3.6 Data processing - SIMD and floating point */
11155 static void disas_data_proc_simd_fp(DisasContext
*s
, uint32_t insn
)
11157 if (extract32(insn
, 28, 1) == 1 && extract32(insn
, 30, 1) == 0) {
11158 disas_data_proc_fp(s
, insn
);
11160 /* SIMD, including crypto */
11161 disas_data_proc_simd(s
, insn
);
11165 /* C3.1 A64 instruction index by encoding */
11166 static void disas_a64_insn(CPUARMState
*env
, DisasContext
*s
)
11170 insn
= arm_ldl_code(env
, s
->pc
, s
->sctlr_b
);
11174 s
->fp_access_checked
= false;
11176 switch (extract32(insn
, 25, 4)) {
11177 case 0x0: case 0x1: case 0x2: case 0x3: /* UNALLOCATED */
11178 unallocated_encoding(s
);
11180 case 0x8: case 0x9: /* Data processing - immediate */
11181 disas_data_proc_imm(s
, insn
);
11183 case 0xa: case 0xb: /* Branch, exception generation and system insns */
11184 disas_b_exc_sys(s
, insn
);
11189 case 0xe: /* Loads and stores */
11190 disas_ldst(s
, insn
);
11193 case 0xd: /* Data processing - register */
11194 disas_data_proc_reg(s
, insn
);
11197 case 0xf: /* Data processing - SIMD and floating point */
11198 disas_data_proc_simd_fp(s
, insn
);
11201 assert(FALSE
); /* all 15 cases should be handled above */
11205 /* if we allocated any temporaries, free them here */
11209 void gen_intermediate_code_a64(ARMCPU
*cpu
, TranslationBlock
*tb
)
11211 CPUState
*cs
= CPU(cpu
);
11212 CPUARMState
*env
= &cpu
->env
;
11213 DisasContext dc1
, *dc
= &dc1
;
11214 target_ulong pc_start
;
11215 target_ulong next_page_start
;
11223 dc
->is_jmp
= DISAS_NEXT
;
11225 dc
->singlestep_enabled
= cs
->singlestep_enabled
;
11229 /* If we are coming from secure EL0 in a system with a 32-bit EL3, then
11230 * there is no secure EL1, so we route exceptions to EL3.
11232 dc
->secure_routed_to_el3
= arm_feature(env
, ARM_FEATURE_EL3
) &&
11233 !arm_el_is_aa64(env
, 3);
11236 dc
->be_data
= ARM_TBFLAG_BE_DATA(tb
->flags
) ? MO_BE
: MO_LE
;
11237 dc
->condexec_mask
= 0;
11238 dc
->condexec_cond
= 0;
11239 dc
->mmu_idx
= ARM_TBFLAG_MMUIDX(tb
->flags
);
11240 dc
->tbi0
= ARM_TBFLAG_TBI0(tb
->flags
);
11241 dc
->tbi1
= ARM_TBFLAG_TBI1(tb
->flags
);
11242 dc
->current_el
= arm_mmu_idx_to_el(dc
->mmu_idx
);
11243 #if !defined(CONFIG_USER_ONLY)
11244 dc
->user
= (dc
->current_el
== 0);
11246 dc
->fp_excp_el
= ARM_TBFLAG_FPEXC_EL(tb
->flags
);
11248 dc
->vec_stride
= 0;
11249 dc
->cp_regs
= cpu
->cp_regs
;
11250 dc
->features
= env
->features
;
11252 /* Single step state. The code-generation logic here is:
11254 * generate code with no special handling for single-stepping (except
11255 * that anything that can make us go to SS_ACTIVE == 1 must end the TB;
11256 * this happens anyway because those changes are all system register or
11258 * SS_ACTIVE == 1, PSTATE.SS == 1: (active-not-pending)
11259 * emit code for one insn
11260 * emit code to clear PSTATE.SS
11261 * emit code to generate software step exception for completed step
11262 * end TB (as usual for having generated an exception)
11263 * SS_ACTIVE == 1, PSTATE.SS == 0: (active-pending)
11264 * emit code to generate a software step exception
11267 dc
->ss_active
= ARM_TBFLAG_SS_ACTIVE(tb
->flags
);
11268 dc
->pstate_ss
= ARM_TBFLAG_PSTATE_SS(tb
->flags
);
11269 dc
->is_ldex
= false;
11270 dc
->ss_same_el
= (arm_debug_target_el(env
) == dc
->current_el
);
11272 init_tmp_a64_array(dc
);
11274 next_page_start
= (pc_start
& TARGET_PAGE_MASK
) + TARGET_PAGE_SIZE
;
11276 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
11277 if (max_insns
== 0) {
11278 max_insns
= CF_COUNT_MASK
;
11280 if (max_insns
> TCG_MAX_INSNS
) {
11281 max_insns
= TCG_MAX_INSNS
;
11286 tcg_clear_temp_count();
11289 dc
->insn_start_idx
= tcg_op_buf_count();
11290 tcg_gen_insn_start(dc
->pc
, 0, 0);
11293 if (unlikely(!QTAILQ_EMPTY(&cs
->breakpoints
))) {
11295 QTAILQ_FOREACH(bp
, &cs
->breakpoints
, entry
) {
11296 if (bp
->pc
== dc
->pc
) {
11297 if (bp
->flags
& BP_CPU
) {
11298 gen_a64_set_pc_im(dc
->pc
);
11299 gen_helper_check_breakpoints(cpu_env
);
11300 /* End the TB early; it likely won't be executed */
11301 dc
->is_jmp
= DISAS_UPDATE
;
11303 gen_exception_internal_insn(dc
, 0, EXCP_DEBUG
);
11304 /* The address covered by the breakpoint must be
11305 included in [tb->pc, tb->pc + tb->size) in order
11306 to for it to be properly cleared -- thus we
11307 increment the PC here so that the logic setting
11308 tb->size below does the right thing. */
11310 goto done_generating
;
11317 if (num_insns
== max_insns
&& (tb
->cflags
& CF_LAST_IO
)) {
11321 if (dc
->ss_active
&& !dc
->pstate_ss
) {
11322 /* Singlestep state is Active-pending.
11323 * If we're in this state at the start of a TB then either
11324 * a) we just took an exception to an EL which is being debugged
11325 * and this is the first insn in the exception handler
11326 * b) debug exceptions were masked and we just unmasked them
11327 * without changing EL (eg by clearing PSTATE.D)
11328 * In either case we're going to take a swstep exception in the
11329 * "did not step an insn" case, and so the syndrome ISV and EX
11330 * bits should be zero.
11332 assert(num_insns
== 1);
11333 gen_exception(EXCP_UDEF
, syn_swstep(dc
->ss_same_el
, 0, 0),
11334 default_exception_el(dc
));
11335 dc
->is_jmp
= DISAS_EXC
;
11339 disas_a64_insn(env
, dc
);
11341 if (tcg_check_temp_count()) {
11342 fprintf(stderr
, "TCG temporary leak before "TARGET_FMT_lx
"\n",
11346 /* Translation stops when a conditional branch is encountered.
11347 * Otherwise the subsequent code could get translated several times.
11348 * Also stop translation when a page boundary is reached. This
11349 * ensures prefetch aborts occur at the right place.
11351 } while (!dc
->is_jmp
&& !tcg_op_buf_full() &&
11352 !cs
->singlestep_enabled
&&
11355 dc
->pc
< next_page_start
&&
11356 num_insns
< max_insns
);
11358 if (tb
->cflags
& CF_LAST_IO
) {
11362 if (unlikely(cs
->singlestep_enabled
|| dc
->ss_active
)
11363 && dc
->is_jmp
!= DISAS_EXC
) {
11364 /* Note that this means single stepping WFI doesn't halt the CPU.
11365 * For conditional branch insns this is harmless unreachable code as
11366 * gen_goto_tb() has already handled emitting the debug exception
11367 * (and thus a tb-jump is not possible when singlestepping).
11369 assert(dc
->is_jmp
!= DISAS_TB_JUMP
);
11370 if (dc
->is_jmp
!= DISAS_JUMP
) {
11371 gen_a64_set_pc_im(dc
->pc
);
11373 if (cs
->singlestep_enabled
) {
11374 gen_exception_internal(EXCP_DEBUG
);
11376 gen_step_complete_exception(dc
);
11379 switch (dc
->is_jmp
) {
11381 gen_goto_tb(dc
, 1, dc
->pc
);
11385 gen_a64_set_pc_im(dc
->pc
);
11388 /* indicate that the hash table must be used to find the next TB */
11389 tcg_gen_exit_tb(0);
11391 case DISAS_TB_JUMP
:
11396 gen_a64_set_pc_im(dc
->pc
);
11397 gen_helper_wfe(cpu_env
);
11400 gen_a64_set_pc_im(dc
->pc
);
11401 gen_helper_yield(cpu_env
);
11404 /* This is a special case because we don't want to just halt the CPU
11405 * if trying to debug across a WFI.
11407 gen_a64_set_pc_im(dc
->pc
);
11408 gen_helper_wfi(cpu_env
);
11409 /* The helper doesn't necessarily throw an exception, but we
11410 * must go back to the main loop to check for interrupts anyway.
11412 tcg_gen_exit_tb(0);
11418 gen_tb_end(tb
, num_insns
);
11421 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
) &&
11422 qemu_log_in_addr_range(pc_start
)) {
11424 qemu_log("----------------\n");
11425 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
11426 log_target_disas(cs
, pc_start
, dc
->pc
- pc_start
,
11427 4 | (bswap_code(dc
->sctlr_b
) ? 2 : 0));
11432 tb
->size
= dc
->pc
- pc_start
;
11433 tb
->icount
= num_insns
;