translate.c 354.9 KB
Newer Older
B
bellard 已提交
1 2
/*
 *  ARM translation
3
 *
B
bellard 已提交
4
 *  Copyright (c) 2003 Fabrice Bellard
P
pbrook 已提交
5
 *  Copyright (c) 2005-2007 CodeSourcery
6
 *  Copyright (c) 2007 OpenedHand, Ltd.
B
bellard 已提交
7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
19
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
B
bellard 已提交
20 21 22 23 24 25 26 27
 */
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>

#include "cpu.h"
28
#include "disas/disas.h"
B
bellard 已提交
29
#include "tcg-op.h"
30
#include "qemu/log.h"
P
pbrook 已提交
31

L
Lluís 已提交
32
#include "helper.h"
P
pbrook 已提交
33
#define GEN_HELPER 1
L
Lluís 已提交
34
#include "helper.h"
B
bellard 已提交
35

36 37 38 39
#define ENABLE_ARCH_4T    arm_feature(env, ARM_FEATURE_V4T)
#define ENABLE_ARCH_5     arm_feature(env, ARM_FEATURE_V5)
/* currently all emulated v5 cores are also v5TE, so don't bother */
#define ENABLE_ARCH_5TE   arm_feature(env, ARM_FEATURE_V5)
P
pbrook 已提交
40 41 42 43 44
#define ENABLE_ARCH_5J    0
#define ENABLE_ARCH_6     arm_feature(env, ARM_FEATURE_V6)
#define ENABLE_ARCH_6K   arm_feature(env, ARM_FEATURE_V6K)
#define ENABLE_ARCH_6T2   arm_feature(env, ARM_FEATURE_THUMB2)
#define ENABLE_ARCH_7     arm_feature(env, ARM_FEATURE_V7)
45
#define ENABLE_ARCH_8     arm_feature(env, ARM_FEATURE_V8)
B
bellard 已提交
46

P
pbrook 已提交
47
#define ARCH(x) do { if (!ENABLE_ARCH_##x) goto illegal_op; } while(0)
B
bellard 已提交
48

B
bellard 已提交
49 50
/* internal defines */
typedef struct DisasContext {
B
bellard 已提交
51
    target_ulong pc;
B
bellard 已提交
52
    int is_jmp;
53 54 55 56
    /* Nonzero if this instruction has been conditionally skipped.  */
    int condjmp;
    /* The label that will be jumped to when the instruction is skipped.  */
    int condlabel;
57
    /* Thumb-2 conditional execution bits.  */
P
pbrook 已提交
58 59
    int condexec_mask;
    int condexec_cond;
B
bellard 已提交
60
    struct TranslationBlock *tb;
B
bellard 已提交
61
    int singlestep_enabled;
B
bellard 已提交
62
    int thumb;
P
Paul Brook 已提交
63
    int bswap_code;
B
bellard 已提交
64 65 66
#if !defined(CONFIG_USER_ONLY)
    int user;
#endif
67
    int vfp_enabled;
68 69
    int vec_len;
    int vec_stride;
B
bellard 已提交
70 71
} DisasContext;

72 73
static uint32_t gen_opc_condexec_bits[OPC_BUF_SIZE];

B
bellard 已提交
74 75 76 77 78 79
#if defined(CONFIG_USER_ONLY)
#define IS_USER(s) 1
#else
#define IS_USER(s) (s->user)
#endif

P
pbrook 已提交
80
/* These instructions trap after executing, so defer them until after the
81
   conditional execution state has been updated.  */
P
pbrook 已提交
82 83
#define DISAS_WFI 4
#define DISAS_SWI 5
B
bellard 已提交
84

P
pbrook 已提交
85
static TCGv_ptr cpu_env;
P
pbrook 已提交
86
/* We reuse the same 64-bit temporaries for efficiency.  */
P
pbrook 已提交
87
static TCGv_i64 cpu_V0, cpu_V1, cpu_M0;
88
static TCGv_i32 cpu_R[16];
89
static TCGv_i32 cpu_CF, cpu_NF, cpu_VF, cpu_ZF;
P
Paul Brook 已提交
90 91 92 93 94 95 96
static TCGv_i32 cpu_exclusive_addr;
static TCGv_i32 cpu_exclusive_val;
static TCGv_i32 cpu_exclusive_high;
#ifdef CONFIG_USER_ONLY
static TCGv_i32 cpu_exclusive_test;
static TCGv_i32 cpu_exclusive_info;
#endif
P
pbrook 已提交
97

P
pbrook 已提交
98
/* FIXME:  These should be removed.  */
99
static TCGv_i32 cpu_F0s, cpu_F1s;
P
pbrook 已提交
100
static TCGv_i64 cpu_F0d, cpu_F1d;
P
pbrook 已提交
101

102
#include "exec/gen-icount.h"
P
pbrook 已提交
103

104 105 106 107
static const char *regnames[] =
    { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
      "r8", "r9", "r10", "r11", "r12", "r13", "r14", "pc" };

P
pbrook 已提交
108 109 110
/* initialize TCG globals.  */
void arm_translate_init(void)
{
111 112
    int i;

P
pbrook 已提交
113 114
    cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");

115 116
    for (i = 0; i < 16; i++) {
        cpu_R[i] = tcg_global_mem_new_i32(TCG_AREG0,
117
                                          offsetof(CPUARMState, regs[i]),
118 119
                                          regnames[i]);
    }
120 121 122 123 124
    cpu_CF = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUARMState, CF), "CF");
    cpu_NF = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUARMState, NF), "NF");
    cpu_VF = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUARMState, VF), "VF");
    cpu_ZF = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUARMState, ZF), "ZF");

P
Paul Brook 已提交
125
    cpu_exclusive_addr = tcg_global_mem_new_i32(TCG_AREG0,
126
        offsetof(CPUARMState, exclusive_addr), "exclusive_addr");
P
Paul Brook 已提交
127
    cpu_exclusive_val = tcg_global_mem_new_i32(TCG_AREG0,
128
        offsetof(CPUARMState, exclusive_val), "exclusive_val");
P
Paul Brook 已提交
129
    cpu_exclusive_high = tcg_global_mem_new_i32(TCG_AREG0,
130
        offsetof(CPUARMState, exclusive_high), "exclusive_high");
P
Paul Brook 已提交
131 132
#ifdef CONFIG_USER_ONLY
    cpu_exclusive_test = tcg_global_mem_new_i32(TCG_AREG0,
133
        offsetof(CPUARMState, exclusive_test), "exclusive_test");
P
Paul Brook 已提交
134
    cpu_exclusive_info = tcg_global_mem_new_i32(TCG_AREG0,
135
        offsetof(CPUARMState, exclusive_info), "exclusive_info");
P
Paul Brook 已提交
136
#endif
137

P
pbrook 已提交
138
#define GEN_HELPER 2
L
Lluís 已提交
139
#include "helper.h"
P
pbrook 已提交
140 141
}

142
static inline TCGv_i32 load_cpu_offset(int offset)
P
pbrook 已提交
143
{
144
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
145 146 147 148
    tcg_gen_ld_i32(tmp, cpu_env, offset);
    return tmp;
}

149
#define load_cpu_field(name) load_cpu_offset(offsetof(CPUARMState, name))
P
pbrook 已提交
150

151
static inline void store_cpu_offset(TCGv_i32 var, int offset)
P
pbrook 已提交
152 153
{
    tcg_gen_st_i32(var, cpu_env, offset);
154
    tcg_temp_free_i32(var);
P
pbrook 已提交
155 156 157
}

#define store_cpu_field(var, name) \
158
    store_cpu_offset(var, offsetof(CPUARMState, name))
P
pbrook 已提交
159

P
pbrook 已提交
160
/* Set a variable to the value of a CPU register.  */
161
static void load_reg_var(DisasContext *s, TCGv_i32 var, int reg)
P
pbrook 已提交
162 163 164
{
    if (reg == 15) {
        uint32_t addr;
165
        /* normally, since we updated PC, we need only to add one insn */
P
pbrook 已提交
166 167 168 169 170 171
        if (s->thumb)
            addr = (long)s->pc + 2;
        else
            addr = (long)s->pc + 4;
        tcg_gen_movi_i32(var, addr);
    } else {
172
        tcg_gen_mov_i32(var, cpu_R[reg]);
P
pbrook 已提交
173 174 175 176
    }
}

/* Create a new temporary and set it to the value of a CPU register.  */
177
static inline TCGv_i32 load_reg(DisasContext *s, int reg)
P
pbrook 已提交
178
{
179
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
180 181 182 183 184 185
    load_reg_var(s, tmp, reg);
    return tmp;
}

/* Set a CPU register.  The source must be a temporary and will be
   marked as dead.  */
186
static void store_reg(DisasContext *s, int reg, TCGv_i32 var)
P
pbrook 已提交
187 188 189 190 191
{
    if (reg == 15) {
        tcg_gen_andi_i32(var, var, ~1);
        s->is_jmp = DISAS_JUMP;
    }
192
    tcg_gen_mov_i32(cpu_R[reg], var);
193
    tcg_temp_free_i32(var);
P
pbrook 已提交
194 195 196
}

/* Value extensions.  */
P
pbrook 已提交
197 198
#define gen_uxtb(var) tcg_gen_ext8u_i32(var, var)
#define gen_uxth(var) tcg_gen_ext16u_i32(var, var)
P
pbrook 已提交
199 200 201
#define gen_sxtb(var) tcg_gen_ext8s_i32(var, var)
#define gen_sxth(var) tcg_gen_ext16s_i32(var, var)

P
pbrook 已提交
202 203
#define gen_sxtb16(var) gen_helper_sxtb16(var, var)
#define gen_uxtb16(var) gen_helper_uxtb16(var, var)
P
pbrook 已提交
204

P
pbrook 已提交
205

206
static inline void gen_set_cpsr(TCGv_i32 var, uint32_t mask)
207
{
208
    TCGv_i32 tmp_mask = tcg_const_i32(mask);
B
Blue Swirl 已提交
209
    gen_helper_cpsr_write(cpu_env, var, tmp_mask);
210 211
    tcg_temp_free_i32(tmp_mask);
}
P
pbrook 已提交
212 213 214 215 216
/* Set NZCV flags from the high 4 bits of var.  */
#define gen_set_nzcv(var) gen_set_cpsr(var, CPSR_NZCV)

static void gen_exception(int excp)
{
217
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
218
    tcg_gen_movi_i32(tmp, excp);
B
Blue Swirl 已提交
219
    gen_helper_exception(cpu_env, tmp);
220
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
221 222
}

223
static void gen_smul_dual(TCGv_i32 a, TCGv_i32 b)
P
pbrook 已提交
224
{
225 226
    TCGv_i32 tmp1 = tcg_temp_new_i32();
    TCGv_i32 tmp2 = tcg_temp_new_i32();
227 228
    tcg_gen_ext16s_i32(tmp1, a);
    tcg_gen_ext16s_i32(tmp2, b);
P
pbrook 已提交
229
    tcg_gen_mul_i32(tmp1, tmp1, tmp2);
230
    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
231 232 233 234
    tcg_gen_sari_i32(a, a, 16);
    tcg_gen_sari_i32(b, b, 16);
    tcg_gen_mul_i32(b, b, a);
    tcg_gen_mov_i32(a, tmp1);
235
    tcg_temp_free_i32(tmp1);
P
pbrook 已提交
236 237 238
}

/* Byteswap each halfword.  */
239
static void gen_rev16(TCGv_i32 var)
P
pbrook 已提交
240
{
241
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
242 243 244 245 246
    tcg_gen_shri_i32(tmp, var, 8);
    tcg_gen_andi_i32(tmp, tmp, 0x00ff00ff);
    tcg_gen_shli_i32(var, var, 8);
    tcg_gen_andi_i32(var, var, 0xff00ff00);
    tcg_gen_or_i32(var, var, tmp);
247
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
248 249 250
}

/* Byteswap low halfword and sign extend.  */
251
static void gen_revsh(TCGv_i32 var)
P
pbrook 已提交
252
{
253 254 255
    tcg_gen_ext16u_i32(var, var);
    tcg_gen_bswap16_i32(var, var);
    tcg_gen_ext16s_i32(var, var);
P
pbrook 已提交
256 257 258
}

/* Unsigned bitfield extract.  */
259
static void gen_ubfx(TCGv_i32 var, int shift, uint32_t mask)
P
pbrook 已提交
260 261 262 263 264 265 266
{
    if (shift)
        tcg_gen_shri_i32(var, var, shift);
    tcg_gen_andi_i32(var, var, mask);
}

/* Signed bitfield extract.  */
267
static void gen_sbfx(TCGv_i32 var, int shift, int width)
P
pbrook 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280
{
    uint32_t signbit;

    if (shift)
        tcg_gen_sari_i32(var, var, shift);
    if (shift + width < 32) {
        signbit = 1u << (width - 1);
        tcg_gen_andi_i32(var, var, (1u << width) - 1);
        tcg_gen_xori_i32(var, var, signbit);
        tcg_gen_subi_i32(var, var, signbit);
    }
}

281
/* Return (b << 32) + a. Mark inputs as dead */
282
static TCGv_i64 gen_addq_msw(TCGv_i64 a, TCGv_i32 b)
P
pbrook 已提交
283
{
284 285 286
    TCGv_i64 tmp64 = tcg_temp_new_i64();

    tcg_gen_extu_i32_i64(tmp64, b);
287
    tcg_temp_free_i32(b);
288 289 290 291 292 293 294 295
    tcg_gen_shli_i64(tmp64, tmp64, 32);
    tcg_gen_add_i64(a, tmp64, a);

    tcg_temp_free_i64(tmp64);
    return a;
}

/* Return (b << 32) - a. Mark inputs as dead. */
296
static TCGv_i64 gen_subq_msw(TCGv_i64 a, TCGv_i32 b)
297 298 299 300
{
    TCGv_i64 tmp64 = tcg_temp_new_i64();

    tcg_gen_extu_i32_i64(tmp64, b);
301
    tcg_temp_free_i32(b);
302 303 304 305 306
    tcg_gen_shli_i64(tmp64, tmp64, 32);
    tcg_gen_sub_i64(a, tmp64, a);

    tcg_temp_free_i64(tmp64);
    return a;
P
pbrook 已提交
307 308
}

P
pbrook 已提交
309
/* 32x32->64 multiply.  Marks inputs as dead.  */
310
static TCGv_i64 gen_mulu_i64_i32(TCGv_i32 a, TCGv_i32 b)
P
pbrook 已提交
311
{
312 313
    TCGv_i32 lo = tcg_temp_new_i32();
    TCGv_i32 hi = tcg_temp_new_i32();
314
    TCGv_i64 ret;
P
pbrook 已提交
315

316
    tcg_gen_mulu2_i32(lo, hi, a, b);
317 318
    tcg_temp_free_i32(a);
    tcg_temp_free_i32(b);
319 320 321

    ret = tcg_temp_new_i64();
    tcg_gen_concat_i32_i64(ret, lo, hi);
322 323
    tcg_temp_free_i32(lo);
    tcg_temp_free_i32(hi);
324 325

    return ret;
P
pbrook 已提交
326 327
}

328
static TCGv_i64 gen_muls_i64_i32(TCGv_i32 a, TCGv_i32 b)
P
pbrook 已提交
329
{
330 331
    TCGv_i32 lo = tcg_temp_new_i32();
    TCGv_i32 hi = tcg_temp_new_i32();
332
    TCGv_i64 ret;
P
pbrook 已提交
333

334
    tcg_gen_muls2_i32(lo, hi, a, b);
335 336
    tcg_temp_free_i32(a);
    tcg_temp_free_i32(b);
337 338 339

    ret = tcg_temp_new_i64();
    tcg_gen_concat_i32_i64(ret, lo, hi);
340 341
    tcg_temp_free_i32(lo);
    tcg_temp_free_i32(hi);
342 343

    return ret;
P
pbrook 已提交
344 345
}

P
pbrook 已提交
346
/* Swap low and high halfwords.  */
347
static void gen_swap_half(TCGv_i32 var)
P
pbrook 已提交
348
{
349
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
350 351 352
    tcg_gen_shri_i32(tmp, var, 16);
    tcg_gen_shli_i32(var, var, 16);
    tcg_gen_or_i32(var, var, tmp);
353
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
354 355
}

P
pbrook 已提交
356 357 358 359 360 361 362
/* Dual 16-bit add.  Result placed in t0 and t1 is marked as dead.
    tmp = (t0 ^ t1) & 0x8000;
    t0 &= ~0x8000;
    t1 &= ~0x8000;
    t0 = (t0 + t1) ^ tmp;
 */

363
static void gen_add16(TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
364
{
365
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
366 367 368 369 370 371
    tcg_gen_xor_i32(tmp, t0, t1);
    tcg_gen_andi_i32(tmp, tmp, 0x8000);
    tcg_gen_andi_i32(t0, t0, ~0x8000);
    tcg_gen_andi_i32(t1, t1, ~0x8000);
    tcg_gen_add_i32(t0, t0, t1);
    tcg_gen_xor_i32(t0, t0, tmp);
372 373
    tcg_temp_free_i32(tmp);
    tcg_temp_free_i32(t1);
P
pbrook 已提交
374 375 376
}

/* Set CF to the top bit of var.  */
377
static void gen_set_CF_bit31(TCGv_i32 var)
P
pbrook 已提交
378
{
379
    tcg_gen_shri_i32(cpu_CF, var, 31);
P
pbrook 已提交
380 381 382
}

/* Set N and Z flags from var.  */
383
static inline void gen_logic_CC(TCGv_i32 var)
P
pbrook 已提交
384
{
385 386
    tcg_gen_mov_i32(cpu_NF, var);
    tcg_gen_mov_i32(cpu_ZF, var);
P
pbrook 已提交
387 388 389
}

/* T0 += T1 + CF.  */
390
static void gen_adc(TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
391
{
392
    tcg_gen_add_i32(t0, t0, t1);
393
    tcg_gen_add_i32(t0, t0, cpu_CF);
P
pbrook 已提交
394 395
}

396
/* dest = T0 + T1 + CF. */
397
static void gen_add_carry(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
398 399
{
    tcg_gen_add_i32(dest, t0, t1);
400
    tcg_gen_add_i32(dest, dest, cpu_CF);
401 402
}

P
pbrook 已提交
403
/* dest = T0 - T1 + CF - 1.  */
404
static void gen_sub_carry(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
405 406
{
    tcg_gen_sub_i32(dest, t0, t1);
407
    tcg_gen_add_i32(dest, dest, cpu_CF);
P
pbrook 已提交
408 409 410
    tcg_gen_subi_i32(dest, dest, 1);
}

411
/* dest = T0 + T1. Compute C, N, V and Z flags */
412
static void gen_add_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
413
{
414
    TCGv_i32 tmp = tcg_temp_new_i32();
415 416
    tcg_gen_movi_i32(tmp, 0);
    tcg_gen_add2_i32(cpu_NF, cpu_CF, t0, tmp, t1, tmp);
417 418 419 420 421 422 423 424
    tcg_gen_mov_i32(cpu_ZF, cpu_NF);
    tcg_gen_xor_i32(cpu_VF, cpu_NF, t0);
    tcg_gen_xor_i32(tmp, t0, t1);
    tcg_gen_andc_i32(cpu_VF, cpu_VF, tmp);
    tcg_temp_free_i32(tmp);
    tcg_gen_mov_i32(dest, cpu_NF);
}

425
/* dest = T0 + T1 + CF.  Compute C, N, V and Z flags */
426
static void gen_adc_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
427
{
428
    TCGv_i32 tmp = tcg_temp_new_i32();
429 430 431
    if (TCG_TARGET_HAS_add2_i32) {
        tcg_gen_movi_i32(tmp, 0);
        tcg_gen_add2_i32(cpu_NF, cpu_CF, t0, tmp, cpu_CF, tmp);
432
        tcg_gen_add2_i32(cpu_NF, cpu_CF, cpu_NF, cpu_CF, t1, tmp);
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
    } else {
        TCGv_i64 q0 = tcg_temp_new_i64();
        TCGv_i64 q1 = tcg_temp_new_i64();
        tcg_gen_extu_i32_i64(q0, t0);
        tcg_gen_extu_i32_i64(q1, t1);
        tcg_gen_add_i64(q0, q0, q1);
        tcg_gen_extu_i32_i64(q1, cpu_CF);
        tcg_gen_add_i64(q0, q0, q1);
        tcg_gen_extr_i64_i32(cpu_NF, cpu_CF, q0);
        tcg_temp_free_i64(q0);
        tcg_temp_free_i64(q1);
    }
    tcg_gen_mov_i32(cpu_ZF, cpu_NF);
    tcg_gen_xor_i32(cpu_VF, cpu_NF, t0);
    tcg_gen_xor_i32(tmp, t0, t1);
    tcg_gen_andc_i32(cpu_VF, cpu_VF, tmp);
    tcg_temp_free_i32(tmp);
    tcg_gen_mov_i32(dest, cpu_NF);
}

453
/* dest = T0 - T1. Compute C, N, V and Z flags */
454
static void gen_sub_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
455
{
456
    TCGv_i32 tmp;
457 458 459 460 461 462 463 464 465 466 467
    tcg_gen_sub_i32(cpu_NF, t0, t1);
    tcg_gen_mov_i32(cpu_ZF, cpu_NF);
    tcg_gen_setcond_i32(TCG_COND_GEU, cpu_CF, t0, t1);
    tcg_gen_xor_i32(cpu_VF, cpu_NF, t0);
    tmp = tcg_temp_new_i32();
    tcg_gen_xor_i32(tmp, t0, t1);
    tcg_gen_and_i32(cpu_VF, cpu_VF, tmp);
    tcg_temp_free_i32(tmp);
    tcg_gen_mov_i32(dest, cpu_NF);
}

R
Richard Henderson 已提交
468
/* dest = T0 + ~T1 + CF.  Compute C, N, V and Z flags */
469
static void gen_sbc_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
470
{
471
    TCGv_i32 tmp = tcg_temp_new_i32();
R
Richard Henderson 已提交
472 473
    tcg_gen_not_i32(tmp, t1);
    gen_adc_CC(dest, t0, tmp);
474
    tcg_temp_free_i32(tmp);
475 476
}

477
#define GEN_SHIFT(name)                                               \
478
static void gen_##name(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)       \
479
{                                                                     \
480
    TCGv_i32 tmp1, tmp2, tmp3;                                        \
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
    tmp1 = tcg_temp_new_i32();                                        \
    tcg_gen_andi_i32(tmp1, t1, 0xff);                                 \
    tmp2 = tcg_const_i32(0);                                          \
    tmp3 = tcg_const_i32(0x1f);                                       \
    tcg_gen_movcond_i32(TCG_COND_GTU, tmp2, tmp1, tmp3, tmp2, t0);    \
    tcg_temp_free_i32(tmp3);                                          \
    tcg_gen_andi_i32(tmp1, tmp1, 0x1f);                               \
    tcg_gen_##name##_i32(dest, tmp2, tmp1);                           \
    tcg_temp_free_i32(tmp2);                                          \
    tcg_temp_free_i32(tmp1);                                          \
}
GEN_SHIFT(shl)
GEN_SHIFT(shr)
#undef GEN_SHIFT

496
static void gen_sar(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
497
{
498
    TCGv_i32 tmp1, tmp2;
499 500 501 502 503 504 505 506 507
    tmp1 = tcg_temp_new_i32();
    tcg_gen_andi_i32(tmp1, t1, 0xff);
    tmp2 = tcg_const_i32(0x1f);
    tcg_gen_movcond_i32(TCG_COND_GTU, tmp1, tmp1, tmp2, tmp2, tmp1);
    tcg_temp_free_i32(tmp2);
    tcg_gen_sar_i32(dest, t0, tmp1);
    tcg_temp_free_i32(tmp1);
}

508
static void tcg_gen_abs_i32(TCGv_i32 dest, TCGv_i32 src)
509
{
510 511
    TCGv_i32 c0 = tcg_const_i32(0);
    TCGv_i32 tmp = tcg_temp_new_i32();
512 513 514 515 516
    tcg_gen_neg_i32(tmp, src);
    tcg_gen_movcond_i32(TCG_COND_GT, dest, src, c0, src, tmp);
    tcg_temp_free_i32(c0);
    tcg_temp_free_i32(tmp);
}
P
pbrook 已提交
517

518
static void shifter_out_im(TCGv_i32 var, int shift)
P
pbrook 已提交
519
{
P
pbrook 已提交
520
    if (shift == 0) {
521
        tcg_gen_andi_i32(cpu_CF, var, 1);
P
pbrook 已提交
522
    } else {
523 524 525 526
        tcg_gen_shri_i32(cpu_CF, var, shift);
        if (shift != 31) {
            tcg_gen_andi_i32(cpu_CF, cpu_CF, 1);
        }
P
pbrook 已提交
527 528
    }
}
P
pbrook 已提交
529

P
pbrook 已提交
530
/* Shift by immediate.  Includes special handling for shift == 0.  */
531 532
static inline void gen_arm_shift_im(TCGv_i32 var, int shiftop,
                                    int shift, int flags)
P
pbrook 已提交
533 534 535 536 537 538 539 540 541 542 543 544
{
    switch (shiftop) {
    case 0: /* LSL */
        if (shift != 0) {
            if (flags)
                shifter_out_im(var, 32 - shift);
            tcg_gen_shli_i32(var, var, shift);
        }
        break;
    case 1: /* LSR */
        if (shift == 0) {
            if (flags) {
545
                tcg_gen_shri_i32(cpu_CF, var, 31);
P
pbrook 已提交
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
            }
            tcg_gen_movi_i32(var, 0);
        } else {
            if (flags)
                shifter_out_im(var, shift - 1);
            tcg_gen_shri_i32(var, var, shift);
        }
        break;
    case 2: /* ASR */
        if (shift == 0)
            shift = 32;
        if (flags)
            shifter_out_im(var, shift - 1);
        if (shift == 32)
          shift = 31;
        tcg_gen_sari_i32(var, var, shift);
        break;
    case 3: /* ROR/RRX */
        if (shift != 0) {
            if (flags)
                shifter_out_im(var, shift - 1);
567
            tcg_gen_rotri_i32(var, var, shift); break;
P
pbrook 已提交
568
        } else {
569
            TCGv_i32 tmp = tcg_temp_new_i32();
570
            tcg_gen_shli_i32(tmp, cpu_CF, 31);
P
pbrook 已提交
571 572 573
            if (flags)
                shifter_out_im(var, 0);
            tcg_gen_shri_i32(var, var, 1);
P
pbrook 已提交
574
            tcg_gen_or_i32(var, var, tmp);
575
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
576 577 578 579
        }
    }
};

580 581
static inline void gen_arm_shift_reg(TCGv_i32 var, int shiftop,
                                     TCGv_i32 shift, int flags)
P
pbrook 已提交
582 583 584
{
    if (flags) {
        switch (shiftop) {
585 586 587 588
        case 0: gen_helper_shl_cc(var, cpu_env, var, shift); break;
        case 1: gen_helper_shr_cc(var, cpu_env, var, shift); break;
        case 2: gen_helper_sar_cc(var, cpu_env, var, shift); break;
        case 3: gen_helper_ror_cc(var, cpu_env, var, shift); break;
P
pbrook 已提交
589 590 591
        }
    } else {
        switch (shiftop) {
592 593 594 595 596 597 598 599 600
        case 0:
            gen_shl(var, var, shift);
            break;
        case 1:
            gen_shr(var, var, shift);
            break;
        case 2:
            gen_sar(var, var, shift);
            break;
601 602
        case 3: tcg_gen_andi_i32(shift, shift, 0x1f);
                tcg_gen_rotr_i32(var, var, shift); break;
P
pbrook 已提交
603 604
        }
    }
605
    tcg_temp_free_i32(shift);
P
pbrook 已提交
606 607
}

P
pbrook 已提交
608 609 610 611 612 613 614 615 616
#define PAS_OP(pfx) \
    switch (op2) {  \
    case 0: gen_pas_helper(glue(pfx,add16)); break; \
    case 1: gen_pas_helper(glue(pfx,addsubx)); break; \
    case 2: gen_pas_helper(glue(pfx,subaddx)); break; \
    case 3: gen_pas_helper(glue(pfx,sub16)); break; \
    case 4: gen_pas_helper(glue(pfx,add8)); break; \
    case 7: gen_pas_helper(glue(pfx,sub8)); break; \
    }
617
static void gen_arm_parallel_addsub(int op1, int op2, TCGv_i32 a, TCGv_i32 b)
P
pbrook 已提交
618
{
P
pbrook 已提交
619
    TCGv_ptr tmp;
P
pbrook 已提交
620 621 622 623

    switch (op1) {
#define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b, tmp)
    case 1:
P
pbrook 已提交
624
        tmp = tcg_temp_new_ptr();
625
        tcg_gen_addi_ptr(tmp, cpu_env, offsetof(CPUARMState, GE));
P
pbrook 已提交
626
        PAS_OP(s)
627
        tcg_temp_free_ptr(tmp);
P
pbrook 已提交
628 629
        break;
    case 5:
P
pbrook 已提交
630
        tmp = tcg_temp_new_ptr();
631
        tcg_gen_addi_ptr(tmp, cpu_env, offsetof(CPUARMState, GE));
P
pbrook 已提交
632
        PAS_OP(u)
633
        tcg_temp_free_ptr(tmp);
P
pbrook 已提交
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
        break;
#undef gen_pas_helper
#define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b)
    case 2:
        PAS_OP(q);
        break;
    case 3:
        PAS_OP(sh);
        break;
    case 6:
        PAS_OP(uq);
        break;
    case 7:
        PAS_OP(uh);
        break;
#undef gen_pas_helper
    }
}
P
pbrook 已提交
652 653
#undef PAS_OP

P
pbrook 已提交
654 655
/* For unknown reasons Arm and Thumb-2 use arbitrarily different encodings.  */
#define PAS_OP(pfx) \
656
    switch (op1) {  \
P
pbrook 已提交
657 658 659 660 661 662 663
    case 0: gen_pas_helper(glue(pfx,add8)); break; \
    case 1: gen_pas_helper(glue(pfx,add16)); break; \
    case 2: gen_pas_helper(glue(pfx,addsubx)); break; \
    case 4: gen_pas_helper(glue(pfx,sub8)); break; \
    case 5: gen_pas_helper(glue(pfx,sub16)); break; \
    case 6: gen_pas_helper(glue(pfx,subaddx)); break; \
    }
664
static void gen_thumb2_parallel_addsub(int op1, int op2, TCGv_i32 a, TCGv_i32 b)
P
pbrook 已提交
665
{
P
pbrook 已提交
666
    TCGv_ptr tmp;
P
pbrook 已提交
667

668
    switch (op2) {
P
pbrook 已提交
669 670
#define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b, tmp)
    case 0:
P
pbrook 已提交
671
        tmp = tcg_temp_new_ptr();
672
        tcg_gen_addi_ptr(tmp, cpu_env, offsetof(CPUARMState, GE));
P
pbrook 已提交
673
        PAS_OP(s)
674
        tcg_temp_free_ptr(tmp);
P
pbrook 已提交
675 676
        break;
    case 4:
P
pbrook 已提交
677
        tmp = tcg_temp_new_ptr();
678
        tcg_gen_addi_ptr(tmp, cpu_env, offsetof(CPUARMState, GE));
P
pbrook 已提交
679
        PAS_OP(u)
680
        tcg_temp_free_ptr(tmp);
P
pbrook 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
        break;
#undef gen_pas_helper
#define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b)
    case 1:
        PAS_OP(q);
        break;
    case 2:
        PAS_OP(sh);
        break;
    case 5:
        PAS_OP(uq);
        break;
    case 6:
        PAS_OP(uh);
        break;
#undef gen_pas_helper
    }
}
P
pbrook 已提交
699 700
#undef PAS_OP

P
pbrook 已提交
701 702
static void gen_test_cc(int cc, int label)
{
703
    TCGv_i32 tmp;
P
pbrook 已提交
704 705 706 707
    int inv;

    switch (cc) {
    case 0: /* eq: Z */
708
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_ZF, 0, label);
P
pbrook 已提交
709 710
        break;
    case 1: /* ne: !Z */
711
        tcg_gen_brcondi_i32(TCG_COND_NE, cpu_ZF, 0, label);
P
pbrook 已提交
712 713
        break;
    case 2: /* cs: C */
714
        tcg_gen_brcondi_i32(TCG_COND_NE, cpu_CF, 0, label);
P
pbrook 已提交
715 716
        break;
    case 3: /* cc: !C */
717
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_CF, 0, label);
P
pbrook 已提交
718 719
        break;
    case 4: /* mi: N */
720
        tcg_gen_brcondi_i32(TCG_COND_LT, cpu_NF, 0, label);
P
pbrook 已提交
721 722
        break;
    case 5: /* pl: !N */
723
        tcg_gen_brcondi_i32(TCG_COND_GE, cpu_NF, 0, label);
P
pbrook 已提交
724 725
        break;
    case 6: /* vs: V */
726
        tcg_gen_brcondi_i32(TCG_COND_LT, cpu_VF, 0, label);
P
pbrook 已提交
727 728
        break;
    case 7: /* vc: !V */
729
        tcg_gen_brcondi_i32(TCG_COND_GE, cpu_VF, 0, label);
P
pbrook 已提交
730 731 732
        break;
    case 8: /* hi: C && !Z */
        inv = gen_new_label();
733 734
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_CF, 0, inv);
        tcg_gen_brcondi_i32(TCG_COND_NE, cpu_ZF, 0, label);
P
pbrook 已提交
735 736 737
        gen_set_label(inv);
        break;
    case 9: /* ls: !C || Z */
738 739
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_CF, 0, label);
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_ZF, 0, label);
P
pbrook 已提交
740 741
        break;
    case 10: /* ge: N == V -> N ^ V == 0 */
742 743
        tmp = tcg_temp_new_i32();
        tcg_gen_xor_i32(tmp, cpu_VF, cpu_NF);
P
pbrook 已提交
744
        tcg_gen_brcondi_i32(TCG_COND_GE, tmp, 0, label);
745
        tcg_temp_free_i32(tmp);
P
pbrook 已提交
746 747
        break;
    case 11: /* lt: N != V -> N ^ V != 0 */
748 749
        tmp = tcg_temp_new_i32();
        tcg_gen_xor_i32(tmp, cpu_VF, cpu_NF);
P
pbrook 已提交
750
        tcg_gen_brcondi_i32(TCG_COND_LT, tmp, 0, label);
751
        tcg_temp_free_i32(tmp);
P
pbrook 已提交
752 753 754
        break;
    case 12: /* gt: !Z && N == V */
        inv = gen_new_label();
755 756 757
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_ZF, 0, inv);
        tmp = tcg_temp_new_i32();
        tcg_gen_xor_i32(tmp, cpu_VF, cpu_NF);
P
pbrook 已提交
758
        tcg_gen_brcondi_i32(TCG_COND_GE, tmp, 0, label);
759
        tcg_temp_free_i32(tmp);
P
pbrook 已提交
760 761 762
        gen_set_label(inv);
        break;
    case 13: /* le: Z || N != V */
763 764 765
        tcg_gen_brcondi_i32(TCG_COND_EQ, cpu_ZF, 0, label);
        tmp = tcg_temp_new_i32();
        tcg_gen_xor_i32(tmp, cpu_VF, cpu_NF);
P
pbrook 已提交
766
        tcg_gen_brcondi_i32(TCG_COND_LT, tmp, 0, label);
767
        tcg_temp_free_i32(tmp);
P
pbrook 已提交
768 769 770 771 772 773
        break;
    default:
        fprintf(stderr, "Bad condition code 0x%x\n", cc);
        abort();
    }
}
B
bellard 已提交
774

775
static const uint8_t table_logic_cc[16] = {
B
bellard 已提交
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
    1, /* and */
    1, /* xor */
    0, /* sub */
    0, /* rsb */
    0, /* add */
    0, /* adc */
    0, /* sbc */
    0, /* rsc */
    1, /* andl */
    1, /* xorl */
    0, /* cmp */
    0, /* cmn */
    1, /* orr */
    1, /* mov */
    1, /* bic */
    1, /* mvn */
};
793

P
pbrook 已提交
794 795
/* Set PC and Thumb state from an immediate address.  */
static inline void gen_bx_im(DisasContext *s, uint32_t addr)
B
bellard 已提交
796
{
797
    TCGv_i32 tmp;
B
bellard 已提交
798

P
pbrook 已提交
799
    s->is_jmp = DISAS_UPDATE;
P
pbrook 已提交
800
    if (s->thumb != (addr & 1)) {
801
        tmp = tcg_temp_new_i32();
P
pbrook 已提交
802
        tcg_gen_movi_i32(tmp, addr & 1);
803
        tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUARMState, thumb));
804
        tcg_temp_free_i32(tmp);
P
pbrook 已提交
805
    }
806
    tcg_gen_movi_i32(cpu_R[15], addr & ~1);
P
pbrook 已提交
807 808 809
}

/* Set PC and Thumb state from var.  var is marked as dead.  */
810
static inline void gen_bx(DisasContext *s, TCGv_i32 var)
P
pbrook 已提交
811 812
{
    s->is_jmp = DISAS_UPDATE;
813 814 815
    tcg_gen_andi_i32(cpu_R[15], var, ~1);
    tcg_gen_andi_i32(var, var, 1);
    store_cpu_field(var, thumb);
P
pbrook 已提交
816 817
}

818 819 820
/* Variant of store_reg which uses branch&exchange logic when storing
   to r15 in ARM architecture v7 and above. The source must be a temporary
   and will be marked as dead. */
821
static inline void store_reg_bx(CPUARMState *env, DisasContext *s,
822
                                int reg, TCGv_i32 var)
823 824 825 826 827 828 829 830
{
    if (reg == 15 && ENABLE_ARCH_7) {
        gen_bx(s, var);
    } else {
        store_reg(s, reg, var);
    }
}

831 832 833 834
/* Variant of store_reg which uses branch&exchange logic when storing
 * to r15 in ARM architecture v5T and above. This is used for storing
 * the results of a LDR/LDM/POP into r15, and corresponds to the cases
 * in the ARM ARM which use the LoadWritePC() pseudocode function. */
835
static inline void store_reg_from_load(CPUARMState *env, DisasContext *s,
836
                                       int reg, TCGv_i32 var)
837 838 839 840 841 842 843 844
{
    if (reg == 15 && ENABLE_ARCH_5) {
        gen_bx(s, var);
    } else {
        store_reg(s, reg, var);
    }
}

P
pbrook 已提交
845 846
static inline void gen_set_pc_im(uint32_t val)
{
847
    tcg_gen_movi_i32(cpu_R[15], val);
P
pbrook 已提交
848 849
}

B
bellard 已提交
850 851 852
/* Force a TB lookup after an instruction that changes the CPU state.  */
static inline void gen_lookup_tb(DisasContext *s)
{
853
    tcg_gen_movi_i32(cpu_R[15], s->pc & ~1);
B
bellard 已提交
854 855 856
    s->is_jmp = DISAS_UPDATE;
}

P
pbrook 已提交
857
static inline void gen_add_data_offset(DisasContext *s, unsigned int insn,
858
                                       TCGv_i32 var)
B
bellard 已提交
859
{
B
bellard 已提交
860
    int val, rm, shift, shiftop;
861
    TCGv_i32 offset;
B
bellard 已提交
862 863 864 865 866 867

    if (!(insn & (1 << 25))) {
        /* immediate */
        val = insn & 0xfff;
        if (!(insn & (1 << 23)))
            val = -val;
B
bellard 已提交
868
        if (val != 0)
P
pbrook 已提交
869
            tcg_gen_addi_i32(var, var, val);
B
bellard 已提交
870 871 872 873
    } else {
        /* shift/register */
        rm = (insn) & 0xf;
        shift = (insn >> 7) & 0x1f;
B
bellard 已提交
874
        shiftop = (insn >> 5) & 3;
P
pbrook 已提交
875
        offset = load_reg(s, rm);
P
pbrook 已提交
876
        gen_arm_shift_im(offset, shiftop, shift, 0);
B
bellard 已提交
877
        if (!(insn & (1 << 23)))
P
pbrook 已提交
878
            tcg_gen_sub_i32(var, var, offset);
B
bellard 已提交
879
        else
P
pbrook 已提交
880
            tcg_gen_add_i32(var, var, offset);
881
        tcg_temp_free_i32(offset);
B
bellard 已提交
882 883 884
    }
}

P
pbrook 已提交
885
static inline void gen_add_datah_offset(DisasContext *s, unsigned int insn,
886
                                        int extra, TCGv_i32 var)
B
bellard 已提交
887 888
{
    int val, rm;
889
    TCGv_i32 offset;
890

B
bellard 已提交
891 892 893 894 895
    if (insn & (1 << 22)) {
        /* immediate */
        val = (insn & 0xf) | ((insn >> 4) & 0xf0);
        if (!(insn & (1 << 23)))
            val = -val;
896
        val += extra;
B
bellard 已提交
897
        if (val != 0)
P
pbrook 已提交
898
            tcg_gen_addi_i32(var, var, val);
B
bellard 已提交
899 900
    } else {
        /* register */
P
pbrook 已提交
901
        if (extra)
P
pbrook 已提交
902
            tcg_gen_addi_i32(var, var, extra);
B
bellard 已提交
903
        rm = (insn) & 0xf;
P
pbrook 已提交
904
        offset = load_reg(s, rm);
B
bellard 已提交
905
        if (!(insn & (1 << 23)))
P
pbrook 已提交
906
            tcg_gen_sub_i32(var, var, offset);
B
bellard 已提交
907
        else
P
pbrook 已提交
908
            tcg_gen_add_i32(var, var, offset);
909
        tcg_temp_free_i32(offset);
B
bellard 已提交
910 911 912
    }
}

913 914 915 916 917
static TCGv_ptr get_fpstatus_ptr(int neon)
{
    TCGv_ptr statusptr = tcg_temp_new_ptr();
    int offset;
    if (neon) {
918
        offset = offsetof(CPUARMState, vfp.standard_fp_status);
919
    } else {
920
        offset = offsetof(CPUARMState, vfp.fp_status);
921 922 923 924 925
    }
    tcg_gen_addi_ptr(statusptr, cpu_env, offset);
    return statusptr;
}

P
pbrook 已提交
926 927 928
#define VFP_OP2(name)                                                 \
static inline void gen_vfp_##name(int dp)                             \
{                                                                     \
929 930 931 932 933 934 935
    TCGv_ptr fpst = get_fpstatus_ptr(0);                              \
    if (dp) {                                                         \
        gen_helper_vfp_##name##d(cpu_F0d, cpu_F0d, cpu_F1d, fpst);    \
    } else {                                                          \
        gen_helper_vfp_##name##s(cpu_F0s, cpu_F0s, cpu_F1s, fpst);    \
    }                                                                 \
    tcg_temp_free_ptr(fpst);                                          \
B
bellard 已提交
936 937
}

P
pbrook 已提交
938 939 940 941 942 943 944
VFP_OP2(add)
VFP_OP2(sub)
VFP_OP2(mul)
VFP_OP2(div)

#undef VFP_OP2

945 946 947
static inline void gen_vfp_F1_mul(int dp)
{
    /* Like gen_vfp_mul() but put result in F1 */
948
    TCGv_ptr fpst = get_fpstatus_ptr(0);
949
    if (dp) {
950
        gen_helper_vfp_muld(cpu_F1d, cpu_F0d, cpu_F1d, fpst);
951
    } else {
952
        gen_helper_vfp_muls(cpu_F1s, cpu_F0s, cpu_F1s, fpst);
953
    }
954
    tcg_temp_free_ptr(fpst);
955 956 957 958 959 960 961 962 963 964 965 966
}

static inline void gen_vfp_F1_neg(int dp)
{
    /* Like gen_vfp_neg() but put result in F1 */
    if (dp) {
        gen_helper_vfp_negd(cpu_F1d, cpu_F0d);
    } else {
        gen_helper_vfp_negs(cpu_F1s, cpu_F0s);
    }
}

P
pbrook 已提交
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
static inline void gen_vfp_abs(int dp)
{
    if (dp)
        gen_helper_vfp_absd(cpu_F0d, cpu_F0d);
    else
        gen_helper_vfp_abss(cpu_F0s, cpu_F0s);
}

static inline void gen_vfp_neg(int dp)
{
    if (dp)
        gen_helper_vfp_negd(cpu_F0d, cpu_F0d);
    else
        gen_helper_vfp_negs(cpu_F0s, cpu_F0s);
}

static inline void gen_vfp_sqrt(int dp)
{
    if (dp)
        gen_helper_vfp_sqrtd(cpu_F0d, cpu_F0d, cpu_env);
    else
        gen_helper_vfp_sqrts(cpu_F0s, cpu_F0s, cpu_env);
}

static inline void gen_vfp_cmp(int dp)
{
    if (dp)
        gen_helper_vfp_cmpd(cpu_F0d, cpu_F1d, cpu_env);
    else
        gen_helper_vfp_cmps(cpu_F0s, cpu_F1s, cpu_env);
}

static inline void gen_vfp_cmpe(int dp)
{
    if (dp)
        gen_helper_vfp_cmped(cpu_F0d, cpu_F1d, cpu_env);
    else
        gen_helper_vfp_cmpes(cpu_F0s, cpu_F1s, cpu_env);
}

static inline void gen_vfp_F1_ld0(int dp)
{
    if (dp)
B
balrog 已提交
1010
        tcg_gen_movi_i64(cpu_F1d, 0);
P
pbrook 已提交
1011
    else
B
balrog 已提交
1012
        tcg_gen_movi_i32(cpu_F1s, 0);
P
pbrook 已提交
1013 1014
}

1015 1016 1017
#define VFP_GEN_ITOF(name) \
static inline void gen_vfp_##name(int dp, int neon) \
{ \
1018
    TCGv_ptr statusptr = get_fpstatus_ptr(neon); \
1019 1020 1021 1022 1023
    if (dp) { \
        gen_helper_vfp_##name##d(cpu_F0d, cpu_F0s, statusptr); \
    } else { \
        gen_helper_vfp_##name##s(cpu_F0s, cpu_F0s, statusptr); \
    } \
1024
    tcg_temp_free_ptr(statusptr); \
P
pbrook 已提交
1025 1026
}

1027 1028 1029
VFP_GEN_ITOF(uito)
VFP_GEN_ITOF(sito)
#undef VFP_GEN_ITOF
P
pbrook 已提交
1030

1031 1032 1033
#define VFP_GEN_FTOI(name) \
static inline void gen_vfp_##name(int dp, int neon) \
{ \
1034
    TCGv_ptr statusptr = get_fpstatus_ptr(neon); \
1035 1036 1037 1038 1039
    if (dp) { \
        gen_helper_vfp_##name##d(cpu_F0s, cpu_F0d, statusptr); \
    } else { \
        gen_helper_vfp_##name##s(cpu_F0s, cpu_F0s, statusptr); \
    } \
1040
    tcg_temp_free_ptr(statusptr); \
P
pbrook 已提交
1041 1042
}

1043 1044 1045 1046 1047
VFP_GEN_FTOI(toui)
VFP_GEN_FTOI(touiz)
VFP_GEN_FTOI(tosi)
VFP_GEN_FTOI(tosiz)
#undef VFP_GEN_FTOI
P
pbrook 已提交
1048 1049

#define VFP_GEN_FIX(name) \
1050
static inline void gen_vfp_##name(int dp, int shift, int neon) \
P
pbrook 已提交
1051
{ \
1052
    TCGv_i32 tmp_shift = tcg_const_i32(shift); \
1053
    TCGv_ptr statusptr = get_fpstatus_ptr(neon); \
1054 1055 1056 1057 1058
    if (dp) { \
        gen_helper_vfp_##name##d(cpu_F0d, cpu_F0d, tmp_shift, statusptr); \
    } else { \
        gen_helper_vfp_##name##s(cpu_F0s, cpu_F0s, tmp_shift, statusptr); \
    } \
1059
    tcg_temp_free_i32(tmp_shift); \
1060
    tcg_temp_free_ptr(statusptr); \
P
pbrook 已提交
1061
}
P
pbrook 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070
VFP_GEN_FIX(tosh)
VFP_GEN_FIX(tosl)
VFP_GEN_FIX(touh)
VFP_GEN_FIX(toul)
VFP_GEN_FIX(shto)
VFP_GEN_FIX(slto)
VFP_GEN_FIX(uhto)
VFP_GEN_FIX(ulto)
#undef VFP_GEN_FIX
P
pbrook 已提交
1071

1072
static inline void gen_vfp_ld(DisasContext *s, int dp, TCGv_i32 addr)
B
bellard 已提交
1073 1074
{
    if (dp)
1075
        tcg_gen_qemu_ld64(cpu_F0d, addr, IS_USER(s));
B
bellard 已提交
1076
    else
1077
        tcg_gen_qemu_ld32u(cpu_F0s, addr, IS_USER(s));
B
bellard 已提交
1078 1079
}

1080
static inline void gen_vfp_st(DisasContext *s, int dp, TCGv_i32 addr)
B
bellard 已提交
1081 1082
{
    if (dp)
1083
        tcg_gen_qemu_st64(cpu_F0d, addr, IS_USER(s));
B
bellard 已提交
1084
    else
1085
        tcg_gen_qemu_st32(cpu_F0s, addr, IS_USER(s));
B
bellard 已提交
1086 1087
}

B
bellard 已提交
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
static inline long
vfp_reg_offset (int dp, int reg)
{
    if (dp)
        return offsetof(CPUARMState, vfp.regs[reg]);
    else if (reg & 1) {
        return offsetof(CPUARMState, vfp.regs[reg >> 1])
          + offsetof(CPU_DoubleU, l.upper);
    } else {
        return offsetof(CPUARMState, vfp.regs[reg >> 1])
          + offsetof(CPU_DoubleU, l.lower);
    }
}
P
pbrook 已提交
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111

/* Return the offset of a 32-bit piece of a NEON register.
   zero is the least significant end of the register.  */
static inline long
neon_reg_offset (int reg, int n)
{
    int sreg;
    sreg = reg * 2 + n;
    return vfp_reg_offset(0, sreg);
}

1112
static TCGv_i32 neon_load_reg(int reg, int pass)
P
pbrook 已提交
1113
{
1114
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
1115 1116 1117 1118
    tcg_gen_ld_i32(tmp, cpu_env, neon_reg_offset(reg, pass));
    return tmp;
}

1119
static void neon_store_reg(int reg, int pass, TCGv_i32 var)
P
pbrook 已提交
1120 1121
{
    tcg_gen_st_i32(var, cpu_env, neon_reg_offset(reg, pass));
1122
    tcg_temp_free_i32(var);
P
pbrook 已提交
1123 1124
}

P
pbrook 已提交
1125
static inline void neon_load_reg64(TCGv_i64 var, int reg)
P
pbrook 已提交
1126 1127 1128 1129
{
    tcg_gen_ld_i64(var, cpu_env, vfp_reg_offset(1, reg));
}

P
pbrook 已提交
1130
static inline void neon_store_reg64(TCGv_i64 var, int reg)
P
pbrook 已提交
1131 1132 1133 1134
{
    tcg_gen_st_i64(var, cpu_env, vfp_reg_offset(1, reg));
}

P
pbrook 已提交
1135 1136 1137 1138 1139
#define tcg_gen_ld_f32 tcg_gen_ld_i32
#define tcg_gen_ld_f64 tcg_gen_ld_i64
#define tcg_gen_st_f32 tcg_gen_st_i32
#define tcg_gen_st_f64 tcg_gen_st_i64

B
bellard 已提交
1140 1141 1142
static inline void gen_mov_F0_vreg(int dp, int reg)
{
    if (dp)
P
pbrook 已提交
1143
        tcg_gen_ld_f64(cpu_F0d, cpu_env, vfp_reg_offset(dp, reg));
B
bellard 已提交
1144
    else
P
pbrook 已提交
1145
        tcg_gen_ld_f32(cpu_F0s, cpu_env, vfp_reg_offset(dp, reg));
B
bellard 已提交
1146 1147 1148 1149 1150
}

static inline void gen_mov_F1_vreg(int dp, int reg)
{
    if (dp)
P
pbrook 已提交
1151
        tcg_gen_ld_f64(cpu_F1d, cpu_env, vfp_reg_offset(dp, reg));
B
bellard 已提交
1152
    else
P
pbrook 已提交
1153
        tcg_gen_ld_f32(cpu_F1s, cpu_env, vfp_reg_offset(dp, reg));
B
bellard 已提交
1154 1155 1156 1157 1158
}

static inline void gen_mov_vreg_F0(int dp, int reg)
{
    if (dp)
P
pbrook 已提交
1159
        tcg_gen_st_f64(cpu_F0d, cpu_env, vfp_reg_offset(dp, reg));
B
bellard 已提交
1160
    else
P
pbrook 已提交
1161
        tcg_gen_st_f32(cpu_F0s, cpu_env, vfp_reg_offset(dp, reg));
B
bellard 已提交
1162 1163
}

1164 1165
#define ARM_CP_RW_BIT	(1 << 20)

P
pbrook 已提交
1166
static inline void iwmmxt_load_reg(TCGv_i64 var, int reg)
P
pbrook 已提交
1167
{
1168
    tcg_gen_ld_i64(var, cpu_env, offsetof(CPUARMState, iwmmxt.regs[reg]));
P
pbrook 已提交
1169 1170
}

P
pbrook 已提交
1171
static inline void iwmmxt_store_reg(TCGv_i64 var, int reg)
P
pbrook 已提交
1172
{
1173
    tcg_gen_st_i64(var, cpu_env, offsetof(CPUARMState, iwmmxt.regs[reg]));
P
pbrook 已提交
1174 1175
}

1176
static inline TCGv_i32 iwmmxt_load_creg(int reg)
P
pbrook 已提交
1177
{
1178
    TCGv_i32 var = tcg_temp_new_i32();
1179
    tcg_gen_ld_i32(var, cpu_env, offsetof(CPUARMState, iwmmxt.cregs[reg]));
1180
    return var;
P
pbrook 已提交
1181 1182
}

1183
static inline void iwmmxt_store_creg(int reg, TCGv_i32 var)
P
pbrook 已提交
1184
{
1185
    tcg_gen_st_i32(var, cpu_env, offsetof(CPUARMState, iwmmxt.cregs[reg]));
1186
    tcg_temp_free_i32(var);
P
pbrook 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
}

static inline void gen_op_iwmmxt_movq_wRn_M0(int rn)
{
    iwmmxt_store_reg(cpu_M0, rn);
}

static inline void gen_op_iwmmxt_movq_M0_wRn(int rn)
{
    iwmmxt_load_reg(cpu_M0, rn);
}

static inline void gen_op_iwmmxt_orq_M0_wRn(int rn)
{
    iwmmxt_load_reg(cpu_V1, rn);
    tcg_gen_or_i64(cpu_M0, cpu_M0, cpu_V1);
}

static inline void gen_op_iwmmxt_andq_M0_wRn(int rn)
{
    iwmmxt_load_reg(cpu_V1, rn);
    tcg_gen_and_i64(cpu_M0, cpu_M0, cpu_V1);
}

static inline void gen_op_iwmmxt_xorq_M0_wRn(int rn)
{
    iwmmxt_load_reg(cpu_V1, rn);
    tcg_gen_xor_i64(cpu_M0, cpu_M0, cpu_V1);
}

#define IWMMXT_OP(name) \
static inline void gen_op_iwmmxt_##name##_M0_wRn(int rn) \
{ \
    iwmmxt_load_reg(cpu_V1, rn); \
    gen_helper_iwmmxt_##name(cpu_M0, cpu_M0, cpu_V1); \
}

1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
#define IWMMXT_OP_ENV(name) \
static inline void gen_op_iwmmxt_##name##_M0_wRn(int rn) \
{ \
    iwmmxt_load_reg(cpu_V1, rn); \
    gen_helper_iwmmxt_##name(cpu_M0, cpu_env, cpu_M0, cpu_V1); \
}

#define IWMMXT_OP_ENV_SIZE(name) \
IWMMXT_OP_ENV(name##b) \
IWMMXT_OP_ENV(name##w) \
IWMMXT_OP_ENV(name##l)
P
pbrook 已提交
1235

1236
#define IWMMXT_OP_ENV1(name) \
P
pbrook 已提交
1237 1238
static inline void gen_op_iwmmxt_##name##_M0(void) \
{ \
1239
    gen_helper_iwmmxt_##name(cpu_M0, cpu_env, cpu_M0); \
P
pbrook 已提交
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
}

IWMMXT_OP(maddsq)
IWMMXT_OP(madduq)
IWMMXT_OP(sadb)
IWMMXT_OP(sadw)
IWMMXT_OP(mulslw)
IWMMXT_OP(mulshw)
IWMMXT_OP(mululw)
IWMMXT_OP(muluhw)
IWMMXT_OP(macsw)
IWMMXT_OP(macuw)

1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
IWMMXT_OP_ENV_SIZE(unpackl)
IWMMXT_OP_ENV_SIZE(unpackh)

IWMMXT_OP_ENV1(unpacklub)
IWMMXT_OP_ENV1(unpackluw)
IWMMXT_OP_ENV1(unpacklul)
IWMMXT_OP_ENV1(unpackhub)
IWMMXT_OP_ENV1(unpackhuw)
IWMMXT_OP_ENV1(unpackhul)
IWMMXT_OP_ENV1(unpacklsb)
IWMMXT_OP_ENV1(unpacklsw)
IWMMXT_OP_ENV1(unpacklsl)
IWMMXT_OP_ENV1(unpackhsb)
IWMMXT_OP_ENV1(unpackhsw)
IWMMXT_OP_ENV1(unpackhsl)

IWMMXT_OP_ENV_SIZE(cmpeq)
IWMMXT_OP_ENV_SIZE(cmpgtu)
IWMMXT_OP_ENV_SIZE(cmpgts)

IWMMXT_OP_ENV_SIZE(mins)
IWMMXT_OP_ENV_SIZE(minu)
IWMMXT_OP_ENV_SIZE(maxs)
IWMMXT_OP_ENV_SIZE(maxu)

IWMMXT_OP_ENV_SIZE(subn)
IWMMXT_OP_ENV_SIZE(addn)
IWMMXT_OP_ENV_SIZE(subu)
IWMMXT_OP_ENV_SIZE(addu)
IWMMXT_OP_ENV_SIZE(subs)
IWMMXT_OP_ENV_SIZE(adds)

IWMMXT_OP_ENV(avgb0)
IWMMXT_OP_ENV(avgb1)
IWMMXT_OP_ENV(avgw0)
IWMMXT_OP_ENV(avgw1)
P
pbrook 已提交
1289 1290 1291

IWMMXT_OP(msadb)

1292 1293 1294 1295 1296 1297
IWMMXT_OP_ENV(packuw)
IWMMXT_OP_ENV(packul)
IWMMXT_OP_ENV(packuq)
IWMMXT_OP_ENV(packsw)
IWMMXT_OP_ENV(packsl)
IWMMXT_OP_ENV(packsq)
P
pbrook 已提交
1298 1299 1300

static void gen_op_iwmmxt_set_mup(void)
{
1301
    TCGv_i32 tmp;
P
pbrook 已提交
1302 1303 1304 1305 1306 1307 1308
    tmp = load_cpu_field(iwmmxt.cregs[ARM_IWMMXT_wCon]);
    tcg_gen_ori_i32(tmp, tmp, 2);
    store_cpu_field(tmp, iwmmxt.cregs[ARM_IWMMXT_wCon]);
}

static void gen_op_iwmmxt_set_cup(void)
{
1309
    TCGv_i32 tmp;
P
pbrook 已提交
1310 1311 1312 1313 1314 1315 1316
    tmp = load_cpu_field(iwmmxt.cregs[ARM_IWMMXT_wCon]);
    tcg_gen_ori_i32(tmp, tmp, 1);
    store_cpu_field(tmp, iwmmxt.cregs[ARM_IWMMXT_wCon]);
}

static void gen_op_iwmmxt_setpsr_nz(void)
{
1317
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
1318 1319 1320 1321 1322 1323 1324
    gen_helper_iwmmxt_setpsr_nz(tmp, cpu_M0);
    store_cpu_field(tmp, iwmmxt.cregs[ARM_IWMMXT_wCASF]);
}

static inline void gen_op_iwmmxt_addl_M0_wRn(int rn)
{
    iwmmxt_load_reg(cpu_V1, rn);
P
pbrook 已提交
1325
    tcg_gen_ext32u_i64(cpu_V1, cpu_V1);
P
pbrook 已提交
1326 1327 1328
    tcg_gen_add_i64(cpu_M0, cpu_M0, cpu_V1);
}

1329 1330
static inline int gen_iwmmxt_address(DisasContext *s, uint32_t insn,
                                     TCGv_i32 dest)
1331 1332 1333
{
    int rd;
    uint32_t offset;
1334
    TCGv_i32 tmp;
1335 1336

    rd = (insn >> 16) & 0xf;
1337
    tmp = load_reg(s, rd);
1338 1339 1340 1341 1342

    offset = (insn & 0xff) << ((insn >> 7) & 2);
    if (insn & (1 << 24)) {
        /* Pre indexed */
        if (insn & (1 << 23))
1343
            tcg_gen_addi_i32(tmp, tmp, offset);
1344
        else
1345 1346
            tcg_gen_addi_i32(tmp, tmp, -offset);
        tcg_gen_mov_i32(dest, tmp);
1347
        if (insn & (1 << 21))
1348 1349
            store_reg(s, rd, tmp);
        else
1350
            tcg_temp_free_i32(tmp);
1351 1352
    } else if (insn & (1 << 21)) {
        /* Post indexed */
1353
        tcg_gen_mov_i32(dest, tmp);
1354
        if (insn & (1 << 23))
1355
            tcg_gen_addi_i32(tmp, tmp, offset);
1356
        else
1357 1358
            tcg_gen_addi_i32(tmp, tmp, -offset);
        store_reg(s, rd, tmp);
1359 1360 1361 1362 1363
    } else if (!(insn & (1 << 23)))
        return 1;
    return 0;
}

1364
static inline int gen_iwmmxt_shift(uint32_t insn, uint32_t mask, TCGv_i32 dest)
1365 1366
{
    int rd = (insn >> 0) & 0xf;
1367
    TCGv_i32 tmp;
1368

1369 1370
    if (insn & (1 << 8)) {
        if (rd < ARM_IWMMXT_wCGR0 || rd > ARM_IWMMXT_wCGR3) {
1371
            return 1;
1372 1373 1374 1375
        } else {
            tmp = iwmmxt_load_creg(rd);
        }
    } else {
1376
        tmp = tcg_temp_new_i32();
1377 1378 1379 1380 1381
        iwmmxt_load_reg(cpu_V0, rd);
        tcg_gen_trunc_i64_i32(tmp, cpu_V0);
    }
    tcg_gen_andi_i32(tmp, tmp, mask);
    tcg_gen_mov_i32(dest, tmp);
1382
    tcg_temp_free_i32(tmp);
1383 1384 1385
    return 0;
}

1386
/* Disassemble an iwMMXt instruction.  Returns nonzero if an error occurred
1387
   (ie. an undefined instruction).  */
1388
static int disas_iwmmxt_insn(CPUARMState *env, DisasContext *s, uint32_t insn)
1389 1390 1391
{
    int rd, wrd;
    int rdhi, rdlo, rd0, rd1, i;
1392 1393
    TCGv_i32 addr;
    TCGv_i32 tmp, tmp2, tmp3;
1394 1395 1396 1397 1398 1399 1400

    if ((insn & 0x0e000e00) == 0x0c000000) {
        if ((insn & 0x0fe00ff0) == 0x0c400000) {
            wrd = insn & 0xf;
            rdlo = (insn >> 12) & 0xf;
            rdhi = (insn >> 16) & 0xf;
            if (insn & ARM_CP_RW_BIT) {			/* TMRRC */
1401 1402 1403 1404
                iwmmxt_load_reg(cpu_V0, wrd);
                tcg_gen_trunc_i64_i32(cpu_R[rdlo], cpu_V0);
                tcg_gen_shri_i64(cpu_V0, cpu_V0, 32);
                tcg_gen_trunc_i64_i32(cpu_R[rdhi], cpu_V0);
1405
            } else {					/* TMCRR */
1406 1407
                tcg_gen_concat_i32_i64(cpu_V0, cpu_R[rdlo], cpu_R[rdhi]);
                iwmmxt_store_reg(cpu_V0, wrd);
1408 1409 1410 1411 1412 1413
                gen_op_iwmmxt_set_mup();
            }
            return 0;
        }

        wrd = (insn >> 12) & 0xf;
1414
        addr = tcg_temp_new_i32();
1415
        if (gen_iwmmxt_address(s, insn, addr)) {
1416
            tcg_temp_free_i32(addr);
1417
            return 1;
1418
        }
1419 1420
        if (insn & ARM_CP_RW_BIT) {
            if ((insn >> 28) == 0xf) {			/* WLDRW wCx */
1421
                tmp = tcg_temp_new_i32();
1422 1423
                tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
                iwmmxt_store_creg(wrd, tmp);
1424
            } else {
P
pbrook 已提交
1425 1426 1427
                i = 1;
                if (insn & (1 << 8)) {
                    if (insn & (1 << 22)) {		/* WLDRD */
1428
                        tcg_gen_qemu_ld64(cpu_M0, addr, IS_USER(s));
P
pbrook 已提交
1429 1430
                        i = 0;
                    } else {				/* WLDRW wRd */
1431 1432
                        tmp = tcg_temp_new_i32();
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
1433 1434
                    }
                } else {
1435
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
1436
                    if (insn & (1 << 22)) {		/* WLDRH */
1437
                        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
1438
                    } else {				/* WLDRB */
1439
                        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
pbrook 已提交
1440 1441 1442 1443
                    }
                }
                if (i) {
                    tcg_gen_extu_i32_i64(cpu_M0, tmp);
1444
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
1445
                }
1446 1447 1448 1449
                gen_op_iwmmxt_movq_wRn_M0(wrd);
            }
        } else {
            if ((insn >> 28) == 0xf) {			/* WSTRW wCx */
1450
                tmp = iwmmxt_load_creg(wrd);
1451
                tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
1452 1453
            } else {
                gen_op_iwmmxt_movq_M0_wRn(wrd);
1454
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
1455 1456
                if (insn & (1 << 8)) {
                    if (insn & (1 << 22)) {		/* WSTRD */
1457
                        tcg_gen_qemu_st64(cpu_M0, addr, IS_USER(s));
P
pbrook 已提交
1458 1459
                    } else {				/* WSTRW wRd */
                        tcg_gen_trunc_i64_i32(tmp, cpu_M0);
1460
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
P
pbrook 已提交
1461 1462 1463 1464
                    }
                } else {
                    if (insn & (1 << 22)) {		/* WSTRH */
                        tcg_gen_trunc_i64_i32(tmp, cpu_M0);
1465
                        tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
P
pbrook 已提交
1466 1467
                    } else {				/* WSTRB */
                        tcg_gen_trunc_i64_i32(tmp, cpu_M0);
1468
                        tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
P
pbrook 已提交
1469 1470
                    }
                }
1471
            }
1472
            tcg_temp_free_i32(tmp);
1473
        }
1474
        tcg_temp_free_i32(addr);
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
        return 0;
    }

    if ((insn & 0x0f000000) != 0x0e000000)
        return 1;

    switch (((insn >> 12) & 0xf00) | ((insn >> 4) & 0xff)) {
    case 0x000:						/* WOR */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 0) & 0xf;
        rd1 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        gen_op_iwmmxt_orq_M0_wRn(rd1);
        gen_op_iwmmxt_setpsr_nz();
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x011:						/* TMCR */
        if (insn & 0xf)
            return 1;
        rd = (insn >> 12) & 0xf;
        wrd = (insn >> 16) & 0xf;
        switch (wrd) {
        case ARM_IWMMXT_wCID:
        case ARM_IWMMXT_wCASF:
            break;
        case ARM_IWMMXT_wCon:
            gen_op_iwmmxt_set_cup();
            /* Fall through.  */
        case ARM_IWMMXT_wCSSF:
1506 1507
            tmp = iwmmxt_load_creg(wrd);
            tmp2 = load_reg(s, rd);
1508
            tcg_gen_andc_i32(tmp, tmp, tmp2);
1509
            tcg_temp_free_i32(tmp2);
1510
            iwmmxt_store_creg(wrd, tmp);
1511 1512 1513 1514 1515 1516
            break;
        case ARM_IWMMXT_wCGR0:
        case ARM_IWMMXT_wCGR1:
        case ARM_IWMMXT_wCGR2:
        case ARM_IWMMXT_wCGR3:
            gen_op_iwmmxt_set_cup();
1517 1518
            tmp = load_reg(s, rd);
            iwmmxt_store_creg(wrd, tmp);
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
            break;
        default:
            return 1;
        }
        break;
    case 0x100:						/* WXOR */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 0) & 0xf;
        rd1 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        gen_op_iwmmxt_xorq_M0_wRn(rd1);
        gen_op_iwmmxt_setpsr_nz();
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x111:						/* TMRC */
        if (insn & 0xf)
            return 1;
        rd = (insn >> 12) & 0xf;
        wrd = (insn >> 16) & 0xf;
1540 1541
        tmp = iwmmxt_load_creg(wrd);
        store_reg(s, rd, tmp);
1542 1543 1544 1545 1546 1547
        break;
    case 0x300:						/* WANDN */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 0) & 0xf;
        rd1 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
P
pbrook 已提交
1548
        tcg_gen_neg_i64(cpu_M0, cpu_M0);
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
        gen_op_iwmmxt_andq_M0_wRn(rd1);
        gen_op_iwmmxt_setpsr_nz();
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x200:						/* WAND */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 0) & 0xf;
        rd1 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        gen_op_iwmmxt_andq_M0_wRn(rd1);
        gen_op_iwmmxt_setpsr_nz();
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x810: case 0xa10:				/* WMADD */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 0) & 0xf;
        rd1 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        if (insn & (1 << 21))
            gen_op_iwmmxt_maddsq_M0_wRn(rd1);
        else
            gen_op_iwmmxt_madduq_M0_wRn(rd1);
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x10e: case 0x50e: case 0x90e: case 0xd0e:	/* WUNPCKIL */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            gen_op_iwmmxt_unpacklb_M0_wRn(rd1);
            break;
        case 1:
            gen_op_iwmmxt_unpacklw_M0_wRn(rd1);
            break;
        case 2:
            gen_op_iwmmxt_unpackll_M0_wRn(rd1);
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x10c: case 0x50c: case 0x90c: case 0xd0c:	/* WUNPCKIH */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            gen_op_iwmmxt_unpackhb_M0_wRn(rd1);
            break;
        case 1:
            gen_op_iwmmxt_unpackhw_M0_wRn(rd1);
            break;
        case 2:
            gen_op_iwmmxt_unpackhl_M0_wRn(rd1);
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x012: case 0x112: case 0x412: case 0x512:	/* WSAD */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        if (insn & (1 << 22))
            gen_op_iwmmxt_sadw_M0_wRn(rd1);
        else
            gen_op_iwmmxt_sadb_M0_wRn(rd1);
        if (!(insn & (1 << 20)))
            gen_op_iwmmxt_addl_M0_wRn(wrd);
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x010: case 0x110: case 0x210: case 0x310:	/* WMUL */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
P
pbrook 已提交
1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651
        if (insn & (1 << 21)) {
            if (insn & (1 << 20))
                gen_op_iwmmxt_mulshw_M0_wRn(rd1);
            else
                gen_op_iwmmxt_mulslw_M0_wRn(rd1);
        } else {
            if (insn & (1 << 20))
                gen_op_iwmmxt_muluhw_M0_wRn(rd1);
            else
                gen_op_iwmmxt_mululw_M0_wRn(rd1);
        }
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x410: case 0x510: case 0x610: case 0x710:	/* WMAC */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        if (insn & (1 << 21))
            gen_op_iwmmxt_macsw_M0_wRn(rd1);
        else
            gen_op_iwmmxt_macuw_M0_wRn(rd1);
        if (!(insn & (1 << 20))) {
P
pbrook 已提交
1665 1666
            iwmmxt_load_reg(cpu_V1, wrd);
            tcg_gen_add_i64(cpu_M0, cpu_M0, cpu_V1);
1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x006: case 0x406: case 0x806: case 0xc06:	/* WCMPEQ */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            gen_op_iwmmxt_cmpeqb_M0_wRn(rd1);
            break;
        case 1:
            gen_op_iwmmxt_cmpeqw_M0_wRn(rd1);
            break;
        case 2:
            gen_op_iwmmxt_cmpeql_M0_wRn(rd1);
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x800: case 0x900: case 0xc00: case 0xd00:	/* WAVG2 */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
P
pbrook 已提交
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
        if (insn & (1 << 22)) {
            if (insn & (1 << 20))
                gen_op_iwmmxt_avgw1_M0_wRn(rd1);
            else
                gen_op_iwmmxt_avgw0_M0_wRn(rd1);
        } else {
            if (insn & (1 << 20))
                gen_op_iwmmxt_avgb1_M0_wRn(rd1);
            else
                gen_op_iwmmxt_avgb0_M0_wRn(rd1);
        }
1709 1710 1711 1712 1713 1714 1715 1716 1717
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x802: case 0x902: case 0xa02: case 0xb02:	/* WALIGNR */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
1718 1719 1720 1721
        tmp = iwmmxt_load_creg(ARM_IWMMXT_wCGR0 + ((insn >> 20) & 3));
        tcg_gen_andi_i32(tmp, tmp, 7);
        iwmmxt_load_reg(cpu_V1, rd1);
        gen_helper_iwmmxt_align(cpu_M0, cpu_M0, cpu_V1, tmp);
1722
        tcg_temp_free_i32(tmp);
1723 1724 1725 1726
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x601: case 0x605: case 0x609: case 0x60d:	/* TINSR */
1727 1728
        if (((insn >> 6) & 3) == 3)
            return 1;
1729 1730
        rd = (insn >> 12) & 0xf;
        wrd = (insn >> 16) & 0xf;
1731
        tmp = load_reg(s, rd);
1732 1733 1734
        gen_op_iwmmxt_movq_M0_wRn(wrd);
        switch ((insn >> 6) & 3) {
        case 0:
1735 1736
            tmp2 = tcg_const_i32(0xff);
            tmp3 = tcg_const_i32((insn & 7) << 3);
1737 1738
            break;
        case 1:
1739 1740
            tmp2 = tcg_const_i32(0xffff);
            tmp3 = tcg_const_i32((insn & 3) << 4);
1741 1742
            break;
        case 2:
1743 1744
            tmp2 = tcg_const_i32(0xffffffff);
            tmp3 = tcg_const_i32((insn & 1) << 5);
1745
            break;
1746
        default:
1747 1748
            TCGV_UNUSED_I32(tmp2);
            TCGV_UNUSED_I32(tmp3);
1749
        }
1750
        gen_helper_iwmmxt_insr(cpu_M0, cpu_M0, tmp, tmp2, tmp3);
1751 1752
        tcg_temp_free_i32(tmp3);
        tcg_temp_free_i32(tmp2);
1753
        tcg_temp_free_i32(tmp);
1754 1755 1756 1757 1758 1759
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x107: case 0x507: case 0x907: case 0xd07:	/* TEXTRM */
        rd = (insn >> 12) & 0xf;
        wrd = (insn >> 16) & 0xf;
1760
        if (rd == 15 || ((insn >> 22) & 3) == 3)
1761 1762
            return 1;
        gen_op_iwmmxt_movq_M0_wRn(wrd);
1763
        tmp = tcg_temp_new_i32();
1764 1765
        switch ((insn >> 22) & 3) {
        case 0:
1766 1767 1768 1769 1770 1771
            tcg_gen_shri_i64(cpu_M0, cpu_M0, (insn & 7) << 3);
            tcg_gen_trunc_i64_i32(tmp, cpu_M0);
            if (insn & 8) {
                tcg_gen_ext8s_i32(tmp, tmp);
            } else {
                tcg_gen_andi_i32(tmp, tmp, 0xff);
1772 1773 1774
            }
            break;
        case 1:
1775 1776 1777 1778 1779 1780
            tcg_gen_shri_i64(cpu_M0, cpu_M0, (insn & 3) << 4);
            tcg_gen_trunc_i64_i32(tmp, cpu_M0);
            if (insn & 8) {
                tcg_gen_ext16s_i32(tmp, tmp);
            } else {
                tcg_gen_andi_i32(tmp, tmp, 0xffff);
1781 1782 1783
            }
            break;
        case 2:
1784 1785
            tcg_gen_shri_i64(cpu_M0, cpu_M0, (insn & 1) << 5);
            tcg_gen_trunc_i64_i32(tmp, cpu_M0);
1786 1787
            break;
        }
1788
        store_reg(s, rd, tmp);
1789 1790
        break;
    case 0x117: case 0x517: case 0x917: case 0xd17:	/* TEXTRC */
1791
        if ((insn & 0x000ff008) != 0x0003f000 || ((insn >> 22) & 3) == 3)
1792
            return 1;
1793
        tmp = iwmmxt_load_creg(ARM_IWMMXT_wCASF);
1794 1795
        switch ((insn >> 22) & 3) {
        case 0:
1796
            tcg_gen_shri_i32(tmp, tmp, ((insn & 7) << 2) + 0);
1797 1798
            break;
        case 1:
1799
            tcg_gen_shri_i32(tmp, tmp, ((insn & 3) << 3) + 4);
1800 1801
            break;
        case 2:
1802
            tcg_gen_shri_i32(tmp, tmp, ((insn & 1) << 4) + 12);
1803 1804
            break;
        }
1805 1806
        tcg_gen_shli_i32(tmp, tmp, 28);
        gen_set_nzcv(tmp);
1807
        tcg_temp_free_i32(tmp);
1808 1809
        break;
    case 0x401: case 0x405: case 0x409: case 0x40d:	/* TBCST */
1810 1811
        if (((insn >> 6) & 3) == 3)
            return 1;
1812 1813
        rd = (insn >> 12) & 0xf;
        wrd = (insn >> 16) & 0xf;
1814
        tmp = load_reg(s, rd);
1815 1816
        switch ((insn >> 6) & 3) {
        case 0:
1817
            gen_helper_iwmmxt_bcstb(cpu_M0, tmp);
1818 1819
            break;
        case 1:
1820
            gen_helper_iwmmxt_bcstw(cpu_M0, tmp);
1821 1822
            break;
        case 2:
1823
            gen_helper_iwmmxt_bcstl(cpu_M0, tmp);
1824 1825
            break;
        }
1826
        tcg_temp_free_i32(tmp);
1827 1828 1829 1830
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x113: case 0x513: case 0x913: case 0xd13:	/* TANDC */
1831
        if ((insn & 0x000ff00f) != 0x0003f000 || ((insn >> 22) & 3) == 3)
1832
            return 1;
1833
        tmp = iwmmxt_load_creg(ARM_IWMMXT_wCASF);
1834
        tmp2 = tcg_temp_new_i32();
1835
        tcg_gen_mov_i32(tmp2, tmp);
1836 1837 1838
        switch ((insn >> 22) & 3) {
        case 0:
            for (i = 0; i < 7; i ++) {
1839 1840
                tcg_gen_shli_i32(tmp2, tmp2, 4);
                tcg_gen_and_i32(tmp, tmp, tmp2);
1841 1842 1843 1844
            }
            break;
        case 1:
            for (i = 0; i < 3; i ++) {
1845 1846
                tcg_gen_shli_i32(tmp2, tmp2, 8);
                tcg_gen_and_i32(tmp, tmp, tmp2);
1847 1848 1849
            }
            break;
        case 2:
1850 1851
            tcg_gen_shli_i32(tmp2, tmp2, 16);
            tcg_gen_and_i32(tmp, tmp, tmp2);
1852 1853
            break;
        }
1854
        gen_set_nzcv(tmp);
1855 1856
        tcg_temp_free_i32(tmp2);
        tcg_temp_free_i32(tmp);
1857 1858 1859 1860 1861 1862 1863
        break;
    case 0x01c: case 0x41c: case 0x81c: case 0xc1c:	/* WACC */
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
P
pbrook 已提交
1864
            gen_helper_iwmmxt_addcb(cpu_M0, cpu_M0);
1865 1866
            break;
        case 1:
P
pbrook 已提交
1867
            gen_helper_iwmmxt_addcw(cpu_M0, cpu_M0);
1868 1869
            break;
        case 2:
P
pbrook 已提交
1870
            gen_helper_iwmmxt_addcl(cpu_M0, cpu_M0);
1871 1872 1873 1874 1875 1876 1877 1878
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x115: case 0x515: case 0x915: case 0xd15:	/* TORC */
1879
        if ((insn & 0x000ff00f) != 0x0003f000 || ((insn >> 22) & 3) == 3)
1880
            return 1;
1881
        tmp = iwmmxt_load_creg(ARM_IWMMXT_wCASF);
1882
        tmp2 = tcg_temp_new_i32();
1883
        tcg_gen_mov_i32(tmp2, tmp);
1884 1885 1886
        switch ((insn >> 22) & 3) {
        case 0:
            for (i = 0; i < 7; i ++) {
1887 1888
                tcg_gen_shli_i32(tmp2, tmp2, 4);
                tcg_gen_or_i32(tmp, tmp, tmp2);
1889 1890 1891 1892
            }
            break;
        case 1:
            for (i = 0; i < 3; i ++) {
1893 1894
                tcg_gen_shli_i32(tmp2, tmp2, 8);
                tcg_gen_or_i32(tmp, tmp, tmp2);
1895 1896 1897
            }
            break;
        case 2:
1898 1899
            tcg_gen_shli_i32(tmp2, tmp2, 16);
            tcg_gen_or_i32(tmp, tmp, tmp2);
1900 1901
            break;
        }
1902
        gen_set_nzcv(tmp);
1903 1904
        tcg_temp_free_i32(tmp2);
        tcg_temp_free_i32(tmp);
1905 1906 1907 1908
        break;
    case 0x103: case 0x503: case 0x903: case 0xd03:	/* TMOVMSK */
        rd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
1909
        if ((insn & 0xf) != 0 || ((insn >> 22) & 3) == 3)
1910 1911
            return 1;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
1912
        tmp = tcg_temp_new_i32();
1913 1914
        switch ((insn >> 22) & 3) {
        case 0:
1915
            gen_helper_iwmmxt_msbb(tmp, cpu_M0);
1916 1917
            break;
        case 1:
1918
            gen_helper_iwmmxt_msbw(tmp, cpu_M0);
1919 1920
            break;
        case 2:
1921
            gen_helper_iwmmxt_msbl(tmp, cpu_M0);
1922 1923
            break;
        }
1924
        store_reg(s, rd, tmp);
1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
        break;
    case 0x106: case 0x306: case 0x506: case 0x706:	/* WCMPGT */
    case 0x906: case 0xb06: case 0xd06: case 0xf06:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            if (insn & (1 << 21))
                gen_op_iwmmxt_cmpgtsb_M0_wRn(rd1);
            else
                gen_op_iwmmxt_cmpgtub_M0_wRn(rd1);
            break;
        case 1:
            if (insn & (1 << 21))
                gen_op_iwmmxt_cmpgtsw_M0_wRn(rd1);
            else
                gen_op_iwmmxt_cmpgtuw_M0_wRn(rd1);
            break;
        case 2:
            if (insn & (1 << 21))
                gen_op_iwmmxt_cmpgtsl_M0_wRn(rd1);
            else
                gen_op_iwmmxt_cmpgtul_M0_wRn(rd1);
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x00e: case 0x20e: case 0x40e: case 0x60e:	/* WUNPCKEL */
    case 0x80e: case 0xa0e: case 0xc0e: case 0xe0e:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            if (insn & (1 << 21))
                gen_op_iwmmxt_unpacklsb_M0();
            else
                gen_op_iwmmxt_unpacklub_M0();
            break;
        case 1:
            if (insn & (1 << 21))
                gen_op_iwmmxt_unpacklsw_M0();
            else
                gen_op_iwmmxt_unpackluw_M0();
            break;
        case 2:
            if (insn & (1 << 21))
                gen_op_iwmmxt_unpacklsl_M0();
            else
                gen_op_iwmmxt_unpacklul_M0();
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x00c: case 0x20c: case 0x40c: case 0x60c:	/* WUNPCKEH */
    case 0x80c: case 0xa0c: case 0xc0c: case 0xe0c:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            if (insn & (1 << 21))
                gen_op_iwmmxt_unpackhsb_M0();
            else
                gen_op_iwmmxt_unpackhub_M0();
            break;
        case 1:
            if (insn & (1 << 21))
                gen_op_iwmmxt_unpackhsw_M0();
            else
                gen_op_iwmmxt_unpackhuw_M0();
            break;
        case 2:
            if (insn & (1 << 21))
                gen_op_iwmmxt_unpackhsl_M0();
            else
                gen_op_iwmmxt_unpackhul_M0();
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x204: case 0x604: case 0xa04: case 0xe04:	/* WSRL */
    case 0x214: case 0x614: case 0xa14: case 0xe14:
2022 2023
        if (((insn >> 22) & 3) == 0)
            return 1;
2024 2025 2026
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
2027
        tmp = tcg_temp_new_i32();
2028
        if (gen_iwmmxt_shift(insn, 0xff, tmp)) {
2029
            tcg_temp_free_i32(tmp);
2030
            return 1;
2031
        }
2032 2033
        switch ((insn >> 22) & 3) {
        case 1:
2034
            gen_helper_iwmmxt_srlw(cpu_M0, cpu_env, cpu_M0, tmp);
2035 2036
            break;
        case 2:
2037
            gen_helper_iwmmxt_srll(cpu_M0, cpu_env, cpu_M0, tmp);
2038 2039
            break;
        case 3:
2040
            gen_helper_iwmmxt_srlq(cpu_M0, cpu_env, cpu_M0, tmp);
2041 2042
            break;
        }
2043
        tcg_temp_free_i32(tmp);
2044 2045 2046 2047 2048 2049
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x004: case 0x404: case 0x804: case 0xc04:	/* WSRA */
    case 0x014: case 0x414: case 0x814: case 0xc14:
2050 2051
        if (((insn >> 22) & 3) == 0)
            return 1;
2052 2053 2054
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
2055
        tmp = tcg_temp_new_i32();
2056
        if (gen_iwmmxt_shift(insn, 0xff, tmp)) {
2057
            tcg_temp_free_i32(tmp);
2058
            return 1;
2059
        }
2060 2061
        switch ((insn >> 22) & 3) {
        case 1:
2062
            gen_helper_iwmmxt_sraw(cpu_M0, cpu_env, cpu_M0, tmp);
2063 2064
            break;
        case 2:
2065
            gen_helper_iwmmxt_sral(cpu_M0, cpu_env, cpu_M0, tmp);
2066 2067
            break;
        case 3:
2068
            gen_helper_iwmmxt_sraq(cpu_M0, cpu_env, cpu_M0, tmp);
2069 2070
            break;
        }
2071
        tcg_temp_free_i32(tmp);
2072 2073 2074 2075 2076 2077
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x104: case 0x504: case 0x904: case 0xd04:	/* WSLL */
    case 0x114: case 0x514: case 0x914: case 0xd14:
2078 2079
        if (((insn >> 22) & 3) == 0)
            return 1;
2080 2081 2082
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
2083
        tmp = tcg_temp_new_i32();
2084
        if (gen_iwmmxt_shift(insn, 0xff, tmp)) {
2085
            tcg_temp_free_i32(tmp);
2086
            return 1;
2087
        }
2088 2089
        switch ((insn >> 22) & 3) {
        case 1:
2090
            gen_helper_iwmmxt_sllw(cpu_M0, cpu_env, cpu_M0, tmp);
2091 2092
            break;
        case 2:
2093
            gen_helper_iwmmxt_slll(cpu_M0, cpu_env, cpu_M0, tmp);
2094 2095
            break;
        case 3:
2096
            gen_helper_iwmmxt_sllq(cpu_M0, cpu_env, cpu_M0, tmp);
2097 2098
            break;
        }
2099
        tcg_temp_free_i32(tmp);
2100 2101 2102 2103 2104 2105
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x304: case 0x704: case 0xb04: case 0xf04:	/* WROR */
    case 0x314: case 0x714: case 0xb14: case 0xf14:
2106 2107
        if (((insn >> 22) & 3) == 0)
            return 1;
2108 2109 2110
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
2111
        tmp = tcg_temp_new_i32();
2112 2113
        switch ((insn >> 22) & 3) {
        case 1:
2114
            if (gen_iwmmxt_shift(insn, 0xf, tmp)) {
2115
                tcg_temp_free_i32(tmp);
2116
                return 1;
2117
            }
2118
            gen_helper_iwmmxt_rorw(cpu_M0, cpu_env, cpu_M0, tmp);
2119 2120
            break;
        case 2:
2121
            if (gen_iwmmxt_shift(insn, 0x1f, tmp)) {
2122
                tcg_temp_free_i32(tmp);
2123
                return 1;
2124
            }
2125
            gen_helper_iwmmxt_rorl(cpu_M0, cpu_env, cpu_M0, tmp);
2126 2127
            break;
        case 3:
2128
            if (gen_iwmmxt_shift(insn, 0x3f, tmp)) {
2129
                tcg_temp_free_i32(tmp);
2130
                return 1;
2131
            }
2132
            gen_helper_iwmmxt_rorq(cpu_M0, cpu_env, cpu_M0, tmp);
2133 2134
            break;
        }
2135
        tcg_temp_free_i32(tmp);
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x116: case 0x316: case 0x516: case 0x716:	/* WMIN */
    case 0x916: case 0xb16: case 0xd16: case 0xf16:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            if (insn & (1 << 21))
                gen_op_iwmmxt_minsb_M0_wRn(rd1);
            else
                gen_op_iwmmxt_minub_M0_wRn(rd1);
            break;
        case 1:
            if (insn & (1 << 21))
                gen_op_iwmmxt_minsw_M0_wRn(rd1);
            else
                gen_op_iwmmxt_minuw_M0_wRn(rd1);
            break;
        case 2:
            if (insn & (1 << 21))
                gen_op_iwmmxt_minsl_M0_wRn(rd1);
            else
                gen_op_iwmmxt_minul_M0_wRn(rd1);
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x016: case 0x216: case 0x416: case 0x616:	/* WMAX */
    case 0x816: case 0xa16: case 0xc16: case 0xe16:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 0:
            if (insn & (1 << 21))
                gen_op_iwmmxt_maxsb_M0_wRn(rd1);
            else
                gen_op_iwmmxt_maxub_M0_wRn(rd1);
            break;
        case 1:
            if (insn & (1 << 21))
                gen_op_iwmmxt_maxsw_M0_wRn(rd1);
            else
                gen_op_iwmmxt_maxuw_M0_wRn(rd1);
            break;
        case 2:
            if (insn & (1 << 21))
                gen_op_iwmmxt_maxsl_M0_wRn(rd1);
            else
                gen_op_iwmmxt_maxul_M0_wRn(rd1);
            break;
        case 3:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x002: case 0x102: case 0x202: case 0x302:	/* WALIGNI */
    case 0x402: case 0x502: case 0x602: case 0x702:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
2208 2209 2210
        tmp = tcg_const_i32((insn >> 20) & 3);
        iwmmxt_load_reg(cpu_V1, rd1);
        gen_helper_iwmmxt_align(cpu_M0, cpu_M0, cpu_V1, tmp);
2211
        tcg_temp_free_i32(tmp);
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    case 0x01a: case 0x11a: case 0x21a: case 0x31a:	/* WSUB */
    case 0x41a: case 0x51a: case 0x61a: case 0x71a:
    case 0x81a: case 0x91a: case 0xa1a: case 0xb1a:
    case 0xc1a: case 0xd1a: case 0xe1a: case 0xf1a:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 20) & 0xf) {
        case 0x0:
            gen_op_iwmmxt_subnb_M0_wRn(rd1);
            break;
        case 0x1:
            gen_op_iwmmxt_subub_M0_wRn(rd1);
            break;
        case 0x3:
            gen_op_iwmmxt_subsb_M0_wRn(rd1);
            break;
        case 0x4:
            gen_op_iwmmxt_subnw_M0_wRn(rd1);
            break;
        case 0x5:
            gen_op_iwmmxt_subuw_M0_wRn(rd1);
            break;
        case 0x7:
            gen_op_iwmmxt_subsw_M0_wRn(rd1);
            break;
        case 0x8:
            gen_op_iwmmxt_subnl_M0_wRn(rd1);
            break;
        case 0x9:
            gen_op_iwmmxt_subul_M0_wRn(rd1);
            break;
        case 0xb:
            gen_op_iwmmxt_subsl_M0_wRn(rd1);
            break;
        default:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x01e: case 0x11e: case 0x21e: case 0x31e:	/* WSHUFH */
    case 0x41e: case 0x51e: case 0x61e: case 0x71e:
    case 0x81e: case 0x91e: case 0xa1e: case 0xb1e:
    case 0xc1e: case 0xd1e: case 0xe1e: case 0xf1e:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
2265
        tmp = tcg_const_i32(((insn >> 16) & 0xf0) | (insn & 0x0f));
2266
        gen_helper_iwmmxt_shufh(cpu_M0, cpu_env, cpu_M0, tmp);
2267
        tcg_temp_free_i32(tmp);
2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x018: case 0x118: case 0x218: case 0x318:	/* WADD */
    case 0x418: case 0x518: case 0x618: case 0x718:
    case 0x818: case 0x918: case 0xa18: case 0xb18:
    case 0xc18: case 0xd18: case 0xe18: case 0xf18:
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 20) & 0xf) {
        case 0x0:
            gen_op_iwmmxt_addnb_M0_wRn(rd1);
            break;
        case 0x1:
            gen_op_iwmmxt_addub_M0_wRn(rd1);
            break;
        case 0x3:
            gen_op_iwmmxt_addsb_M0_wRn(rd1);
            break;
        case 0x4:
            gen_op_iwmmxt_addnw_M0_wRn(rd1);
            break;
        case 0x5:
            gen_op_iwmmxt_adduw_M0_wRn(rd1);
            break;
        case 0x7:
            gen_op_iwmmxt_addsw_M0_wRn(rd1);
            break;
        case 0x8:
            gen_op_iwmmxt_addnl_M0_wRn(rd1);
            break;
        case 0x9:
            gen_op_iwmmxt_addul_M0_wRn(rd1);
            break;
        case 0xb:
            gen_op_iwmmxt_addsl_M0_wRn(rd1);
            break;
        default:
            return 1;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x008: case 0x108: case 0x208: case 0x308:	/* WPACK */
    case 0x408: case 0x508: case 0x608: case 0x708:
    case 0x808: case 0x908: case 0xa08: case 0xb08:
    case 0xc08: case 0xd08: case 0xe08: case 0xf08:
2319 2320
        if (!(insn & (1 << 20)) || ((insn >> 22) & 3) == 0)
            return 1;
2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358
        wrd = (insn >> 12) & 0xf;
        rd0 = (insn >> 16) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        gen_op_iwmmxt_movq_M0_wRn(rd0);
        switch ((insn >> 22) & 3) {
        case 1:
            if (insn & (1 << 21))
                gen_op_iwmmxt_packsw_M0_wRn(rd1);
            else
                gen_op_iwmmxt_packuw_M0_wRn(rd1);
            break;
        case 2:
            if (insn & (1 << 21))
                gen_op_iwmmxt_packsl_M0_wRn(rd1);
            else
                gen_op_iwmmxt_packul_M0_wRn(rd1);
            break;
        case 3:
            if (insn & (1 << 21))
                gen_op_iwmmxt_packsq_M0_wRn(rd1);
            else
                gen_op_iwmmxt_packuq_M0_wRn(rd1);
            break;
        }
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        gen_op_iwmmxt_set_cup();
        break;
    case 0x201: case 0x203: case 0x205: case 0x207:
    case 0x209: case 0x20b: case 0x20d: case 0x20f:
    case 0x211: case 0x213: case 0x215: case 0x217:
    case 0x219: case 0x21b: case 0x21d: case 0x21f:
        wrd = (insn >> 5) & 0xf;
        rd0 = (insn >> 12) & 0xf;
        rd1 = (insn >> 0) & 0xf;
        if (rd0 == 0xf || rd1 == 0xf)
            return 1;
        gen_op_iwmmxt_movq_M0_wRn(wrd);
2359 2360
        tmp = load_reg(s, rd0);
        tmp2 = load_reg(s, rd1);
2361 2362
        switch ((insn >> 16) & 0xf) {
        case 0x0:					/* TMIA */
2363
            gen_helper_iwmmxt_muladdsl(cpu_M0, cpu_M0, tmp, tmp2);
2364 2365
            break;
        case 0x8:					/* TMIAPH */
2366
            gen_helper_iwmmxt_muladdsw(cpu_M0, cpu_M0, tmp, tmp2);
2367 2368 2369
            break;
        case 0xc: case 0xd: case 0xe: case 0xf:		/* TMIAxy */
            if (insn & (1 << 16))
2370
                tcg_gen_shri_i32(tmp, tmp, 16);
2371
            if (insn & (1 << 17))
2372 2373
                tcg_gen_shri_i32(tmp2, tmp2, 16);
            gen_helper_iwmmxt_muladdswl(cpu_M0, cpu_M0, tmp, tmp2);
2374 2375
            break;
        default:
2376 2377
            tcg_temp_free_i32(tmp2);
            tcg_temp_free_i32(tmp);
2378 2379
            return 1;
        }
2380 2381
        tcg_temp_free_i32(tmp2);
        tcg_temp_free_i32(tmp);
2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
        gen_op_iwmmxt_movq_wRn_M0(wrd);
        gen_op_iwmmxt_set_mup();
        break;
    default:
        return 1;
    }

    return 0;
}

2392
/* Disassemble an XScale DSP instruction.  Returns nonzero if an error occurred
2393
   (ie. an undefined instruction).  */
2394
static int disas_dsp_insn(CPUARMState *env, DisasContext *s, uint32_t insn)
2395 2396
{
    int acc, rd0, rd1, rdhi, rdlo;
2397
    TCGv_i32 tmp, tmp2;
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407

    if ((insn & 0x0ff00f10) == 0x0e200010) {
        /* Multiply with Internal Accumulate Format */
        rd0 = (insn >> 12) & 0xf;
        rd1 = insn & 0xf;
        acc = (insn >> 5) & 7;

        if (acc != 0)
            return 1;

2408 2409
        tmp = load_reg(s, rd0);
        tmp2 = load_reg(s, rd1);
2410 2411
        switch ((insn >> 16) & 0xf) {
        case 0x0:					/* MIA */
2412
            gen_helper_iwmmxt_muladdsl(cpu_M0, cpu_M0, tmp, tmp2);
2413 2414
            break;
        case 0x8:					/* MIAPH */
2415
            gen_helper_iwmmxt_muladdsw(cpu_M0, cpu_M0, tmp, tmp2);
2416 2417 2418 2419 2420 2421
            break;
        case 0xc:					/* MIABB */
        case 0xd:					/* MIABT */
        case 0xe:					/* MIATB */
        case 0xf:					/* MIATT */
            if (insn & (1 << 16))
2422
                tcg_gen_shri_i32(tmp, tmp, 16);
2423
            if (insn & (1 << 17))
2424 2425
                tcg_gen_shri_i32(tmp2, tmp2, 16);
            gen_helper_iwmmxt_muladdswl(cpu_M0, cpu_M0, tmp, tmp2);
2426 2427 2428 2429
            break;
        default:
            return 1;
        }
2430 2431
        tcg_temp_free_i32(tmp2);
        tcg_temp_free_i32(tmp);
2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446

        gen_op_iwmmxt_movq_wRn_M0(acc);
        return 0;
    }

    if ((insn & 0x0fe00ff8) == 0x0c400000) {
        /* Internal Accumulator Access Format */
        rdhi = (insn >> 16) & 0xf;
        rdlo = (insn >> 12) & 0xf;
        acc = insn & 7;

        if (acc != 0)
            return 1;

        if (insn & ARM_CP_RW_BIT) {			/* MRA */
2447 2448 2449 2450 2451
            iwmmxt_load_reg(cpu_V0, acc);
            tcg_gen_trunc_i64_i32(cpu_R[rdlo], cpu_V0);
            tcg_gen_shri_i64(cpu_V0, cpu_V0, 32);
            tcg_gen_trunc_i64_i32(cpu_R[rdhi], cpu_V0);
            tcg_gen_andi_i32(cpu_R[rdhi], cpu_R[rdhi], (1 << (40 - 32)) - 1);
2452
        } else {					/* MAR */
2453 2454
            tcg_gen_concat_i32_i64(cpu_V0, cpu_R[rdlo], cpu_R[rdhi]);
            iwmmxt_store_reg(cpu_V0, acc);
2455 2456 2457 2458 2459 2460 2461
        }
        return 0;
    }

    return 1;
}

P
pbrook 已提交
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481
#define VFP_REG_SHR(x, n) (((n) > 0) ? (x) >> (n) : (x) << -(n))
#define VFP_SREG(insn, bigbit, smallbit) \
  ((VFP_REG_SHR(insn, bigbit - 1) & 0x1e) | (((insn) >> (smallbit)) & 1))
#define VFP_DREG(reg, insn, bigbit, smallbit) do { \
    if (arm_feature(env, ARM_FEATURE_VFP3)) { \
        reg = (((insn) >> (bigbit)) & 0x0f) \
              | (((insn) >> ((smallbit) - 4)) & 0x10); \
    } else { \
        if (insn & (1 << (smallbit))) \
            return 1; \
        reg = ((insn) >> (bigbit)) & 0x0f; \
    }} while (0)

#define VFP_SREG_D(insn) VFP_SREG(insn, 12, 22)
#define VFP_DREG_D(reg, insn) VFP_DREG(reg, insn, 12, 22)
#define VFP_SREG_N(insn) VFP_SREG(insn, 16,  7)
#define VFP_DREG_N(reg, insn) VFP_DREG(reg, insn, 16,  7)
#define VFP_SREG_M(insn) VFP_SREG(insn,  0,  5)
#define VFP_DREG_M(reg, insn) VFP_DREG(reg, insn,  0,  5)

P
pbrook 已提交
2482
/* Move between integer and VFP cores.  */
2483
static TCGv_i32 gen_vfp_mrs(void)
P
pbrook 已提交
2484
{
2485
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
2486 2487 2488 2489
    tcg_gen_mov_i32(tmp, cpu_F0s);
    return tmp;
}

2490
static void gen_vfp_msr(TCGv_i32 tmp)
P
pbrook 已提交
2491 2492
{
    tcg_gen_mov_i32(cpu_F0s, tmp);
2493
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
2494 2495
}

2496
static void gen_neon_dup_u8(TCGv_i32 var, int shift)
P
pbrook 已提交
2497
{
2498
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
2499 2500
    if (shift)
        tcg_gen_shri_i32(var, var, shift);
P
pbrook 已提交
2501
    tcg_gen_ext8u_i32(var, var);
P
pbrook 已提交
2502 2503 2504 2505
    tcg_gen_shli_i32(tmp, var, 8);
    tcg_gen_or_i32(var, var, tmp);
    tcg_gen_shli_i32(tmp, var, 16);
    tcg_gen_or_i32(var, var, tmp);
2506
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
2507 2508
}

2509
static void gen_neon_dup_low16(TCGv_i32 var)
P
pbrook 已提交
2510
{
2511
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
2512
    tcg_gen_ext16u_i32(var, var);
P
pbrook 已提交
2513 2514
    tcg_gen_shli_i32(tmp, var, 16);
    tcg_gen_or_i32(var, var, tmp);
2515
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
2516 2517
}

2518
static void gen_neon_dup_high16(TCGv_i32 var)
P
pbrook 已提交
2519
{
2520
    TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
2521 2522 2523
    tcg_gen_andi_i32(var, var, 0xffff0000);
    tcg_gen_shri_i32(tmp, var, 16);
    tcg_gen_or_i32(var, var, tmp);
2524
    tcg_temp_free_i32(tmp);
P
pbrook 已提交
2525 2526
}

2527
static TCGv_i32 gen_load_and_replicate(DisasContext *s, TCGv_i32 addr, int size)
2528 2529
{
    /* Load a single Neon element and replicate into a 32 bit TCG reg */
2530
    TCGv_i32 tmp = tcg_temp_new_i32();
2531 2532
    switch (size) {
    case 0:
2533
        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
2534 2535 2536
        gen_neon_dup_u8(tmp, 0);
        break;
    case 1:
2537
        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
2538 2539 2540
        gen_neon_dup_low16(tmp);
        break;
    case 2:
2541
        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
2542 2543 2544 2545 2546 2547 2548
        break;
    default: /* Avoid compiler warnings.  */
        abort();
    }
    return tmp;
}

2549
/* Disassemble a VFP instruction.  Returns nonzero if an error occurred
B
bellard 已提交
2550
   (ie. an undefined instruction).  */
2551
static int disas_vfp_insn(CPUARMState * env, DisasContext *s, uint32_t insn)
B
bellard 已提交
2552 2553 2554
{
    uint32_t rd, rn, rm, op, i, n, offset, delta_d, delta_m, bank_mask;
    int dp, veclen;
2555 2556 2557
    TCGv_i32 addr;
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
B
bellard 已提交
2558

P
pbrook 已提交
2559 2560 2561
    if (!arm_feature(env, ARM_FEATURE_VFP))
        return 1;

2562
    if (!s->vfp_enabled) {
P
pbrook 已提交
2563
        /* VFP disabled.  Only allow fmxr/fmrx to/from some control regs.  */
P
pbrook 已提交
2564 2565 2566
        if ((insn & 0x0fe00fff) != 0x0ee00a10)
            return 1;
        rn = (insn >> 16) & 0xf;
P
pbrook 已提交
2567 2568
        if (rn != ARM_VFP_FPSID && rn != ARM_VFP_FPEXC
            && rn != ARM_VFP_MVFR1 && rn != ARM_VFP_MVFR0)
P
pbrook 已提交
2569 2570
            return 1;
    }
B
bellard 已提交
2571 2572 2573 2574 2575 2576 2577
    dp = ((insn & 0xf00) == 0xb00);
    switch ((insn >> 24) & 0xf) {
    case 0xe:
        if (insn & (1 << 4)) {
            /* single register transfer */
            rd = (insn >> 12) & 0xf;
            if (dp) {
P
pbrook 已提交
2578 2579 2580 2581 2582
                int size;
                int pass;

                VFP_DREG_N(rn, insn);
                if (insn & 0xf)
B
bellard 已提交
2583
                    return 1;
P
pbrook 已提交
2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598
                if (insn & 0x00c00060
                    && !arm_feature(env, ARM_FEATURE_NEON))
                    return 1;

                pass = (insn >> 21) & 1;
                if (insn & (1 << 22)) {
                    size = 0;
                    offset = ((insn >> 5) & 3) * 8;
                } else if (insn & (1 << 5)) {
                    size = 1;
                    offset = (insn & (1 << 6)) ? 16 : 0;
                } else {
                    size = 2;
                    offset = 0;
                }
2599
                if (insn & ARM_CP_RW_BIT) {
B
bellard 已提交
2600
                    /* vfp->arm */
P
pbrook 已提交
2601
                    tmp = neon_load_reg(rn, pass);
P
pbrook 已提交
2602 2603 2604
                    switch (size) {
                    case 0:
                        if (offset)
P
pbrook 已提交
2605
                            tcg_gen_shri_i32(tmp, tmp, offset);
P
pbrook 已提交
2606
                        if (insn & (1 << 23))
P
pbrook 已提交
2607
                            gen_uxtb(tmp);
P
pbrook 已提交
2608
                        else
P
pbrook 已提交
2609
                            gen_sxtb(tmp);
P
pbrook 已提交
2610 2611 2612 2613
                        break;
                    case 1:
                        if (insn & (1 << 23)) {
                            if (offset) {
P
pbrook 已提交
2614
                                tcg_gen_shri_i32(tmp, tmp, 16);
P
pbrook 已提交
2615
                            } else {
P
pbrook 已提交
2616
                                gen_uxth(tmp);
P
pbrook 已提交
2617 2618 2619
                            }
                        } else {
                            if (offset) {
P
pbrook 已提交
2620
                                tcg_gen_sari_i32(tmp, tmp, 16);
P
pbrook 已提交
2621
                            } else {
P
pbrook 已提交
2622
                                gen_sxth(tmp);
P
pbrook 已提交
2623 2624 2625 2626 2627 2628
                            }
                        }
                        break;
                    case 2:
                        break;
                    }
P
pbrook 已提交
2629
                    store_reg(s, rd, tmp);
B
bellard 已提交
2630 2631
                } else {
                    /* arm->vfp */
P
pbrook 已提交
2632
                    tmp = load_reg(s, rd);
P
pbrook 已提交
2633 2634 2635
                    if (insn & (1 << 23)) {
                        /* VDUP */
                        if (size == 0) {
P
pbrook 已提交
2636
                            gen_neon_dup_u8(tmp, 0);
P
pbrook 已提交
2637
                        } else if (size == 1) {
P
pbrook 已提交
2638
                            gen_neon_dup_low16(tmp);
P
pbrook 已提交
2639
                        }
P
pbrook 已提交
2640
                        for (n = 0; n <= pass * 2; n++) {
2641
                            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
2642 2643 2644 2645
                            tcg_gen_mov_i32(tmp2, tmp);
                            neon_store_reg(rn, n, tmp2);
                        }
                        neon_store_reg(rn, n, tmp);
P
pbrook 已提交
2646 2647 2648 2649
                    } else {
                        /* VMOV */
                        switch (size) {
                        case 0:
P
pbrook 已提交
2650
                            tmp2 = neon_load_reg(rn, pass);
2651
                            tcg_gen_deposit_i32(tmp, tmp2, tmp, offset, 8);
2652
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
2653 2654
                            break;
                        case 1:
P
pbrook 已提交
2655
                            tmp2 = neon_load_reg(rn, pass);
2656
                            tcg_gen_deposit_i32(tmp, tmp2, tmp, offset, 16);
2657
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
2658 2659 2660 2661
                            break;
                        case 2:
                            break;
                        }
P
pbrook 已提交
2662
                        neon_store_reg(rn, pass, tmp);
P
pbrook 已提交
2663
                    }
B
bellard 已提交
2664
                }
P
pbrook 已提交
2665 2666 2667 2668
            } else { /* !dp */
                if ((insn & 0x6f) != 0x00)
                    return 1;
                rn = VFP_SREG_N(insn);
2669
                if (insn & ARM_CP_RW_BIT) {
B
bellard 已提交
2670 2671 2672
                    /* vfp->arm */
                    if (insn & (1 << 21)) {
                        /* system register */
P
pbrook 已提交
2673
                        rn >>= 1;
P
pbrook 已提交
2674

B
bellard 已提交
2675
                        switch (rn) {
P
pbrook 已提交
2676
                        case ARM_VFP_FPSID:
P
pbrook 已提交
2677
                            /* VFP2 allows access to FSID from userspace.
P
pbrook 已提交
2678 2679 2680 2681 2682
                               VFP3 restricts all id registers to privileged
                               accesses.  */
                            if (IS_USER(s)
                                && arm_feature(env, ARM_FEATURE_VFP3))
                                return 1;
P
pbrook 已提交
2683
                            tmp = load_cpu_field(vfp.xregs[rn]);
P
pbrook 已提交
2684
                            break;
P
pbrook 已提交
2685
                        case ARM_VFP_FPEXC:
P
pbrook 已提交
2686 2687
                            if (IS_USER(s))
                                return 1;
P
pbrook 已提交
2688
                            tmp = load_cpu_field(vfp.xregs[rn]);
P
pbrook 已提交
2689
                            break;
P
pbrook 已提交
2690 2691
                        case ARM_VFP_FPINST:
                        case ARM_VFP_FPINST2:
P
pbrook 已提交
2692 2693 2694 2695
                            /* Not present in VFP3.  */
                            if (IS_USER(s)
                                || arm_feature(env, ARM_FEATURE_VFP3))
                                return 1;
P
pbrook 已提交
2696
                            tmp = load_cpu_field(vfp.xregs[rn]);
B
bellard 已提交
2697
                            break;
P
pbrook 已提交
2698
                        case ARM_VFP_FPSCR:
2699
                            if (rd == 15) {
P
pbrook 已提交
2700 2701 2702
                                tmp = load_cpu_field(vfp.xregs[ARM_VFP_FPSCR]);
                                tcg_gen_andi_i32(tmp, tmp, 0xf0000000);
                            } else {
2703
                                tmp = tcg_temp_new_i32();
P
pbrook 已提交
2704 2705
                                gen_helper_vfp_get_fpscr(tmp, cpu_env);
                            }
B
bellard 已提交
2706
                            break;
P
pbrook 已提交
2707 2708 2709
                        case ARM_VFP_MVFR0:
                        case ARM_VFP_MVFR1:
                            if (IS_USER(s)
2710
                                || !arm_feature(env, ARM_FEATURE_MVFR))
P
pbrook 已提交
2711
                                return 1;
P
pbrook 已提交
2712
                            tmp = load_cpu_field(vfp.xregs[rn]);
P
pbrook 已提交
2713
                            break;
B
bellard 已提交
2714 2715 2716 2717 2718
                        default:
                            return 1;
                        }
                    } else {
                        gen_mov_F0_vreg(0, rn);
P
pbrook 已提交
2719
                        tmp = gen_vfp_mrs();
B
bellard 已提交
2720 2721
                    }
                    if (rd == 15) {
B
bellard 已提交
2722
                        /* Set the 4 flag bits in the CPSR.  */
P
pbrook 已提交
2723
                        gen_set_nzcv(tmp);
2724
                        tcg_temp_free_i32(tmp);
P
pbrook 已提交
2725 2726 2727
                    } else {
                        store_reg(s, rd, tmp);
                    }
B
bellard 已提交
2728 2729 2730
                } else {
                    /* arm->vfp */
                    if (insn & (1 << 21)) {
P
pbrook 已提交
2731
                        rn >>= 1;
B
bellard 已提交
2732 2733
                        /* system register */
                        switch (rn) {
P
pbrook 已提交
2734
                        case ARM_VFP_FPSID:
P
pbrook 已提交
2735 2736
                        case ARM_VFP_MVFR0:
                        case ARM_VFP_MVFR1:
B
bellard 已提交
2737 2738
                            /* Writes are ignored.  */
                            break;
P
pbrook 已提交
2739
                        case ARM_VFP_FPSCR:
2740
                            tmp = load_reg(s, rd);
P
pbrook 已提交
2741
                            gen_helper_vfp_set_fpscr(cpu_env, tmp);
2742
                            tcg_temp_free_i32(tmp);
B
bellard 已提交
2743
                            gen_lookup_tb(s);
B
bellard 已提交
2744
                            break;
P
pbrook 已提交
2745
                        case ARM_VFP_FPEXC:
P
pbrook 已提交
2746 2747
                            if (IS_USER(s))
                                return 1;
2748 2749
                            /* TODO: VFP subarchitecture support.
                             * For now, keep the EN bit only */
2750
                            tmp = load_reg(s, rd);
2751
                            tcg_gen_andi_i32(tmp, tmp, 1 << 30);
P
pbrook 已提交
2752
                            store_cpu_field(tmp, vfp.xregs[rn]);
P
pbrook 已提交
2753 2754 2755 2756
                            gen_lookup_tb(s);
                            break;
                        case ARM_VFP_FPINST:
                        case ARM_VFP_FPINST2:
2757
                            tmp = load_reg(s, rd);
P
pbrook 已提交
2758
                            store_cpu_field(tmp, vfp.xregs[rn]);
P
pbrook 已提交
2759
                            break;
B
bellard 已提交
2760 2761 2762 2763
                        default:
                            return 1;
                        }
                    } else {
2764
                        tmp = load_reg(s, rd);
P
pbrook 已提交
2765
                        gen_vfp_msr(tmp);
B
bellard 已提交
2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779
                        gen_mov_vreg_F0(0, rn);
                    }
                }
            }
        } else {
            /* data processing */
            /* The opcode is in bits 23, 21, 20 and 6.  */
            op = ((insn >> 20) & 8) | ((insn >> 19) & 6) | ((insn >> 6) & 1);
            if (dp) {
                if (op == 15) {
                    /* rn is opcode */
                    rn = ((insn >> 15) & 0x1e) | ((insn >> 7) & 1);
                } else {
                    /* rn is register number */
P
pbrook 已提交
2780
                    VFP_DREG_N(rn, insn);
B
bellard 已提交
2781 2782
                }

2783
                if (op == 15 && (rn == 15 || ((rn & 0x1c) == 0x18))) {
B
bellard 已提交
2784
                    /* Integer or single precision destination.  */
P
pbrook 已提交
2785
                    rd = VFP_SREG_D(insn);
B
bellard 已提交
2786
                } else {
P
pbrook 已提交
2787
                    VFP_DREG_D(rd, insn);
B
bellard 已提交
2788
                }
2789 2790 2791 2792 2793 2794
                if (op == 15 &&
                    (((rn & 0x1c) == 0x10) || ((rn & 0x14) == 0x14))) {
                    /* VCVT from int is always from S reg regardless of dp bit.
                     * VCVT with immediate frac_bits has same format as SREG_M
                     */
                    rm = VFP_SREG_M(insn);
B
bellard 已提交
2795
                } else {
P
pbrook 已提交
2796
                    VFP_DREG_M(rm, insn);
B
bellard 已提交
2797 2798
                }
            } else {
P
pbrook 已提交
2799
                rn = VFP_SREG_N(insn);
B
bellard 已提交
2800 2801
                if (op == 15 && rn == 15) {
                    /* Double precision destination.  */
P
pbrook 已提交
2802 2803 2804 2805
                    VFP_DREG_D(rd, insn);
                } else {
                    rd = VFP_SREG_D(insn);
                }
2806 2807 2808
                /* NB that we implicitly rely on the encoding for the frac_bits
                 * in VCVT of fixed to float being the same as that of an SREG_M
                 */
P
pbrook 已提交
2809
                rm = VFP_SREG_M(insn);
B
bellard 已提交
2810 2811
            }

2812
            veclen = s->vec_len;
B
bellard 已提交
2813 2814 2815 2816 2817 2818 2819
            if (op == 15 && rn > 3)
                veclen = 0;

            /* Shut up compiler warnings.  */
            delta_m = 0;
            delta_d = 0;
            bank_mask = 0;
2820

B
bellard 已提交
2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832
            if (veclen > 0) {
                if (dp)
                    bank_mask = 0xc;
                else
                    bank_mask = 0x18;

                /* Figure out what type of vector operation this is.  */
                if ((rd & bank_mask) == 0) {
                    /* scalar */
                    veclen = 0;
                } else {
                    if (dp)
2833
                        delta_d = (s->vec_stride >> 1) + 1;
B
bellard 已提交
2834
                    else
2835
                        delta_d = s->vec_stride + 1;
B
bellard 已提交
2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866

                    if ((rm & bank_mask) == 0) {
                        /* mixed scalar/vector */
                        delta_m = 0;
                    } else {
                        /* vector */
                        delta_m = delta_d;
                    }
                }
            }

            /* Load the initial operands.  */
            if (op == 15) {
                switch (rn) {
                case 16:
                case 17:
                    /* Integer source */
                    gen_mov_F0_vreg(0, rm);
                    break;
                case 8:
                case 9:
                    /* Compare */
                    gen_mov_F0_vreg(dp, rd);
                    gen_mov_F1_vreg(dp, rm);
                    break;
                case 10:
                case 11:
                    /* Compare with zero */
                    gen_mov_F0_vreg(dp, rd);
                    gen_vfp_F1_ld0(dp);
                    break;
P
pbrook 已提交
2867 2868 2869 2870
                case 20:
                case 21:
                case 22:
                case 23:
P
pbrook 已提交
2871 2872 2873 2874
                case 28:
                case 29:
                case 30:
                case 31:
P
pbrook 已提交
2875 2876 2877
                    /* Source and destination the same.  */
                    gen_mov_F0_vreg(dp, rd);
                    break;
2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888
                case 4:
                case 5:
                case 6:
                case 7:
                    /* VCVTB, VCVTT: only present with the halfprec extension,
                     * UNPREDICTABLE if bit 8 is set (we choose to UNDEF)
                     */
                    if (dp || !arm_feature(env, ARM_FEATURE_VFP_FP16)) {
                        return 1;
                    }
                    /* Otherwise fall through */
B
bellard 已提交
2889 2890 2891
                default:
                    /* One source operand.  */
                    gen_mov_F0_vreg(dp, rm);
P
pbrook 已提交
2892
                    break;
B
bellard 已提交
2893 2894 2895 2896 2897 2898 2899 2900 2901 2902
                }
            } else {
                /* Two source operands.  */
                gen_mov_F0_vreg(dp, rn);
                gen_mov_F1_vreg(dp, rm);
            }

            for (;;) {
                /* Perform the calculation.  */
                switch (op) {
2903 2904 2905 2906
                case 0: /* VMLA: fd + (fn * fm) */
                    /* Note that order of inputs to the add matters for NaNs */
                    gen_vfp_F1_mul(dp);
                    gen_mov_F0_vreg(dp, rd);
B
bellard 已提交
2907 2908
                    gen_vfp_add(dp);
                    break;
2909
                case 1: /* VMLS: fd + -(fn * fm) */
B
bellard 已提交
2910
                    gen_vfp_mul(dp);
2911 2912
                    gen_vfp_F1_neg(dp);
                    gen_mov_F0_vreg(dp, rd);
B
bellard 已提交
2913 2914
                    gen_vfp_add(dp);
                    break;
2915 2916 2917 2918 2919 2920 2921 2922 2923
                case 2: /* VNMLS: -fd + (fn * fm) */
                    /* Note that it isn't valid to replace (-A + B) with (B - A)
                     * or similar plausible looking simplifications
                     * because this will give wrong results for NaNs.
                     */
                    gen_vfp_F1_mul(dp);
                    gen_mov_F0_vreg(dp, rd);
                    gen_vfp_neg(dp);
                    gen_vfp_add(dp);
B
bellard 已提交
2924
                    break;
2925
                case 3: /* VNMLA: -fd + -(fn * fm) */
B
bellard 已提交
2926
                    gen_vfp_mul(dp);
2927 2928
                    gen_vfp_F1_neg(dp);
                    gen_mov_F0_vreg(dp, rd);
B
bellard 已提交
2929
                    gen_vfp_neg(dp);
2930
                    gen_vfp_add(dp);
B
bellard 已提交
2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947
                    break;
                case 4: /* mul: fn * fm */
                    gen_vfp_mul(dp);
                    break;
                case 5: /* nmul: -(fn * fm) */
                    gen_vfp_mul(dp);
                    gen_vfp_neg(dp);
                    break;
                case 6: /* add: fn + fm */
                    gen_vfp_add(dp);
                    break;
                case 7: /* sub: fn - fm */
                    gen_vfp_sub(dp);
                    break;
                case 8: /* div: fn / fm */
                    gen_vfp_div(dp);
                    break;
2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998
                case 10: /* VFNMA : fd = muladd(-fd,  fn, fm) */
                case 11: /* VFNMS : fd = muladd(-fd, -fn, fm) */
                case 12: /* VFMA  : fd = muladd( fd,  fn, fm) */
                case 13: /* VFMS  : fd = muladd( fd, -fn, fm) */
                    /* These are fused multiply-add, and must be done as one
                     * floating point operation with no rounding between the
                     * multiplication and addition steps.
                     * NB that doing the negations here as separate steps is
                     * correct : an input NaN should come out with its sign bit
                     * flipped if it is a negated-input.
                     */
                    if (!arm_feature(env, ARM_FEATURE_VFP4)) {
                        return 1;
                    }
                    if (dp) {
                        TCGv_ptr fpst;
                        TCGv_i64 frd;
                        if (op & 1) {
                            /* VFNMS, VFMS */
                            gen_helper_vfp_negd(cpu_F0d, cpu_F0d);
                        }
                        frd = tcg_temp_new_i64();
                        tcg_gen_ld_f64(frd, cpu_env, vfp_reg_offset(dp, rd));
                        if (op & 2) {
                            /* VFNMA, VFNMS */
                            gen_helper_vfp_negd(frd, frd);
                        }
                        fpst = get_fpstatus_ptr(0);
                        gen_helper_vfp_muladdd(cpu_F0d, cpu_F0d,
                                               cpu_F1d, frd, fpst);
                        tcg_temp_free_ptr(fpst);
                        tcg_temp_free_i64(frd);
                    } else {
                        TCGv_ptr fpst;
                        TCGv_i32 frd;
                        if (op & 1) {
                            /* VFNMS, VFMS */
                            gen_helper_vfp_negs(cpu_F0s, cpu_F0s);
                        }
                        frd = tcg_temp_new_i32();
                        tcg_gen_ld_f32(frd, cpu_env, vfp_reg_offset(dp, rd));
                        if (op & 2) {
                            gen_helper_vfp_negs(frd, frd);
                        }
                        fpst = get_fpstatus_ptr(0);
                        gen_helper_vfp_muladds(cpu_F0s, cpu_F0s,
                                               cpu_F1s, frd, fpst);
                        tcg_temp_free_ptr(fpst);
                        tcg_temp_free_i32(frd);
                    }
                    break;
P
pbrook 已提交
2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010
                case 14: /* fconst */
                    if (!arm_feature(env, ARM_FEATURE_VFP3))
                      return 1;

                    n = (insn << 12) & 0x80000000;
                    i = ((insn >> 12) & 0x70) | (insn & 0xf);
                    if (dp) {
                        if (i & 0x40)
                            i |= 0x3f80;
                        else
                            i |= 0x4000;
                        n |= i << 16;
P
pbrook 已提交
3011
                        tcg_gen_movi_i64(cpu_F0d, ((uint64_t)n) << 32);
P
pbrook 已提交
3012 3013 3014 3015 3016 3017
                    } else {
                        if (i & 0x40)
                            i |= 0x780;
                        else
                            i |= 0x800;
                        n |= i << 19;
B
balrog 已提交
3018
                        tcg_gen_movi_i32(cpu_F0s, n);
P
pbrook 已提交
3019 3020
                    }
                    break;
B
bellard 已提交
3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034
                case 15: /* extension space */
                    switch (rn) {
                    case 0: /* cpy */
                        /* no-op */
                        break;
                    case 1: /* abs */
                        gen_vfp_abs(dp);
                        break;
                    case 2: /* neg */
                        gen_vfp_neg(dp);
                        break;
                    case 3: /* sqrt */
                        gen_vfp_sqrt(dp);
                        break;
P
Paul Brook 已提交
3035 3036 3037 3038
                    case 4: /* vcvtb.f32.f16 */
                        tmp = gen_vfp_mrs();
                        tcg_gen_ext16u_i32(tmp, tmp);
                        gen_helper_vfp_fcvt_f16_to_f32(cpu_F0s, tmp, cpu_env);
3039
                        tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
3040 3041 3042 3043 3044
                        break;
                    case 5: /* vcvtt.f32.f16 */
                        tmp = gen_vfp_mrs();
                        tcg_gen_shri_i32(tmp, tmp, 16);
                        gen_helper_vfp_fcvt_f16_to_f32(cpu_F0s, tmp, cpu_env);
3045
                        tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
3046 3047
                        break;
                    case 6: /* vcvtb.f16.f32 */
3048
                        tmp = tcg_temp_new_i32();
P
Paul Brook 已提交
3049 3050 3051 3052 3053
                        gen_helper_vfp_fcvt_f32_to_f16(tmp, cpu_F0s, cpu_env);
                        gen_mov_F0_vreg(0, rd);
                        tmp2 = gen_vfp_mrs();
                        tcg_gen_andi_i32(tmp2, tmp2, 0xffff0000);
                        tcg_gen_or_i32(tmp, tmp, tmp2);
3054
                        tcg_temp_free_i32(tmp2);
P
Paul Brook 已提交
3055 3056 3057
                        gen_vfp_msr(tmp);
                        break;
                    case 7: /* vcvtt.f16.f32 */
3058
                        tmp = tcg_temp_new_i32();
P
Paul Brook 已提交
3059 3060 3061 3062 3063 3064
                        gen_helper_vfp_fcvt_f32_to_f16(tmp, cpu_F0s, cpu_env);
                        tcg_gen_shli_i32(tmp, tmp, 16);
                        gen_mov_F0_vreg(0, rd);
                        tmp2 = gen_vfp_mrs();
                        tcg_gen_ext16u_i32(tmp2, tmp2);
                        tcg_gen_or_i32(tmp, tmp, tmp2);
3065
                        tcg_temp_free_i32(tmp2);
P
Paul Brook 已提交
3066 3067
                        gen_vfp_msr(tmp);
                        break;
B
bellard 已提交
3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082
                    case 8: /* cmp */
                        gen_vfp_cmp(dp);
                        break;
                    case 9: /* cmpe */
                        gen_vfp_cmpe(dp);
                        break;
                    case 10: /* cmpz */
                        gen_vfp_cmp(dp);
                        break;
                    case 11: /* cmpez */
                        gen_vfp_F1_ld0(dp);
                        gen_vfp_cmpe(dp);
                        break;
                    case 15: /* single<->double conversion */
                        if (dp)
P
pbrook 已提交
3083
                            gen_helper_vfp_fcvtsd(cpu_F0s, cpu_F0d, cpu_env);
B
bellard 已提交
3084
                        else
P
pbrook 已提交
3085
                            gen_helper_vfp_fcvtds(cpu_F0d, cpu_F0s, cpu_env);
B
bellard 已提交
3086 3087
                        break;
                    case 16: /* fuito */
3088
                        gen_vfp_uito(dp, 0);
B
bellard 已提交
3089 3090
                        break;
                    case 17: /* fsito */
3091
                        gen_vfp_sito(dp, 0);
B
bellard 已提交
3092
                        break;
P
pbrook 已提交
3093 3094 3095
                    case 20: /* fshto */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3096
                        gen_vfp_shto(dp, 16 - rm, 0);
P
pbrook 已提交
3097 3098 3099 3100
                        break;
                    case 21: /* fslto */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3101
                        gen_vfp_slto(dp, 32 - rm, 0);
P
pbrook 已提交
3102 3103 3104 3105
                        break;
                    case 22: /* fuhto */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3106
                        gen_vfp_uhto(dp, 16 - rm, 0);
P
pbrook 已提交
3107 3108 3109 3110
                        break;
                    case 23: /* fulto */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3111
                        gen_vfp_ulto(dp, 32 - rm, 0);
P
pbrook 已提交
3112
                        break;
B
bellard 已提交
3113
                    case 24: /* ftoui */
3114
                        gen_vfp_toui(dp, 0);
B
bellard 已提交
3115 3116
                        break;
                    case 25: /* ftouiz */
3117
                        gen_vfp_touiz(dp, 0);
B
bellard 已提交
3118 3119
                        break;
                    case 26: /* ftosi */
3120
                        gen_vfp_tosi(dp, 0);
B
bellard 已提交
3121 3122
                        break;
                    case 27: /* ftosiz */
3123
                        gen_vfp_tosiz(dp, 0);
B
bellard 已提交
3124
                        break;
P
pbrook 已提交
3125 3126 3127
                    case 28: /* ftosh */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3128
                        gen_vfp_tosh(dp, 16 - rm, 0);
P
pbrook 已提交
3129 3130 3131 3132
                        break;
                    case 29: /* ftosl */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3133
                        gen_vfp_tosl(dp, 32 - rm, 0);
P
pbrook 已提交
3134 3135 3136 3137
                        break;
                    case 30: /* ftouh */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3138
                        gen_vfp_touh(dp, 16 - rm, 0);
P
pbrook 已提交
3139 3140 3141 3142
                        break;
                    case 31: /* ftoul */
                        if (!arm_feature(env, ARM_FEATURE_VFP3))
                          return 1;
3143
                        gen_vfp_toul(dp, 32 - rm, 0);
P
pbrook 已提交
3144
                        break;
B
bellard 已提交
3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155
                    default: /* undefined */
                        return 1;
                    }
                    break;
                default: /* undefined */
                    return 1;
                }

                /* Write back the result.  */
                if (op == 15 && (rn >= 8 && rn <= 11))
                    ; /* Comparison, do nothing.  */
3156 3157
                else if (op == 15 && dp && ((rn & 0x1c) == 0x18))
                    /* VCVT double to int: always integer result. */
B
bellard 已提交
3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
                    gen_mov_vreg_F0(0, rd);
                else if (op == 15 && rn == 15)
                    /* conversion */
                    gen_mov_vreg_F0(!dp, rd);
                else
                    gen_mov_vreg_F0(dp, rd);

                /* break out of the loop if we have finished  */
                if (veclen == 0)
                    break;

                if (op == 15 && delta_m == 0) {
                    /* single source one-many */
                    while (veclen--) {
                        rd = ((rd + delta_d) & (bank_mask - 1))
                             | (rd & bank_mask);
                        gen_mov_vreg_F0(dp, rd);
                    }
                    break;
                }
                /* Setup the next operands.  */
                veclen--;
                rd = ((rd + delta_d) & (bank_mask - 1))
                     | (rd & bank_mask);

                if (op == 15) {
                    /* One source operand.  */
                    rm = ((rm + delta_m) & (bank_mask - 1))
                         | (rm & bank_mask);
                    gen_mov_F0_vreg(dp, rm);
                } else {
                    /* Two source operands.  */
                    rn = ((rn + delta_d) & (bank_mask - 1))
                         | (rn & bank_mask);
                    gen_mov_F0_vreg(dp, rn);
                    if (delta_m) {
                        rm = ((rm + delta_m) & (bank_mask - 1))
                             | (rm & bank_mask);
                        gen_mov_F1_vreg(dp, rm);
                    }
                }
            }
        }
        break;
    case 0xc:
    case 0xd:
3204
        if ((insn & 0x03e00000) == 0x00400000) {
B
bellard 已提交
3205 3206 3207 3208
            /* two-register transfer */
            rn = (insn >> 16) & 0xf;
            rd = (insn >> 12) & 0xf;
            if (dp) {
P
pbrook 已提交
3209 3210 3211 3212
                VFP_DREG_M(rm, insn);
            } else {
                rm = VFP_SREG_M(insn);
            }
B
bellard 已提交
3213

3214
            if (insn & ARM_CP_RW_BIT) {
B
bellard 已提交
3215 3216
                /* vfp->arm */
                if (dp) {
P
pbrook 已提交
3217 3218 3219 3220 3221 3222
                    gen_mov_F0_vreg(0, rm * 2);
                    tmp = gen_vfp_mrs();
                    store_reg(s, rd, tmp);
                    gen_mov_F0_vreg(0, rm * 2 + 1);
                    tmp = gen_vfp_mrs();
                    store_reg(s, rn, tmp);
B
bellard 已提交
3223 3224
                } else {
                    gen_mov_F0_vreg(0, rm);
P
pbrook 已提交
3225
                    tmp = gen_vfp_mrs();
3226
                    store_reg(s, rd, tmp);
B
bellard 已提交
3227
                    gen_mov_F0_vreg(0, rm + 1);
P
pbrook 已提交
3228
                    tmp = gen_vfp_mrs();
3229
                    store_reg(s, rn, tmp);
B
bellard 已提交
3230 3231 3232 3233
                }
            } else {
                /* arm->vfp */
                if (dp) {
P
pbrook 已提交
3234 3235 3236 3237 3238 3239
                    tmp = load_reg(s, rd);
                    gen_vfp_msr(tmp);
                    gen_mov_vreg_F0(0, rm * 2);
                    tmp = load_reg(s, rn);
                    gen_vfp_msr(tmp);
                    gen_mov_vreg_F0(0, rm * 2 + 1);
B
bellard 已提交
3240
                } else {
3241
                    tmp = load_reg(s, rd);
P
pbrook 已提交
3242
                    gen_vfp_msr(tmp);
B
bellard 已提交
3243
                    gen_mov_vreg_F0(0, rm);
3244
                    tmp = load_reg(s, rn);
P
pbrook 已提交
3245
                    gen_vfp_msr(tmp);
B
bellard 已提交
3246 3247 3248 3249 3250 3251 3252
                    gen_mov_vreg_F0(0, rm + 1);
                }
            }
        } else {
            /* Load/store */
            rn = (insn >> 16) & 0xf;
            if (dp)
P
pbrook 已提交
3253
                VFP_DREG_D(rd, insn);
B
bellard 已提交
3254
            else
P
pbrook 已提交
3255
                rd = VFP_SREG_D(insn);
B
bellard 已提交
3256 3257 3258 3259 3260
            if ((insn & 0x01200000) == 0x01000000) {
                /* Single load/store */
                offset = (insn & 0xff) << 2;
                if ((insn & (1 << 23)) == 0)
                    offset = -offset;
3261 3262 3263 3264 3265 3266 3267
                if (s->thumb && rn == 15) {
                    /* This is actually UNPREDICTABLE */
                    addr = tcg_temp_new_i32();
                    tcg_gen_movi_i32(addr, s->pc & ~2);
                } else {
                    addr = load_reg(s, rn);
                }
3268
                tcg_gen_addi_i32(addr, addr, offset);
B
bellard 已提交
3269
                if (insn & (1 << 20)) {
3270
                    gen_vfp_ld(s, dp, addr);
B
bellard 已提交
3271 3272 3273
                    gen_mov_vreg_F0(dp, rd);
                } else {
                    gen_mov_F0_vreg(dp, rd);
3274
                    gen_vfp_st(s, dp, addr);
B
bellard 已提交
3275
                }
3276
                tcg_temp_free_i32(addr);
B
bellard 已提交
3277 3278
            } else {
                /* load/store multiple */
3279
                int w = insn & (1 << 21);
B
bellard 已提交
3280 3281 3282 3283 3284
                if (dp)
                    n = (insn >> 1) & 0x7f;
                else
                    n = insn & 0xff;

3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306
                if (w && !(((insn >> 23) ^ (insn >> 24)) & 1)) {
                    /* P == U , W == 1  => UNDEF */
                    return 1;
                }
                if (n == 0 || (rd + n) > 32 || (dp && n > 16)) {
                    /* UNPREDICTABLE cases for bad immediates: we choose to
                     * UNDEF to avoid generating huge numbers of TCG ops
                     */
                    return 1;
                }
                if (rn == 15 && w) {
                    /* writeback to PC is UNPREDICTABLE, we choose to UNDEF */
                    return 1;
                }

                if (s->thumb && rn == 15) {
                    /* This is actually UNPREDICTABLE */
                    addr = tcg_temp_new_i32();
                    tcg_gen_movi_i32(addr, s->pc & ~2);
                } else {
                    addr = load_reg(s, rn);
                }
B
bellard 已提交
3307
                if (insn & (1 << 24)) /* pre-decrement */
3308
                    tcg_gen_addi_i32(addr, addr, -((insn & 0xff) << 2));
B
bellard 已提交
3309 3310 3311 3312 3313 3314

                if (dp)
                    offset = 8;
                else
                    offset = 4;
                for (i = 0; i < n; i++) {
3315
                    if (insn & ARM_CP_RW_BIT) {
B
bellard 已提交
3316
                        /* load */
3317
                        gen_vfp_ld(s, dp, addr);
B
bellard 已提交
3318 3319 3320 3321
                        gen_mov_vreg_F0(dp, rd + i);
                    } else {
                        /* store */
                        gen_mov_F0_vreg(dp, rd + i);
3322
                        gen_vfp_st(s, dp, addr);
B
bellard 已提交
3323
                    }
3324
                    tcg_gen_addi_i32(addr, addr, offset);
B
bellard 已提交
3325
                }
3326
                if (w) {
B
bellard 已提交
3327 3328 3329 3330 3331 3332 3333 3334 3335
                    /* writeback */
                    if (insn & (1 << 24))
                        offset = -offset * n;
                    else if (dp && (insn & 1))
                        offset = 4;
                    else
                        offset = 0;

                    if (offset != 0)
3336 3337 3338
                        tcg_gen_addi_i32(addr, addr, offset);
                    store_reg(s, rn, addr);
                } else {
3339
                    tcg_temp_free_i32(addr);
B
bellard 已提交
3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350
                }
            }
        }
        break;
    default:
        /* Should never happen.  */
        return 1;
    }
    return 0;
}

3351
static inline void gen_goto_tb(DisasContext *s, int n, uint32_t dest)
B
bellard 已提交
3352
{
3353 3354 3355 3356
    TranslationBlock *tb;

    tb = s->tb;
    if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK)) {
B
bellard 已提交
3357
        tcg_gen_goto_tb(n);
P
pbrook 已提交
3358
        gen_set_pc_im(dest);
3359
        tcg_gen_exit_tb((tcg_target_long)tb + n);
3360
    } else {
P
pbrook 已提交
3361
        gen_set_pc_im(dest);
B
bellard 已提交
3362
        tcg_gen_exit_tb(0);
3363
    }
B
bellard 已提交
3364 3365
}

B
bellard 已提交
3366 3367
static inline void gen_jmp (DisasContext *s, uint32_t dest)
{
3368
    if (unlikely(s->singlestep_enabled)) {
B
bellard 已提交
3369
        /* An indirect jump so that we still trigger the debug exception.  */
B
bellard 已提交
3370
        if (s->thumb)
P
pbrook 已提交
3371 3372
            dest |= 1;
        gen_bx_im(s, dest);
B
bellard 已提交
3373
    } else {
3374
        gen_goto_tb(s, 0, dest);
B
bellard 已提交
3375 3376 3377 3378
        s->is_jmp = DISAS_TB_JUMP;
    }
}

3379
static inline void gen_mulxy(TCGv_i32 t0, TCGv_i32 t1, int x, int y)
B
bellard 已提交
3380
{
B
bellard 已提交
3381
    if (x)
P
pbrook 已提交
3382
        tcg_gen_sari_i32(t0, t0, 16);
B
bellard 已提交
3383
    else
P
pbrook 已提交
3384
        gen_sxth(t0);
B
bellard 已提交
3385
    if (y)
P
pbrook 已提交
3386
        tcg_gen_sari_i32(t1, t1, 16);
B
bellard 已提交
3387
    else
P
pbrook 已提交
3388 3389
        gen_sxth(t1);
    tcg_gen_mul_i32(t0, t0, t1);
B
bellard 已提交
3390 3391 3392
}

/* Return the mask of PSR bits set by a MSR instruction.  */
3393
static uint32_t msr_mask(CPUARMState *env, DisasContext *s, int flags, int spsr) {
B
bellard 已提交
3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404
    uint32_t mask;

    mask = 0;
    if (flags & (1 << 0))
        mask |= 0xff;
    if (flags & (1 << 1))
        mask |= 0xff00;
    if (flags & (1 << 2))
        mask |= 0xff0000;
    if (flags & (1 << 3))
        mask |= 0xff000000;
P
pbrook 已提交
3405

P
pbrook 已提交
3406
    /* Mask out undefined bits.  */
P
pbrook 已提交
3407
    mask &= ~CPSR_RESERVED;
3408 3409 3410 3411
    if (!arm_feature(env, ARM_FEATURE_V4T))
        mask &= ~CPSR_T;
    if (!arm_feature(env, ARM_FEATURE_V5))
        mask &= ~CPSR_Q; /* V5TE in reality*/
P
pbrook 已提交
3412
    if (!arm_feature(env, ARM_FEATURE_V6))
P
pbrook 已提交
3413
        mask &= ~(CPSR_E | CPSR_GE);
P
pbrook 已提交
3414
    if (!arm_feature(env, ARM_FEATURE_THUMB2))
P
pbrook 已提交
3415
        mask &= ~CPSR_IT;
P
pbrook 已提交
3416
    /* Mask out execution state bits.  */
P
pbrook 已提交
3417
    if (!spsr)
P
pbrook 已提交
3418
        mask &= ~CPSR_EXEC;
B
bellard 已提交
3419 3420
    /* Mask out privileged bits.  */
    if (IS_USER(s))
P
pbrook 已提交
3421
        mask &= CPSR_USER;
B
bellard 已提交
3422 3423 3424
    return mask;
}

3425
/* Returns nonzero if access to the PSR is not permitted. Marks t0 as dead. */
3426
static int gen_set_psr(DisasContext *s, uint32_t mask, int spsr, TCGv_i32 t0)
B
bellard 已提交
3427
{
3428
    TCGv_i32 tmp;
B
bellard 已提交
3429 3430 3431 3432
    if (spsr) {
        /* ??? This is also undefined in system mode.  */
        if (IS_USER(s))
            return 1;
P
pbrook 已提交
3433 3434 3435

        tmp = load_cpu_field(spsr);
        tcg_gen_andi_i32(tmp, tmp, ~mask);
3436 3437
        tcg_gen_andi_i32(t0, t0, mask);
        tcg_gen_or_i32(tmp, tmp, t0);
P
pbrook 已提交
3438
        store_cpu_field(tmp, spsr);
B
bellard 已提交
3439
    } else {
3440
        gen_set_cpsr(t0, mask);
B
bellard 已提交
3441
    }
3442
    tcg_temp_free_i32(t0);
B
bellard 已提交
3443 3444 3445 3446
    gen_lookup_tb(s);
    return 0;
}

3447 3448 3449
/* Returns nonzero if access to the PSR is not permitted.  */
static int gen_set_psr_im(DisasContext *s, uint32_t mask, int spsr, uint32_t val)
{
3450
    TCGv_i32 tmp;
3451
    tmp = tcg_temp_new_i32();
3452 3453 3454 3455
    tcg_gen_movi_i32(tmp, val);
    return gen_set_psr(s, mask, spsr, tmp);
}

3456
/* Generate an old-style exception return. Marks pc as dead. */
3457
static void gen_exception_return(DisasContext *s, TCGv_i32 pc)
B
bellard 已提交
3458
{
3459
    TCGv_i32 tmp;
3460
    store_reg(s, 15, pc);
P
pbrook 已提交
3461 3462
    tmp = load_cpu_field(spsr);
    gen_set_cpsr(tmp, 0xffffffff);
3463
    tcg_temp_free_i32(tmp);
B
bellard 已提交
3464 3465 3466
    s->is_jmp = DISAS_UPDATE;
}

P
pbrook 已提交
3467
/* Generate a v6 exception return.  Marks both values as dead.  */
3468
static void gen_rfe(DisasContext *s, TCGv_i32 pc, TCGv_i32 cpsr)
B
bellard 已提交
3469
{
P
pbrook 已提交
3470
    gen_set_cpsr(cpsr, 0xffffffff);
3471
    tcg_temp_free_i32(cpsr);
P
pbrook 已提交
3472
    store_reg(s, 15, pc);
P
pbrook 已提交
3473 3474
    s->is_jmp = DISAS_UPDATE;
}
3475

P
pbrook 已提交
3476 3477 3478 3479
static inline void
gen_set_condexec (DisasContext *s)
{
    if (s->condexec_mask) {
P
pbrook 已提交
3480
        uint32_t val = (s->condexec_cond << 4) | (s->condexec_mask >> 1);
3481
        TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
3482
        tcg_gen_movi_i32(tmp, val);
P
pbrook 已提交
3483
        store_cpu_field(tmp, condexec_bits);
P
pbrook 已提交
3484 3485
    }
}
3486

3487 3488 3489 3490 3491 3492 3493 3494
static void gen_exception_insn(DisasContext *s, int offset, int excp)
{
    gen_set_condexec(s);
    gen_set_pc_im(s->pc - offset);
    gen_exception(excp);
    s->is_jmp = DISAS_JUMP;
}

P
pbrook 已提交
3495 3496 3497 3498
static void gen_nop_hint(DisasContext *s, int val)
{
    switch (val) {
    case 3: /* wfi */
P
pbrook 已提交
3499
        gen_set_pc_im(s->pc);
P
pbrook 已提交
3500 3501 3502 3503 3504 3505 3506 3507 3508
        s->is_jmp = DISAS_WFI;
        break;
    case 2: /* wfe */
    case 4: /* sev */
        /* TODO: Implement SEV and WFE.  May help SMP performance.  */
    default: /* nop */
        break;
    }
}
B
bellard 已提交
3509

P
pbrook 已提交
3510
#define CPU_V001 cpu_V0, cpu_V0, cpu_V1
P
pbrook 已提交
3511

3512
static inline void gen_neon_add(int size, TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
3513 3514
{
    switch (size) {
3515 3516 3517
    case 0: gen_helper_neon_add_u8(t0, t0, t1); break;
    case 1: gen_helper_neon_add_u16(t0, t0, t1); break;
    case 2: tcg_gen_add_i32(t0, t0, t1); break;
3518
    default: abort();
P
pbrook 已提交
3519 3520 3521
    }
}

3522
static inline void gen_neon_rsb(int size, TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
3523 3524
{
    switch (size) {
3525 3526 3527
    case 0: gen_helper_neon_sub_u8(t0, t1, t0); break;
    case 1: gen_helper_neon_sub_u16(t0, t1, t0); break;
    case 2: tcg_gen_sub_i32(t0, t1, t0); break;
P
pbrook 已提交
3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540
    default: return;
    }
}

/* 32-bit pairwise ops end up the same as the elementwise versions.  */
#define gen_helper_neon_pmax_s32  gen_helper_neon_max_s32
#define gen_helper_neon_pmax_u32  gen_helper_neon_max_u32
#define gen_helper_neon_pmin_s32  gen_helper_neon_min_s32
#define gen_helper_neon_pmin_u32  gen_helper_neon_min_u32

#define GEN_NEON_INTEGER_OP_ENV(name) do { \
    switch ((size << 1) | u) { \
    case 0: \
3541
        gen_helper_neon_##name##_s8(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3542 3543
        break; \
    case 1: \
3544
        gen_helper_neon_##name##_u8(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3545 3546
        break; \
    case 2: \
3547
        gen_helper_neon_##name##_s16(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3548 3549
        break; \
    case 3: \
3550
        gen_helper_neon_##name##_u16(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3551 3552
        break; \
    case 4: \
3553
        gen_helper_neon_##name##_s32(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3554 3555
        break; \
    case 5: \
3556
        gen_helper_neon_##name##_u32(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3557 3558 3559
        break; \
    default: return 1; \
    }} while (0)
P
pbrook 已提交
3560 3561 3562

#define GEN_NEON_INTEGER_OP(name) do { \
    switch ((size << 1) | u) { \
P
pbrook 已提交
3563
    case 0: \
3564
        gen_helper_neon_##name##_s8(tmp, tmp, tmp2); \
P
pbrook 已提交
3565 3566
        break; \
    case 1: \
3567
        gen_helper_neon_##name##_u8(tmp, tmp, tmp2); \
P
pbrook 已提交
3568 3569
        break; \
    case 2: \
3570
        gen_helper_neon_##name##_s16(tmp, tmp, tmp2); \
P
pbrook 已提交
3571 3572
        break; \
    case 3: \
3573
        gen_helper_neon_##name##_u16(tmp, tmp, tmp2); \
P
pbrook 已提交
3574 3575
        break; \
    case 4: \
3576
        gen_helper_neon_##name##_s32(tmp, tmp, tmp2); \
P
pbrook 已提交
3577 3578
        break; \
    case 5: \
3579
        gen_helper_neon_##name##_u32(tmp, tmp, tmp2); \
P
pbrook 已提交
3580
        break; \
P
pbrook 已提交
3581 3582 3583
    default: return 1; \
    }} while (0)

3584
static TCGv_i32 neon_load_scratch(int scratch)
P
pbrook 已提交
3585
{
3586
    TCGv_i32 tmp = tcg_temp_new_i32();
3587 3588
    tcg_gen_ld_i32(tmp, cpu_env, offsetof(CPUARMState, vfp.scratch[scratch]));
    return tmp;
P
pbrook 已提交
3589 3590
}

3591
static void neon_store_scratch(int scratch, TCGv_i32 var)
P
pbrook 已提交
3592
{
3593
    tcg_gen_st_i32(var, cpu_env, offsetof(CPUARMState, vfp.scratch[scratch]));
3594
    tcg_temp_free_i32(var);
P
pbrook 已提交
3595 3596
}

3597
static inline TCGv_i32 neon_get_scalar(int size, int reg)
P
pbrook 已提交
3598
{
3599
    TCGv_i32 tmp;
P
pbrook 已提交
3600
    if (size == 1) {
3601 3602
        tmp = neon_load_reg(reg & 7, reg >> 4);
        if (reg & 8) {
3603
            gen_neon_dup_high16(tmp);
3604 3605
        } else {
            gen_neon_dup_low16(tmp);
3606
        }
3607 3608
    } else {
        tmp = neon_load_reg(reg & 15, reg >> 4);
P
pbrook 已提交
3609
    }
3610
    return tmp;
P
pbrook 已提交
3611 3612
}

3613
static int gen_neon_unzip(int rd, int rm, int size, int q)
3614
{
3615
    TCGv_i32 tmp, tmp2;
3616
    if (!q && size == 2) {
3617 3618 3619 3620 3621 3622 3623
        return 1;
    }
    tmp = tcg_const_i32(rd);
    tmp2 = tcg_const_i32(rm);
    if (q) {
        switch (size) {
        case 0:
3624
            gen_helper_neon_qunzip8(cpu_env, tmp, tmp2);
3625 3626
            break;
        case 1:
3627
            gen_helper_neon_qunzip16(cpu_env, tmp, tmp2);
3628 3629
            break;
        case 2:
3630
            gen_helper_neon_qunzip32(cpu_env, tmp, tmp2);
3631 3632 3633 3634 3635 3636 3637
            break;
        default:
            abort();
        }
    } else {
        switch (size) {
        case 0:
3638
            gen_helper_neon_unzip8(cpu_env, tmp, tmp2);
3639 3640
            break;
        case 1:
3641
            gen_helper_neon_unzip16(cpu_env, tmp, tmp2);
3642 3643 3644 3645 3646 3647 3648 3649
            break;
        default:
            abort();
        }
    }
    tcg_temp_free_i32(tmp);
    tcg_temp_free_i32(tmp2);
    return 0;
3650 3651
}

3652
static int gen_neon_zip(int rd, int rm, int size, int q)
3653
{
3654
    TCGv_i32 tmp, tmp2;
3655
    if (!q && size == 2) {
3656 3657 3658 3659 3660 3661 3662
        return 1;
    }
    tmp = tcg_const_i32(rd);
    tmp2 = tcg_const_i32(rm);
    if (q) {
        switch (size) {
        case 0:
3663
            gen_helper_neon_qzip8(cpu_env, tmp, tmp2);
3664 3665
            break;
        case 1:
3666
            gen_helper_neon_qzip16(cpu_env, tmp, tmp2);
3667 3668
            break;
        case 2:
3669
            gen_helper_neon_qzip32(cpu_env, tmp, tmp2);
3670 3671 3672 3673 3674 3675 3676
            break;
        default:
            abort();
        }
    } else {
        switch (size) {
        case 0:
3677
            gen_helper_neon_zip8(cpu_env, tmp, tmp2);
3678 3679
            break;
        case 1:
3680
            gen_helper_neon_zip16(cpu_env, tmp, tmp2);
3681 3682 3683 3684 3685 3686 3687 3688
            break;
        default:
            abort();
        }
    }
    tcg_temp_free_i32(tmp);
    tcg_temp_free_i32(tmp2);
    return 0;
3689 3690
}

3691
static void gen_neon_trn_u8(TCGv_i32 t0, TCGv_i32 t1)
3692
{
3693
    TCGv_i32 rd, tmp;
3694

3695 3696
    rd = tcg_temp_new_i32();
    tmp = tcg_temp_new_i32();
3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708

    tcg_gen_shli_i32(rd, t0, 8);
    tcg_gen_andi_i32(rd, rd, 0xff00ff00);
    tcg_gen_andi_i32(tmp, t1, 0x00ff00ff);
    tcg_gen_or_i32(rd, rd, tmp);

    tcg_gen_shri_i32(t1, t1, 8);
    tcg_gen_andi_i32(t1, t1, 0x00ff00ff);
    tcg_gen_andi_i32(tmp, t0, 0xff00ff00);
    tcg_gen_or_i32(t1, t1, tmp);
    tcg_gen_mov_i32(t0, rd);

3709 3710
    tcg_temp_free_i32(tmp);
    tcg_temp_free_i32(rd);
3711 3712
}

3713
static void gen_neon_trn_u16(TCGv_i32 t0, TCGv_i32 t1)
3714
{
3715
    TCGv_i32 rd, tmp;
3716

3717 3718
    rd = tcg_temp_new_i32();
    tmp = tcg_temp_new_i32();
3719 3720 3721 3722 3723 3724 3725 3726 3727

    tcg_gen_shli_i32(rd, t0, 16);
    tcg_gen_andi_i32(tmp, t1, 0xffff);
    tcg_gen_or_i32(rd, rd, tmp);
    tcg_gen_shri_i32(t1, t1, 16);
    tcg_gen_andi_i32(tmp, t0, 0xffff0000);
    tcg_gen_or_i32(t1, t1, tmp);
    tcg_gen_mov_i32(t0, rd);

3728 3729
    tcg_temp_free_i32(tmp);
    tcg_temp_free_i32(rd);
3730 3731 3732
}


P
pbrook 已提交
3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752
static struct {
    int nregs;
    int interleave;
    int spacing;
} neon_ls_element_type[11] = {
    {4, 4, 1},
    {4, 4, 2},
    {4, 1, 1},
    {4, 2, 1},
    {3, 3, 1},
    {3, 3, 2},
    {3, 1, 1},
    {1, 1, 1},
    {2, 2, 1},
    {2, 2, 2},
    {2, 1, 1}
};

/* Translate a NEON load/store element instruction.  Return nonzero if the
   instruction is invalid.  */
3753
static int disas_neon_ls_insn(CPUARMState * env, DisasContext *s, uint32_t insn)
P
pbrook 已提交
3754 3755 3756 3757 3758
{
    int rd, rn, rm;
    int op;
    int nregs;
    int interleave;
3759
    int spacing;
P
pbrook 已提交
3760 3761 3762 3763 3764 3765 3766
    int stride;
    int size;
    int reg;
    int pass;
    int load;
    int shift;
    int n;
3767 3768 3769
    TCGv_i32 addr;
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
3770
    TCGv_i64 tmp64;
P
pbrook 已提交
3771

3772
    if (!s->vfp_enabled)
P
pbrook 已提交
3773 3774 3775 3776 3777 3778 3779 3780 3781
      return 1;
    VFP_DREG_D(rd, insn);
    rn = (insn >> 16) & 0xf;
    rm = insn & 0xf;
    load = (insn & (1 << 21)) != 0;
    if ((insn & (1 << 23)) == 0) {
        /* Load store all elements.  */
        op = (insn >> 8) & 0xf;
        size = (insn >> 6) & 3;
3782
        if (op > 10)
P
pbrook 已提交
3783
            return 1;
3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
        /* Catch UNDEF cases for bad values of align field */
        switch (op & 0xc) {
        case 4:
            if (((insn >> 5) & 1) == 1) {
                return 1;
            }
            break;
        case 8:
            if (((insn >> 4) & 3) == 3) {
                return 1;
            }
            break;
        default:
            break;
        }
P
pbrook 已提交
3799 3800
        nregs = neon_ls_element_type[op].nregs;
        interleave = neon_ls_element_type[op].interleave;
3801 3802 3803
        spacing = neon_ls_element_type[op].spacing;
        if (size == 3 && (interleave | spacing) != 1)
            return 1;
3804
        addr = tcg_temp_new_i32();
3805
        load_reg_var(s, addr, rn);
P
pbrook 已提交
3806 3807 3808
        stride = (1 << size) * interleave;
        for (reg = 0; reg < nregs; reg++) {
            if (interleave > 2 || (interleave == 2 && nregs == 2)) {
3809 3810
                load_reg_var(s, addr, rn);
                tcg_gen_addi_i32(addr, addr, (1 << size) * reg);
P
pbrook 已提交
3811
            } else if (interleave == 2 && nregs == 4 && reg == 2) {
3812 3813
                load_reg_var(s, addr, rn);
                tcg_gen_addi_i32(addr, addr, 1 << size);
P
pbrook 已提交
3814
            }
3815
            if (size == 3) {
3816
                tmp64 = tcg_temp_new_i64();
3817
                if (load) {
3818
                    tcg_gen_qemu_ld64(tmp64, addr, IS_USER(s));
3819 3820 3821
                    neon_store_reg64(tmp64, rd);
                } else {
                    neon_load_reg64(tmp64, rd);
3822
                    tcg_gen_qemu_st64(tmp64, addr, IS_USER(s));
3823
                }
3824
                tcg_temp_free_i64(tmp64);
3825 3826 3827 3828 3829
                tcg_gen_addi_i32(addr, addr, stride);
            } else {
                for (pass = 0; pass < 2; pass++) {
                    if (size == 2) {
                        if (load) {
3830 3831
                            tmp = tcg_temp_new_i32();
                            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
3832 3833 3834
                            neon_store_reg(rd, pass, tmp);
                        } else {
                            tmp = neon_load_reg(rd, pass);
3835 3836
                            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                            tcg_temp_free_i32(tmp);
3837
                        }
3838
                        tcg_gen_addi_i32(addr, addr, stride);
3839 3840
                    } else if (size == 1) {
                        if (load) {
3841 3842
                            tmp = tcg_temp_new_i32();
                            tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
3843
                            tcg_gen_addi_i32(addr, addr, stride);
3844 3845
                            tmp2 = tcg_temp_new_i32();
                            tcg_gen_qemu_ld16u(tmp2, addr, IS_USER(s));
3846
                            tcg_gen_addi_i32(addr, addr, stride);
P
Paul Brook 已提交
3847 3848
                            tcg_gen_shli_i32(tmp2, tmp2, 16);
                            tcg_gen_or_i32(tmp, tmp, tmp2);
3849
                            tcg_temp_free_i32(tmp2);
3850 3851 3852
                            neon_store_reg(rd, pass, tmp);
                        } else {
                            tmp = neon_load_reg(rd, pass);
3853
                            tmp2 = tcg_temp_new_i32();
3854
                            tcg_gen_shri_i32(tmp2, tmp, 16);
3855 3856
                            tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
                            tcg_temp_free_i32(tmp);
3857
                            tcg_gen_addi_i32(addr, addr, stride);
3858 3859
                            tcg_gen_qemu_st16(tmp2, addr, IS_USER(s));
                            tcg_temp_free_i32(tmp2);
3860
                            tcg_gen_addi_i32(addr, addr, stride);
P
pbrook 已提交
3861
                        }
3862 3863
                    } else /* size == 0 */ {
                        if (load) {
3864
                            TCGV_UNUSED_I32(tmp2);
3865
                            for (n = 0; n < 4; n++) {
3866 3867
                                tmp = tcg_temp_new_i32();
                                tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
3868 3869 3870 3871
                                tcg_gen_addi_i32(addr, addr, stride);
                                if (n == 0) {
                                    tmp2 = tmp;
                                } else {
P
Paul Brook 已提交
3872 3873
                                    tcg_gen_shli_i32(tmp, tmp, n * 8);
                                    tcg_gen_or_i32(tmp2, tmp2, tmp);
3874
                                    tcg_temp_free_i32(tmp);
3875
                                }
P
pbrook 已提交
3876
                            }
3877 3878 3879 3880
                            neon_store_reg(rd, pass, tmp2);
                        } else {
                            tmp2 = neon_load_reg(rd, pass);
                            for (n = 0; n < 4; n++) {
3881
                                tmp = tcg_temp_new_i32();
3882 3883 3884 3885 3886
                                if (n == 0) {
                                    tcg_gen_mov_i32(tmp, tmp2);
                                } else {
                                    tcg_gen_shri_i32(tmp, tmp2, n * 8);
                                }
3887 3888
                                tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
                                tcg_temp_free_i32(tmp);
3889 3890
                                tcg_gen_addi_i32(addr, addr, stride);
                            }
3891
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
3892 3893 3894 3895
                        }
                    }
                }
            }
3896
            rd += spacing;
P
pbrook 已提交
3897
        }
3898
        tcg_temp_free_i32(addr);
P
pbrook 已提交
3899 3900 3901 3902 3903
        stride = nregs * 8;
    } else {
        size = (insn >> 10) & 3;
        if (size == 3) {
            /* Load single element to all lanes.  */
3904 3905
            int a = (insn >> 4) & 1;
            if (!load) {
P
pbrook 已提交
3906
                return 1;
3907
            }
P
pbrook 已提交
3908 3909
            size = (insn >> 6) & 3;
            nregs = ((insn >> 8) & 3) + 1;
3910 3911 3912

            if (size == 3) {
                if (nregs != 4 || a == 0) {
P
pbrook 已提交
3913
                    return 1;
B
bellard 已提交
3914
                }
3915 3916 3917 3918 3919 3920 3921 3922 3923
                /* For VLD4 size==3 a == 1 means 32 bits at 16 byte alignment */
                size = 2;
            }
            if (nregs == 1 && a == 1 && size == 0) {
                return 1;
            }
            if (nregs == 3 && a == 1) {
                return 1;
            }
3924
            addr = tcg_temp_new_i32();
3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946
            load_reg_var(s, addr, rn);
            if (nregs == 1) {
                /* VLD1 to all lanes: bit 5 indicates how many Dregs to write */
                tmp = gen_load_and_replicate(s, addr, size);
                tcg_gen_st_i32(tmp, cpu_env, neon_reg_offset(rd, 0));
                tcg_gen_st_i32(tmp, cpu_env, neon_reg_offset(rd, 1));
                if (insn & (1 << 5)) {
                    tcg_gen_st_i32(tmp, cpu_env, neon_reg_offset(rd + 1, 0));
                    tcg_gen_st_i32(tmp, cpu_env, neon_reg_offset(rd + 1, 1));
                }
                tcg_temp_free_i32(tmp);
            } else {
                /* VLD2/3/4 to all lanes: bit 5 indicates register stride */
                stride = (insn & (1 << 5)) ? 2 : 1;
                for (reg = 0; reg < nregs; reg++) {
                    tmp = gen_load_and_replicate(s, addr, size);
                    tcg_gen_st_i32(tmp, cpu_env, neon_reg_offset(rd, 0));
                    tcg_gen_st_i32(tmp, cpu_env, neon_reg_offset(rd, 1));
                    tcg_temp_free_i32(tmp);
                    tcg_gen_addi_i32(addr, addr, 1 << size);
                    rd += stride;
                }
P
pbrook 已提交
3947
            }
3948
            tcg_temp_free_i32(addr);
P
pbrook 已提交
3949 3950 3951
            stride = (1 << size) * nregs;
        } else {
            /* Single element.  */
3952
            int idx = (insn >> 4) & 0xf;
P
pbrook 已提交
3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970
            pass = (insn >> 7) & 1;
            switch (size) {
            case 0:
                shift = ((insn >> 5) & 3) * 8;
                stride = 1;
                break;
            case 1:
                shift = ((insn >> 6) & 1) * 16;
                stride = (insn & (1 << 5)) ? 2 : 1;
                break;
            case 2:
                shift = 0;
                stride = (insn & (1 << 6)) ? 2 : 1;
                break;
            default:
                abort();
            }
            nregs = ((insn >> 8) & 3) + 1;
3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003
            /* Catch the UNDEF cases. This is unavoidably a bit messy. */
            switch (nregs) {
            case 1:
                if (((idx & (1 << size)) != 0) ||
                    (size == 2 && ((idx & 3) == 1 || (idx & 3) == 2))) {
                    return 1;
                }
                break;
            case 3:
                if ((idx & 1) != 0) {
                    return 1;
                }
                /* fall through */
            case 2:
                if (size == 2 && (idx & 2) != 0) {
                    return 1;
                }
                break;
            case 4:
                if ((size == 2) && ((idx & 3) == 3)) {
                    return 1;
                }
                break;
            default:
                abort();
            }
            if ((rd + stride * (nregs - 1)) > 31) {
                /* Attempts to write off the end of the register file
                 * are UNPREDICTABLE; we choose to UNDEF because otherwise
                 * the neon_load_reg() would write off the end of the array.
                 */
                return 1;
            }
4004
            addr = tcg_temp_new_i32();
4005
            load_reg_var(s, addr, rn);
P
pbrook 已提交
4006 4007
            for (reg = 0; reg < nregs; reg++) {
                if (load) {
4008
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
4009 4010
                    switch (size) {
                    case 0:
4011
                        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
pbrook 已提交
4012 4013
                        break;
                    case 1:
4014
                        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
4015 4016
                        break;
                    case 2:
4017
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
4018
                        break;
P
pbrook 已提交
4019 4020
                    default: /* Avoid compiler warnings.  */
                        abort();
P
pbrook 已提交
4021 4022
                    }
                    if (size != 2) {
P
pbrook 已提交
4023
                        tmp2 = neon_load_reg(rd, pass);
4024 4025
                        tcg_gen_deposit_i32(tmp, tmp2, tmp,
                                            shift, size ? 16 : 8);
4026
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
4027
                    }
P
pbrook 已提交
4028
                    neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
4029
                } else { /* Store */
P
pbrook 已提交
4030 4031 4032
                    tmp = neon_load_reg(rd, pass);
                    if (shift)
                        tcg_gen_shri_i32(tmp, tmp, shift);
P
pbrook 已提交
4033 4034
                    switch (size) {
                    case 0:
4035
                        tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
P
pbrook 已提交
4036 4037
                        break;
                    case 1:
4038
                        tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
P
pbrook 已提交
4039 4040
                        break;
                    case 2:
4041
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
P
pbrook 已提交
4042
                        break;
B
bellard 已提交
4043
                    }
4044
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
4045
                }
P
pbrook 已提交
4046
                rd += stride;
4047
                tcg_gen_addi_i32(addr, addr, 1 << size);
B
bellard 已提交
4048
            }
4049
            tcg_temp_free_i32(addr);
P
pbrook 已提交
4050
            stride = nregs * (1 << size);
B
bellard 已提交
4051
        }
P
pbrook 已提交
4052 4053
    }
    if (rm != 15) {
4054
        TCGv_i32 base;
P
pbrook 已提交
4055 4056

        base = load_reg(s, rn);
P
pbrook 已提交
4057
        if (rm == 13) {
P
pbrook 已提交
4058
            tcg_gen_addi_i32(base, base, stride);
P
pbrook 已提交
4059
        } else {
4060
            TCGv_i32 index;
P
pbrook 已提交
4061 4062
            index = load_reg(s, rm);
            tcg_gen_add_i32(base, base, index);
4063
            tcg_temp_free_i32(index);
P
pbrook 已提交
4064
        }
P
pbrook 已提交
4065
        store_reg(s, rn, base);
P
pbrook 已提交
4066 4067 4068
    }
    return 0;
}
4069

P
pbrook 已提交
4070
/* Bitwise select.  dest = c ? t : f.  Clobbers T and F.  */
4071
static void gen_neon_bsl(TCGv_i32 dest, TCGv_i32 t, TCGv_i32 f, TCGv_i32 c)
P
pbrook 已提交
4072 4073
{
    tcg_gen_and_i32(t, t, c);
4074
    tcg_gen_andc_i32(f, f, c);
P
pbrook 已提交
4075 4076 4077
    tcg_gen_or_i32(dest, t, f);
}

4078
static inline void gen_neon_narrow(int size, TCGv_i32 dest, TCGv_i64 src)
P
pbrook 已提交
4079 4080 4081 4082 4083 4084 4085 4086 4087
{
    switch (size) {
    case 0: gen_helper_neon_narrow_u8(dest, src); break;
    case 1: gen_helper_neon_narrow_u16(dest, src); break;
    case 2: tcg_gen_trunc_i64_i32(dest, src); break;
    default: abort();
    }
}

4088
static inline void gen_neon_narrow_sats(int size, TCGv_i32 dest, TCGv_i64 src)
P
pbrook 已提交
4089 4090
{
    switch (size) {
4091 4092 4093
    case 0: gen_helper_neon_narrow_sat_s8(dest, cpu_env, src); break;
    case 1: gen_helper_neon_narrow_sat_s16(dest, cpu_env, src); break;
    case 2: gen_helper_neon_narrow_sat_s32(dest, cpu_env, src); break;
P
pbrook 已提交
4094 4095 4096 4097
    default: abort();
    }
}

4098
static inline void gen_neon_narrow_satu(int size, TCGv_i32 dest, TCGv_i64 src)
P
pbrook 已提交
4099 4100
{
    switch (size) {
4101 4102 4103
    case 0: gen_helper_neon_narrow_sat_u8(dest, cpu_env, src); break;
    case 1: gen_helper_neon_narrow_sat_u16(dest, cpu_env, src); break;
    case 2: gen_helper_neon_narrow_sat_u32(dest, cpu_env, src); break;
P
pbrook 已提交
4104 4105 4106 4107
    default: abort();
    }
}

4108
static inline void gen_neon_unarrow_sats(int size, TCGv_i32 dest, TCGv_i64 src)
4109 4110
{
    switch (size) {
4111 4112 4113
    case 0: gen_helper_neon_unarrow_sat8(dest, cpu_env, src); break;
    case 1: gen_helper_neon_unarrow_sat16(dest, cpu_env, src); break;
    case 2: gen_helper_neon_unarrow_sat32(dest, cpu_env, src); break;
4114 4115 4116 4117
    default: abort();
    }
}

4118
static inline void gen_neon_shift_narrow(int size, TCGv_i32 var, TCGv_i32 shift,
P
pbrook 已提交
4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137
                                         int q, int u)
{
    if (q) {
        if (u) {
            switch (size) {
            case 1: gen_helper_neon_rshl_u16(var, var, shift); break;
            case 2: gen_helper_neon_rshl_u32(var, var, shift); break;
            default: abort();
            }
        } else {
            switch (size) {
            case 1: gen_helper_neon_rshl_s16(var, var, shift); break;
            case 2: gen_helper_neon_rshl_s32(var, var, shift); break;
            default: abort();
            }
        }
    } else {
        if (u) {
            switch (size) {
4138 4139
            case 1: gen_helper_neon_shl_u16(var, var, shift); break;
            case 2: gen_helper_neon_shl_u32(var, var, shift); break;
P
pbrook 已提交
4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151
            default: abort();
            }
        } else {
            switch (size) {
            case 1: gen_helper_neon_shl_s16(var, var, shift); break;
            case 2: gen_helper_neon_shl_s32(var, var, shift); break;
            default: abort();
            }
        }
    }
}

4152
static inline void gen_neon_widen(TCGv_i64 dest, TCGv_i32 src, int size, int u)
P
pbrook 已提交
4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168
{
    if (u) {
        switch (size) {
        case 0: gen_helper_neon_widen_u8(dest, src); break;
        case 1: gen_helper_neon_widen_u16(dest, src); break;
        case 2: tcg_gen_extu_i32_i64(dest, src); break;
        default: abort();
        }
    } else {
        switch (size) {
        case 0: gen_helper_neon_widen_s8(dest, src); break;
        case 1: gen_helper_neon_widen_s16(dest, src); break;
        case 2: tcg_gen_ext_i32_i64(dest, src); break;
        default: abort();
        }
    }
4169
    tcg_temp_free_i32(src);
P
pbrook 已提交
4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191
}

static inline void gen_neon_addl(int size)
{
    switch (size) {
    case 0: gen_helper_neon_addl_u16(CPU_V001); break;
    case 1: gen_helper_neon_addl_u32(CPU_V001); break;
    case 2: tcg_gen_add_i64(CPU_V001); break;
    default: abort();
    }
}

static inline void gen_neon_subl(int size)
{
    switch (size) {
    case 0: gen_helper_neon_subl_u16(CPU_V001); break;
    case 1: gen_helper_neon_subl_u32(CPU_V001); break;
    case 2: tcg_gen_sub_i64(CPU_V001); break;
    default: abort();
    }
}

P
pbrook 已提交
4192
static inline void gen_neon_negl(TCGv_i64 var, int size)
P
pbrook 已提交
4193 4194 4195 4196
{
    switch (size) {
    case 0: gen_helper_neon_negl_u16(var, var); break;
    case 1: gen_helper_neon_negl_u32(var, var); break;
4197 4198 4199
    case 2:
        tcg_gen_neg_i64(var, var);
        break;
P
pbrook 已提交
4200 4201 4202 4203
    default: abort();
    }
}

P
pbrook 已提交
4204
static inline void gen_neon_addl_saturate(TCGv_i64 op0, TCGv_i64 op1, int size)
P
pbrook 已提交
4205 4206
{
    switch (size) {
4207 4208
    case 1: gen_helper_neon_addl_saturate_s32(op0, cpu_env, op0, op1); break;
    case 2: gen_helper_neon_addl_saturate_s64(op0, cpu_env, op0, op1); break;
P
pbrook 已提交
4209 4210 4211 4212
    default: abort();
    }
}

4213 4214
static inline void gen_neon_mull(TCGv_i64 dest, TCGv_i32 a, TCGv_i32 b,
                                 int size, int u)
P
pbrook 已提交
4215
{
P
pbrook 已提交
4216
    TCGv_i64 tmp;
P
pbrook 已提交
4217 4218 4219 4220 4221 4222 4223 4224 4225

    switch ((size << 1) | u) {
    case 0: gen_helper_neon_mull_s8(dest, a, b); break;
    case 1: gen_helper_neon_mull_u8(dest, a, b); break;
    case 2: gen_helper_neon_mull_s16(dest, a, b); break;
    case 3: gen_helper_neon_mull_u16(dest, a, b); break;
    case 4:
        tmp = gen_muls_i64_i32(a, b);
        tcg_gen_mov_i64(dest, tmp);
4226
        tcg_temp_free_i64(tmp);
P
pbrook 已提交
4227 4228 4229 4230
        break;
    case 5:
        tmp = gen_mulu_i64_i32(a, b);
        tcg_gen_mov_i64(dest, tmp);
4231
        tcg_temp_free_i64(tmp);
P
pbrook 已提交
4232 4233 4234
        break;
    default: abort();
    }
4235 4236 4237 4238

    /* gen_helper_neon_mull_[su]{8|16} do not free their parameters.
       Don't forget to clean them now.  */
    if (size < 2) {
4239 4240
        tcg_temp_free_i32(a);
        tcg_temp_free_i32(b);
4241
    }
P
pbrook 已提交
4242 4243
}

4244 4245
static void gen_neon_narrow_op(int op, int u, int size,
                               TCGv_i32 dest, TCGv_i64 src)
4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261
{
    if (op) {
        if (u) {
            gen_neon_unarrow_sats(size, dest, src);
        } else {
            gen_neon_narrow(size, dest, src);
        }
    } else {
        if (u) {
            gen_neon_narrow_satu(size, dest, src);
        } else {
            gen_neon_narrow_sats(size, dest, src);
        }
    }
}

4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289
/* Symbolic constants for op fields for Neon 3-register same-length.
 * The values correspond to bits [11:8,4]; see the ARM ARM DDI0406B
 * table A7-9.
 */
#define NEON_3R_VHADD 0
#define NEON_3R_VQADD 1
#define NEON_3R_VRHADD 2
#define NEON_3R_LOGIC 3 /* VAND,VBIC,VORR,VMOV,VORN,VEOR,VBIF,VBIT,VBSL */
#define NEON_3R_VHSUB 4
#define NEON_3R_VQSUB 5
#define NEON_3R_VCGT 6
#define NEON_3R_VCGE 7
#define NEON_3R_VSHL 8
#define NEON_3R_VQSHL 9
#define NEON_3R_VRSHL 10
#define NEON_3R_VQRSHL 11
#define NEON_3R_VMAX 12
#define NEON_3R_VMIN 13
#define NEON_3R_VABD 14
#define NEON_3R_VABA 15
#define NEON_3R_VADD_VSUB 16
#define NEON_3R_VTST_VCEQ 17
#define NEON_3R_VML 18 /* VMLA, VMLAL, VMLS, VMLSL */
#define NEON_3R_VMUL 19
#define NEON_3R_VPMAX 20
#define NEON_3R_VPMIN 21
#define NEON_3R_VQDMULH_VQRDMULH 22
#define NEON_3R_VPADD 23
4290
#define NEON_3R_VFM 25 /* VFMA, VFMS : float fused multiply-add */
4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322
#define NEON_3R_FLOAT_ARITH 26 /* float VADD, VSUB, VPADD, VABD */
#define NEON_3R_FLOAT_MULTIPLY 27 /* float VMLA, VMLS, VMUL */
#define NEON_3R_FLOAT_CMP 28 /* float VCEQ, VCGE, VCGT */
#define NEON_3R_FLOAT_ACMP 29 /* float VACGE, VACGT, VACLE, VACLT */
#define NEON_3R_FLOAT_MINMAX 30 /* float VMIN, VMAX */
#define NEON_3R_VRECPS_VRSQRTS 31 /* float VRECPS, VRSQRTS */

static const uint8_t neon_3r_sizes[] = {
    [NEON_3R_VHADD] = 0x7,
    [NEON_3R_VQADD] = 0xf,
    [NEON_3R_VRHADD] = 0x7,
    [NEON_3R_LOGIC] = 0xf, /* size field encodes op type */
    [NEON_3R_VHSUB] = 0x7,
    [NEON_3R_VQSUB] = 0xf,
    [NEON_3R_VCGT] = 0x7,
    [NEON_3R_VCGE] = 0x7,
    [NEON_3R_VSHL] = 0xf,
    [NEON_3R_VQSHL] = 0xf,
    [NEON_3R_VRSHL] = 0xf,
    [NEON_3R_VQRSHL] = 0xf,
    [NEON_3R_VMAX] = 0x7,
    [NEON_3R_VMIN] = 0x7,
    [NEON_3R_VABD] = 0x7,
    [NEON_3R_VABA] = 0x7,
    [NEON_3R_VADD_VSUB] = 0xf,
    [NEON_3R_VTST_VCEQ] = 0x7,
    [NEON_3R_VML] = 0x7,
    [NEON_3R_VMUL] = 0x7,
    [NEON_3R_VPMAX] = 0x7,
    [NEON_3R_VPMIN] = 0x7,
    [NEON_3R_VQDMULH_VQRDMULH] = 0x6,
    [NEON_3R_VPADD] = 0x7,
4323
    [NEON_3R_VFM] = 0x5, /* size bit 1 encodes op */
4324 4325 4326 4327 4328 4329 4330 4331
    [NEON_3R_FLOAT_ARITH] = 0x5, /* size bit 1 encodes op */
    [NEON_3R_FLOAT_MULTIPLY] = 0x5, /* size bit 1 encodes op */
    [NEON_3R_FLOAT_CMP] = 0x5, /* size bit 1 encodes op */
    [NEON_3R_FLOAT_ACMP] = 0x5, /* size bit 1 encodes op */
    [NEON_3R_FLOAT_MINMAX] = 0x5, /* size bit 1 encodes op */
    [NEON_3R_VRECPS_VRSQRTS] = 0x5, /* size bit 1 encodes op */
};

4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438
/* Symbolic constants for op fields for Neon 2-register miscellaneous.
 * The values correspond to bits [17:16,10:7]; see the ARM ARM DDI0406B
 * table A7-13.
 */
#define NEON_2RM_VREV64 0
#define NEON_2RM_VREV32 1
#define NEON_2RM_VREV16 2
#define NEON_2RM_VPADDL 4
#define NEON_2RM_VPADDL_U 5
#define NEON_2RM_VCLS 8
#define NEON_2RM_VCLZ 9
#define NEON_2RM_VCNT 10
#define NEON_2RM_VMVN 11
#define NEON_2RM_VPADAL 12
#define NEON_2RM_VPADAL_U 13
#define NEON_2RM_VQABS 14
#define NEON_2RM_VQNEG 15
#define NEON_2RM_VCGT0 16
#define NEON_2RM_VCGE0 17
#define NEON_2RM_VCEQ0 18
#define NEON_2RM_VCLE0 19
#define NEON_2RM_VCLT0 20
#define NEON_2RM_VABS 22
#define NEON_2RM_VNEG 23
#define NEON_2RM_VCGT0_F 24
#define NEON_2RM_VCGE0_F 25
#define NEON_2RM_VCEQ0_F 26
#define NEON_2RM_VCLE0_F 27
#define NEON_2RM_VCLT0_F 28
#define NEON_2RM_VABS_F 30
#define NEON_2RM_VNEG_F 31
#define NEON_2RM_VSWP 32
#define NEON_2RM_VTRN 33
#define NEON_2RM_VUZP 34
#define NEON_2RM_VZIP 35
#define NEON_2RM_VMOVN 36 /* Includes VQMOVN, VQMOVUN */
#define NEON_2RM_VQMOVN 37 /* Includes VQMOVUN */
#define NEON_2RM_VSHLL 38
#define NEON_2RM_VCVT_F16_F32 44
#define NEON_2RM_VCVT_F32_F16 46
#define NEON_2RM_VRECPE 56
#define NEON_2RM_VRSQRTE 57
#define NEON_2RM_VRECPE_F 58
#define NEON_2RM_VRSQRTE_F 59
#define NEON_2RM_VCVT_FS 60
#define NEON_2RM_VCVT_FU 61
#define NEON_2RM_VCVT_SF 62
#define NEON_2RM_VCVT_UF 63

static int neon_2rm_is_float_op(int op)
{
    /* Return true if this neon 2reg-misc op is float-to-float */
    return (op == NEON_2RM_VABS_F || op == NEON_2RM_VNEG_F ||
            op >= NEON_2RM_VRECPE_F);
}

/* Each entry in this array has bit n set if the insn allows
 * size value n (otherwise it will UNDEF). Since unallocated
 * op values will have no bits set they always UNDEF.
 */
static const uint8_t neon_2rm_sizes[] = {
    [NEON_2RM_VREV64] = 0x7,
    [NEON_2RM_VREV32] = 0x3,
    [NEON_2RM_VREV16] = 0x1,
    [NEON_2RM_VPADDL] = 0x7,
    [NEON_2RM_VPADDL_U] = 0x7,
    [NEON_2RM_VCLS] = 0x7,
    [NEON_2RM_VCLZ] = 0x7,
    [NEON_2RM_VCNT] = 0x1,
    [NEON_2RM_VMVN] = 0x1,
    [NEON_2RM_VPADAL] = 0x7,
    [NEON_2RM_VPADAL_U] = 0x7,
    [NEON_2RM_VQABS] = 0x7,
    [NEON_2RM_VQNEG] = 0x7,
    [NEON_2RM_VCGT0] = 0x7,
    [NEON_2RM_VCGE0] = 0x7,
    [NEON_2RM_VCEQ0] = 0x7,
    [NEON_2RM_VCLE0] = 0x7,
    [NEON_2RM_VCLT0] = 0x7,
    [NEON_2RM_VABS] = 0x7,
    [NEON_2RM_VNEG] = 0x7,
    [NEON_2RM_VCGT0_F] = 0x4,
    [NEON_2RM_VCGE0_F] = 0x4,
    [NEON_2RM_VCEQ0_F] = 0x4,
    [NEON_2RM_VCLE0_F] = 0x4,
    [NEON_2RM_VCLT0_F] = 0x4,
    [NEON_2RM_VABS_F] = 0x4,
    [NEON_2RM_VNEG_F] = 0x4,
    [NEON_2RM_VSWP] = 0x1,
    [NEON_2RM_VTRN] = 0x7,
    [NEON_2RM_VUZP] = 0x7,
    [NEON_2RM_VZIP] = 0x7,
    [NEON_2RM_VMOVN] = 0x7,
    [NEON_2RM_VQMOVN] = 0x7,
    [NEON_2RM_VSHLL] = 0x7,
    [NEON_2RM_VCVT_F16_F32] = 0x2,
    [NEON_2RM_VCVT_F32_F16] = 0x2,
    [NEON_2RM_VRECPE] = 0x4,
    [NEON_2RM_VRSQRTE] = 0x4,
    [NEON_2RM_VRECPE_F] = 0x4,
    [NEON_2RM_VRSQRTE_F] = 0x4,
    [NEON_2RM_VCVT_FS] = 0x4,
    [NEON_2RM_VCVT_FU] = 0x4,
    [NEON_2RM_VCVT_SF] = 0x4,
    [NEON_2RM_VCVT_UF] = 0x4,
};

P
pbrook 已提交
4439 4440
/* Translate a NEON data processing instruction.  Return nonzero if the
   instruction is invalid.
P
pbrook 已提交
4441 4442
   We process data in a mixture of 32-bit and 64-bit chunks.
   Mostly we use 32-bit chunks so we can use normal scalar instructions.  */
B
bellard 已提交
4443

4444
static int disas_neon_data_insn(CPUARMState * env, DisasContext *s, uint32_t insn)
P
pbrook 已提交
4445 4446 4447 4448 4449 4450 4451 4452 4453 4454
{
    int op;
    int q;
    int rd, rn, rm;
    int size;
    int shift;
    int pass;
    int count;
    int pairwise;
    int u;
4455
    uint32_t imm, mask;
4456
    TCGv_i32 tmp, tmp2, tmp3, tmp4, tmp5;
P
pbrook 已提交
4457
    TCGv_i64 tmp64;
P
pbrook 已提交
4458

4459
    if (!s->vfp_enabled)
P
pbrook 已提交
4460 4461 4462 4463 4464 4465 4466 4467 4468 4469
      return 1;
    q = (insn & (1 << 6)) != 0;
    u = (insn >> 24) & 1;
    VFP_DREG_D(rd, insn);
    VFP_DREG_N(rn, insn);
    VFP_DREG_M(rm, insn);
    size = (insn >> 20) & 3;
    if ((insn & (1 << 23)) == 0) {
        /* Three register same length.  */
        op = ((insn >> 7) & 0x1e) | ((insn >> 4) & 1);
4470 4471 4472 4473
        /* Catch invalid op and bad size combinations: UNDEF */
        if ((neon_3r_sizes[op] & (1 << size)) == 0) {
            return 1;
        }
4474 4475 4476 4477 4478 4479
        /* All insns of this form UNDEF for either this condition or the
         * superset of cases "Q==1"; we catch the latter later.
         */
        if (q && ((rd | rn | rm) & 1)) {
            return 1;
        }
4480 4481
        if (size == 3 && op != NEON_3R_LOGIC) {
            /* 64-bit element instructions. */
P
pbrook 已提交
4482
            for (pass = 0; pass < (q ? 2 : 1); pass++) {
P
pbrook 已提交
4483 4484
                neon_load_reg64(cpu_V0, rn + pass);
                neon_load_reg64(cpu_V1, rm + pass);
P
pbrook 已提交
4485
                switch (op) {
4486
                case NEON_3R_VQADD:
P
pbrook 已提交
4487
                    if (u) {
4488 4489
                        gen_helper_neon_qadd_u64(cpu_V0, cpu_env,
                                                 cpu_V0, cpu_V1);
B
bellard 已提交
4490
                    } else {
4491 4492
                        gen_helper_neon_qadd_s64(cpu_V0, cpu_env,
                                                 cpu_V0, cpu_V1);
B
bellard 已提交
4493
                    }
P
pbrook 已提交
4494
                    break;
4495
                case NEON_3R_VQSUB:
P
pbrook 已提交
4496
                    if (u) {
4497 4498
                        gen_helper_neon_qsub_u64(cpu_V0, cpu_env,
                                                 cpu_V0, cpu_V1);
P
pbrook 已提交
4499
                    } else {
4500 4501
                        gen_helper_neon_qsub_s64(cpu_V0, cpu_env,
                                                 cpu_V0, cpu_V1);
P
pbrook 已提交
4502 4503
                    }
                    break;
4504
                case NEON_3R_VSHL:
P
pbrook 已提交
4505 4506 4507 4508 4509 4510
                    if (u) {
                        gen_helper_neon_shl_u64(cpu_V0, cpu_V1, cpu_V0);
                    } else {
                        gen_helper_neon_shl_s64(cpu_V0, cpu_V1, cpu_V0);
                    }
                    break;
4511
                case NEON_3R_VQSHL:
P
pbrook 已提交
4512
                    if (u) {
4513 4514
                        gen_helper_neon_qshl_u64(cpu_V0, cpu_env,
                                                 cpu_V1, cpu_V0);
P
pbrook 已提交
4515
                    } else {
4516 4517
                        gen_helper_neon_qshl_s64(cpu_V0, cpu_env,
                                                 cpu_V1, cpu_V0);
P
pbrook 已提交
4518 4519
                    }
                    break;
4520
                case NEON_3R_VRSHL:
P
pbrook 已提交
4521 4522
                    if (u) {
                        gen_helper_neon_rshl_u64(cpu_V0, cpu_V1, cpu_V0);
B
bellard 已提交
4523
                    } else {
P
pbrook 已提交
4524 4525 4526
                        gen_helper_neon_rshl_s64(cpu_V0, cpu_V1, cpu_V0);
                    }
                    break;
4527
                case NEON_3R_VQRSHL:
P
pbrook 已提交
4528
                    if (u) {
4529 4530
                        gen_helper_neon_qrshl_u64(cpu_V0, cpu_env,
                                                  cpu_V1, cpu_V0);
P
pbrook 已提交
4531
                    } else {
4532 4533
                        gen_helper_neon_qrshl_s64(cpu_V0, cpu_env,
                                                  cpu_V1, cpu_V0);
B
bellard 已提交
4534
                    }
P
pbrook 已提交
4535
                    break;
4536
                case NEON_3R_VADD_VSUB:
P
pbrook 已提交
4537
                    if (u) {
P
pbrook 已提交
4538
                        tcg_gen_sub_i64(CPU_V001);
P
pbrook 已提交
4539
                    } else {
P
pbrook 已提交
4540
                        tcg_gen_add_i64(CPU_V001);
P
pbrook 已提交
4541 4542 4543 4544
                    }
                    break;
                default:
                    abort();
B
bellard 已提交
4545
                }
P
pbrook 已提交
4546
                neon_store_reg64(cpu_V0, rd + pass);
B
bellard 已提交
4547
            }
P
pbrook 已提交
4548
            return 0;
B
bellard 已提交
4549
        }
4550
        pairwise = 0;
P
pbrook 已提交
4551
        switch (op) {
4552 4553 4554 4555
        case NEON_3R_VSHL:
        case NEON_3R_VQSHL:
        case NEON_3R_VRSHL:
        case NEON_3R_VQRSHL:
P
pbrook 已提交
4556
            {
P
pbrook 已提交
4557 4558 4559
                int rtmp;
                /* Shift instruction operands are reversed.  */
                rtmp = rn;
P
pbrook 已提交
4560
                rn = rm;
P
pbrook 已提交
4561
                rm = rtmp;
P
pbrook 已提交
4562
            }
B
bellard 已提交
4563
            break;
4564 4565 4566 4567 4568
        case NEON_3R_VPADD:
            if (u) {
                return 1;
            }
            /* Fall through */
4569 4570
        case NEON_3R_VPMAX:
        case NEON_3R_VPMIN:
P
pbrook 已提交
4571
            pairwise = 1;
B
bellard 已提交
4572
            break;
4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593
        case NEON_3R_FLOAT_ARITH:
            pairwise = (u && size < 2); /* if VPADD (float) */
            break;
        case NEON_3R_FLOAT_MINMAX:
            pairwise = u; /* if VPMIN/VPMAX (float) */
            break;
        case NEON_3R_FLOAT_CMP:
            if (!u && size) {
                /* no encoding for U=0 C=1x */
                return 1;
            }
            break;
        case NEON_3R_FLOAT_ACMP:
            if (!u) {
                return 1;
            }
            break;
        case NEON_3R_VRECPS_VRSQRTS:
            if (u) {
                return 1;
            }
B
bellard 已提交
4594
            break;
4595 4596 4597 4598 4599
        case NEON_3R_VMUL:
            if (u && (size != 0)) {
                /* UNDEF on invalid size for polynomial subcase */
                return 1;
            }
B
bellard 已提交
4600
            break;
4601 4602 4603 4604 4605
        case NEON_3R_VFM:
            if (!arm_feature(env, ARM_FEATURE_VFP4) || u) {
                return 1;
            }
            break;
P
pbrook 已提交
4606
        default:
B
bellard 已提交
4607
            break;
P
pbrook 已提交
4608
        }
4609

4610 4611 4612 4613 4614
        if (pairwise && q) {
            /* All the pairwise insns UNDEF if Q is set */
            return 1;
        }

P
pbrook 已提交
4615 4616 4617 4618
        for (pass = 0; pass < (q ? 4 : 2); pass++) {

        if (pairwise) {
            /* Pairwise.  */
4619 4620 4621
            if (pass < 1) {
                tmp = neon_load_reg(rn, 0);
                tmp2 = neon_load_reg(rn, 1);
P
pbrook 已提交
4622
            } else {
4623 4624
                tmp = neon_load_reg(rm, 0);
                tmp2 = neon_load_reg(rm, 1);
P
pbrook 已提交
4625 4626 4627
            }
        } else {
            /* Elementwise.  */
4628 4629
            tmp = neon_load_reg(rn, pass);
            tmp2 = neon_load_reg(rm, pass);
P
pbrook 已提交
4630 4631
        }
        switch (op) {
4632
        case NEON_3R_VHADD:
P
pbrook 已提交
4633 4634
            GEN_NEON_INTEGER_OP(hadd);
            break;
4635
        case NEON_3R_VQADD:
4636
            GEN_NEON_INTEGER_OP_ENV(qadd);
B
bellard 已提交
4637
            break;
4638
        case NEON_3R_VRHADD:
P
pbrook 已提交
4639
            GEN_NEON_INTEGER_OP(rhadd);
B
bellard 已提交
4640
            break;
4641
        case NEON_3R_LOGIC: /* Logic ops.  */
P
pbrook 已提交
4642 4643
            switch ((u << 2) | size) {
            case 0: /* VAND */
4644
                tcg_gen_and_i32(tmp, tmp, tmp2);
P
pbrook 已提交
4645 4646
                break;
            case 1: /* BIC */
4647
                tcg_gen_andc_i32(tmp, tmp, tmp2);
P
pbrook 已提交
4648 4649
                break;
            case 2: /* VORR */
4650
                tcg_gen_or_i32(tmp, tmp, tmp2);
P
pbrook 已提交
4651 4652
                break;
            case 3: /* VORN */
4653
                tcg_gen_orc_i32(tmp, tmp, tmp2);
P
pbrook 已提交
4654 4655
                break;
            case 4: /* VEOR */
4656
                tcg_gen_xor_i32(tmp, tmp, tmp2);
P
pbrook 已提交
4657 4658
                break;
            case 5: /* VBSL */
4659 4660
                tmp3 = neon_load_reg(rd, pass);
                gen_neon_bsl(tmp, tmp, tmp2, tmp3);
4661
                tcg_temp_free_i32(tmp3);
P
pbrook 已提交
4662 4663
                break;
            case 6: /* VBIT */
4664 4665
                tmp3 = neon_load_reg(rd, pass);
                gen_neon_bsl(tmp, tmp, tmp3, tmp2);
4666
                tcg_temp_free_i32(tmp3);
P
pbrook 已提交
4667 4668
                break;
            case 7: /* VBIF */
4669 4670
                tmp3 = neon_load_reg(rd, pass);
                gen_neon_bsl(tmp, tmp3, tmp, tmp2);
4671
                tcg_temp_free_i32(tmp3);
P
pbrook 已提交
4672
                break;
B
bellard 已提交
4673 4674
            }
            break;
4675
        case NEON_3R_VHSUB:
P
pbrook 已提交
4676 4677
            GEN_NEON_INTEGER_OP(hsub);
            break;
4678
        case NEON_3R_VQSUB:
4679
            GEN_NEON_INTEGER_OP_ENV(qsub);
B
bellard 已提交
4680
            break;
4681
        case NEON_3R_VCGT:
P
pbrook 已提交
4682 4683
            GEN_NEON_INTEGER_OP(cgt);
            break;
4684
        case NEON_3R_VCGE:
P
pbrook 已提交
4685 4686
            GEN_NEON_INTEGER_OP(cge);
            break;
4687
        case NEON_3R_VSHL:
P
pbrook 已提交
4688
            GEN_NEON_INTEGER_OP(shl);
B
bellard 已提交
4689
            break;
4690
        case NEON_3R_VQSHL:
4691
            GEN_NEON_INTEGER_OP_ENV(qshl);
B
bellard 已提交
4692
            break;
4693
        case NEON_3R_VRSHL:
P
pbrook 已提交
4694
            GEN_NEON_INTEGER_OP(rshl);
B
bellard 已提交
4695
            break;
4696
        case NEON_3R_VQRSHL:
4697
            GEN_NEON_INTEGER_OP_ENV(qrshl);
P
pbrook 已提交
4698
            break;
4699
        case NEON_3R_VMAX:
P
pbrook 已提交
4700 4701
            GEN_NEON_INTEGER_OP(max);
            break;
4702
        case NEON_3R_VMIN:
P
pbrook 已提交
4703 4704
            GEN_NEON_INTEGER_OP(min);
            break;
4705
        case NEON_3R_VABD:
P
pbrook 已提交
4706 4707
            GEN_NEON_INTEGER_OP(abd);
            break;
4708
        case NEON_3R_VABA:
P
pbrook 已提交
4709
            GEN_NEON_INTEGER_OP(abd);
4710
            tcg_temp_free_i32(tmp2);
4711 4712
            tmp2 = neon_load_reg(rd, pass);
            gen_neon_add(size, tmp, tmp2);
P
pbrook 已提交
4713
            break;
4714
        case NEON_3R_VADD_VSUB:
P
pbrook 已提交
4715
            if (!u) { /* VADD */
4716
                gen_neon_add(size, tmp, tmp2);
P
pbrook 已提交
4717 4718
            } else { /* VSUB */
                switch (size) {
4719 4720 4721
                case 0: gen_helper_neon_sub_u8(tmp, tmp, tmp2); break;
                case 1: gen_helper_neon_sub_u16(tmp, tmp, tmp2); break;
                case 2: tcg_gen_sub_i32(tmp, tmp, tmp2); break;
4722
                default: abort();
P
pbrook 已提交
4723 4724 4725
                }
            }
            break;
4726
        case NEON_3R_VTST_VCEQ:
P
pbrook 已提交
4727 4728
            if (!u) { /* VTST */
                switch (size) {
4729 4730 4731
                case 0: gen_helper_neon_tst_u8(tmp, tmp, tmp2); break;
                case 1: gen_helper_neon_tst_u16(tmp, tmp, tmp2); break;
                case 2: gen_helper_neon_tst_u32(tmp, tmp, tmp2); break;
4732
                default: abort();
P
pbrook 已提交
4733 4734 4735
                }
            } else { /* VCEQ */
                switch (size) {
4736 4737 4738
                case 0: gen_helper_neon_ceq_u8(tmp, tmp, tmp2); break;
                case 1: gen_helper_neon_ceq_u16(tmp, tmp, tmp2); break;
                case 2: gen_helper_neon_ceq_u32(tmp, tmp, tmp2); break;
4739
                default: abort();
P
pbrook 已提交
4740 4741 4742
                }
            }
            break;
4743
        case NEON_3R_VML: /* VMLA, VMLAL, VMLS,VMLSL */
P
pbrook 已提交
4744
            switch (size) {
4745 4746 4747
            case 0: gen_helper_neon_mul_u8(tmp, tmp, tmp2); break;
            case 1: gen_helper_neon_mul_u16(tmp, tmp, tmp2); break;
            case 2: tcg_gen_mul_i32(tmp, tmp, tmp2); break;
4748
            default: abort();
P
pbrook 已提交
4749
            }
4750
            tcg_temp_free_i32(tmp2);
4751
            tmp2 = neon_load_reg(rd, pass);
P
pbrook 已提交
4752
            if (u) { /* VMLS */
4753
                gen_neon_rsb(size, tmp, tmp2);
P
pbrook 已提交
4754
            } else { /* VMLA */
4755
                gen_neon_add(size, tmp, tmp2);
P
pbrook 已提交
4756 4757
            }
            break;
4758
        case NEON_3R_VMUL:
P
pbrook 已提交
4759
            if (u) { /* polynomial */
4760
                gen_helper_neon_mul_p8(tmp, tmp, tmp2);
P
pbrook 已提交
4761 4762
            } else { /* Integer */
                switch (size) {
4763 4764 4765
                case 0: gen_helper_neon_mul_u8(tmp, tmp, tmp2); break;
                case 1: gen_helper_neon_mul_u16(tmp, tmp, tmp2); break;
                case 2: tcg_gen_mul_i32(tmp, tmp, tmp2); break;
4766
                default: abort();
P
pbrook 已提交
4767 4768 4769
                }
            }
            break;
4770
        case NEON_3R_VPMAX:
P
pbrook 已提交
4771 4772
            GEN_NEON_INTEGER_OP(pmax);
            break;
4773
        case NEON_3R_VPMIN:
P
pbrook 已提交
4774 4775
            GEN_NEON_INTEGER_OP(pmin);
            break;
4776
        case NEON_3R_VQDMULH_VQRDMULH: /* Multiply high.  */
P
pbrook 已提交
4777 4778
            if (!u) { /* VQDMULH */
                switch (size) {
4779 4780 4781 4782 4783 4784
                case 1:
                    gen_helper_neon_qdmulh_s16(tmp, cpu_env, tmp, tmp2);
                    break;
                case 2:
                    gen_helper_neon_qdmulh_s32(tmp, cpu_env, tmp, tmp2);
                    break;
4785
                default: abort();
P
pbrook 已提交
4786
                }
4787
            } else { /* VQRDMULH */
P
pbrook 已提交
4788
                switch (size) {
4789 4790 4791 4792 4793 4794
                case 1:
                    gen_helper_neon_qrdmulh_s16(tmp, cpu_env, tmp, tmp2);
                    break;
                case 2:
                    gen_helper_neon_qrdmulh_s32(tmp, cpu_env, tmp, tmp2);
                    break;
4795
                default: abort();
P
pbrook 已提交
4796 4797 4798
                }
            }
            break;
4799
        case NEON_3R_VPADD:
P
pbrook 已提交
4800
            switch (size) {
4801 4802 4803
            case 0: gen_helper_neon_padd_u8(tmp, tmp, tmp2); break;
            case 1: gen_helper_neon_padd_u16(tmp, tmp, tmp2); break;
            case 2: tcg_gen_add_i32(tmp, tmp, tmp2); break;
4804
            default: abort();
P
pbrook 已提交
4805 4806
            }
            break;
4807
        case NEON_3R_FLOAT_ARITH: /* Floating point arithmetic. */
4808 4809
        {
            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
P
pbrook 已提交
4810 4811
            switch ((u << 2) | size) {
            case 0: /* VADD */
4812 4813
            case 4: /* VPADD */
                gen_helper_vfp_adds(tmp, tmp, tmp2, fpstatus);
P
pbrook 已提交
4814 4815
                break;
            case 2: /* VSUB */
4816
                gen_helper_vfp_subs(tmp, tmp, tmp2, fpstatus);
P
pbrook 已提交
4817 4818
                break;
            case 6: /* VABD */
4819
                gen_helper_neon_abd_f32(tmp, tmp, tmp2, fpstatus);
P
pbrook 已提交
4820 4821
                break;
            default:
4822
                abort();
P
pbrook 已提交
4823
            }
4824
            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
4825
            break;
4826
        }
4827
        case NEON_3R_FLOAT_MULTIPLY:
4828 4829 4830
        {
            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
            gen_helper_vfp_muls(tmp, tmp, tmp2, fpstatus);
P
pbrook 已提交
4831
            if (!u) {
4832
                tcg_temp_free_i32(tmp2);
4833
                tmp2 = neon_load_reg(rd, pass);
P
pbrook 已提交
4834
                if (size == 0) {
4835
                    gen_helper_vfp_adds(tmp, tmp, tmp2, fpstatus);
P
pbrook 已提交
4836
                } else {
4837
                    gen_helper_vfp_subs(tmp, tmp2, tmp, fpstatus);
P
pbrook 已提交
4838 4839
                }
            }
4840
            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
4841
            break;
4842
        }
4843
        case NEON_3R_FLOAT_CMP:
4844 4845
        {
            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
P
pbrook 已提交
4846
            if (!u) {
4847
                gen_helper_neon_ceq_f32(tmp, tmp, tmp2, fpstatus);
B
bellard 已提交
4848
            } else {
4849 4850 4851 4852 4853
                if (size == 0) {
                    gen_helper_neon_cge_f32(tmp, tmp, tmp2, fpstatus);
                } else {
                    gen_helper_neon_cgt_f32(tmp, tmp, tmp2, fpstatus);
                }
B
bellard 已提交
4854
            }
4855
            tcg_temp_free_ptr(fpstatus);
B
bellard 已提交
4856
            break;
4857
        }
4858
        case NEON_3R_FLOAT_ACMP:
4859 4860 4861 4862 4863 4864 4865 4866
        {
            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
            if (size == 0) {
                gen_helper_neon_acge_f32(tmp, tmp, tmp2, fpstatus);
            } else {
                gen_helper_neon_acgt_f32(tmp, tmp, tmp2, fpstatus);
            }
            tcg_temp_free_ptr(fpstatus);
B
bellard 已提交
4867
            break;
4868
        }
4869
        case NEON_3R_FLOAT_MINMAX:
4870 4871 4872 4873 4874 4875 4876 4877
        {
            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
            if (size == 0) {
                gen_helper_neon_max_f32(tmp, tmp, tmp2, fpstatus);
            } else {
                gen_helper_neon_min_f32(tmp, tmp, tmp2, fpstatus);
            }
            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
4878
            break;
4879
        }
4880
        case NEON_3R_VRECPS_VRSQRTS:
P
pbrook 已提交
4881
            if (size == 0)
4882
                gen_helper_recps_f32(tmp, tmp, tmp2, cpu_env);
P
pbrook 已提交
4883
            else
4884
                gen_helper_rsqrts_f32(tmp, tmp, tmp2, cpu_env);
B
bellard 已提交
4885
            break;
4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899
        case NEON_3R_VFM:
        {
            /* VFMA, VFMS: fused multiply-add */
            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
            TCGv_i32 tmp3 = neon_load_reg(rd, pass);
            if (size) {
                /* VFMS */
                gen_helper_vfp_negs(tmp, tmp);
            }
            gen_helper_vfp_muladds(tmp, tmp, tmp2, tmp3, fpstatus);
            tcg_temp_free_i32(tmp3);
            tcg_temp_free_ptr(fpstatus);
            break;
        }
P
pbrook 已提交
4900 4901
        default:
            abort();
B
bellard 已提交
4902
        }
4903
        tcg_temp_free_i32(tmp2);
4904

P
pbrook 已提交
4905 4906 4907 4908
        /* Save the result.  For elementwise operations we can put it
           straight into the destination register.  For pairwise operations
           we have to be careful to avoid clobbering the source operands.  */
        if (pairwise && rd == rm) {
4909
            neon_store_scratch(pass, tmp);
P
pbrook 已提交
4910
        } else {
4911
            neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
4912 4913 4914 4915 4916
        }

        } /* for pass */
        if (pairwise && rd == rm) {
            for (pass = 0; pass < (q ? 4 : 2); pass++) {
4917 4918
                tmp = neon_load_scratch(pass);
                neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
4919 4920
            }
        }
P
pbrook 已提交
4921
        /* End of 3 register same size operations.  */
P
pbrook 已提交
4922 4923 4924 4925 4926
    } else if (insn & (1 << 4)) {
        if ((insn & 0x00380080) != 0) {
            /* Two registers and shift.  */
            op = (insn >> 8) & 0xf;
            if (insn & (1 << 7)) {
4927 4928 4929 4930
                /* 64-bit shift. */
                if (op > 7) {
                    return 1;
                }
P
pbrook 已提交
4931 4932 4933 4934 4935 4936 4937
                size = 3;
            } else {
                size = 2;
                while ((insn & (1 << (size + 19))) == 0)
                    size--;
            }
            shift = (insn >> 16) & ((1 << (3 + size)) - 1);
4938
            /* To avoid excessive duplication of ops we implement shift
P
pbrook 已提交
4939 4940 4941 4942
               by immediate using the variable shift operations.  */
            if (op < 8) {
                /* Shift by immediate:
                   VSHR, VSRA, VRSHR, VRSRA, VSRI, VSHL, VQSHL, VQSHLU.  */
4943 4944 4945 4946 4947 4948
                if (q && ((rd | rm) & 1)) {
                    return 1;
                }
                if (!u && (op == 4 || op == 6)) {
                    return 1;
                }
P
pbrook 已提交
4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976
                /* Right shifts are encoded as N - shift, where N is the
                   element size in bits.  */
                if (op <= 4)
                    shift = shift - (1 << (size + 3));
                if (size == 3) {
                    count = q + 1;
                } else {
                    count = q ? 4: 2;
                }
                switch (size) {
                case 0:
                    imm = (uint8_t) shift;
                    imm |= imm << 8;
                    imm |= imm << 16;
                    break;
                case 1:
                    imm = (uint16_t) shift;
                    imm |= imm << 16;
                    break;
                case 2:
                case 3:
                    imm = shift;
                    break;
                default:
                    abort();
                }

                for (pass = 0; pass < count; pass++) {
P
pbrook 已提交
4977 4978 4979 4980 4981 4982 4983 4984
                    if (size == 3) {
                        neon_load_reg64(cpu_V0, rm + pass);
                        tcg_gen_movi_i64(cpu_V1, imm);
                        switch (op) {
                        case 0:  /* VSHR */
                        case 1:  /* VSRA */
                            if (u)
                                gen_helper_neon_shl_u64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4985
                            else
P
pbrook 已提交
4986
                                gen_helper_neon_shl_s64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4987
                            break;
P
pbrook 已提交
4988 4989 4990 4991
                        case 2: /* VRSHR */
                        case 3: /* VRSRA */
                            if (u)
                                gen_helper_neon_rshl_u64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4992
                            else
P
pbrook 已提交
4993
                                gen_helper_neon_rshl_s64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4994
                            break;
P
pbrook 已提交
4995 4996 4997 4998
                        case 4: /* VSRI */
                        case 5: /* VSHL, VSLI */
                            gen_helper_neon_shl_u64(cpu_V0, cpu_V0, cpu_V1);
                            break;
4999
                        case 6: /* VQSHLU */
5000 5001
                            gen_helper_neon_qshlu_s64(cpu_V0, cpu_env,
                                                      cpu_V0, cpu_V1);
P
pbrook 已提交
5002
                            break;
5003 5004
                        case 7: /* VQSHL */
                            if (u) {
5005
                                gen_helper_neon_qshl_u64(cpu_V0, cpu_env,
5006 5007
                                                         cpu_V0, cpu_V1);
                            } else {
5008
                                gen_helper_neon_qshl_s64(cpu_V0, cpu_env,
5009 5010
                                                         cpu_V0, cpu_V1);
                            }
P
pbrook 已提交
5011 5012
                            break;
                        }
P
pbrook 已提交
5013 5014
                        if (op == 1 || op == 3) {
                            /* Accumulate.  */
5015
                            neon_load_reg64(cpu_V1, rd + pass);
P
pbrook 已提交
5016 5017 5018
                            tcg_gen_add_i64(cpu_V0, cpu_V0, cpu_V1);
                        } else if (op == 4 || (op == 5 && u)) {
                            /* Insert */
5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031
                            neon_load_reg64(cpu_V1, rd + pass);
                            uint64_t mask;
                            if (shift < -63 || shift > 63) {
                                mask = 0;
                            } else {
                                if (op == 4) {
                                    mask = 0xffffffffffffffffull >> -shift;
                                } else {
                                    mask = 0xffffffffffffffffull << shift;
                                }
                            }
                            tcg_gen_andi_i64(cpu_V1, cpu_V1, ~mask);
                            tcg_gen_or_i64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
5032 5033 5034 5035
                        }
                        neon_store_reg64(cpu_V0, rd + pass);
                    } else { /* size < 3 */
                        /* Operands in T0 and T1.  */
5036
                        tmp = neon_load_reg(rm, pass);
5037
                        tmp2 = tcg_temp_new_i32();
5038
                        tcg_gen_movi_i32(tmp2, imm);
P
pbrook 已提交
5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050
                        switch (op) {
                        case 0:  /* VSHR */
                        case 1:  /* VSRA */
                            GEN_NEON_INTEGER_OP(shl);
                            break;
                        case 2: /* VRSHR */
                        case 3: /* VRSRA */
                            GEN_NEON_INTEGER_OP(rshl);
                            break;
                        case 4: /* VSRI */
                        case 5: /* VSHL, VSLI */
                            switch (size) {
5051 5052 5053
                            case 0: gen_helper_neon_shl_u8(tmp, tmp, tmp2); break;
                            case 1: gen_helper_neon_shl_u16(tmp, tmp, tmp2); break;
                            case 2: gen_helper_neon_shl_u32(tmp, tmp, tmp2); break;
5054
                            default: abort();
P
pbrook 已提交
5055 5056
                            }
                            break;
5057
                        case 6: /* VQSHLU */
P
pbrook 已提交
5058
                            switch (size) {
5059
                            case 0:
5060 5061
                                gen_helper_neon_qshlu_s8(tmp, cpu_env,
                                                         tmp, tmp2);
5062 5063
                                break;
                            case 1:
5064 5065
                                gen_helper_neon_qshlu_s16(tmp, cpu_env,
                                                          tmp, tmp2);
5066 5067
                                break;
                            case 2:
5068 5069
                                gen_helper_neon_qshlu_s32(tmp, cpu_env,
                                                          tmp, tmp2);
5070 5071
                                break;
                            default:
5072
                                abort();
P
pbrook 已提交
5073 5074
                            }
                            break;
5075
                        case 7: /* VQSHL */
5076
                            GEN_NEON_INTEGER_OP_ENV(qshl);
5077
                            break;
P
pbrook 已提交
5078
                        }
5079
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
5080 5081 5082

                        if (op == 1 || op == 3) {
                            /* Accumulate.  */
5083
                            tmp2 = neon_load_reg(rd, pass);
5084
                            gen_neon_add(size, tmp, tmp2);
5085
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
5086 5087 5088 5089 5090
                        } else if (op == 4 || (op == 5 && u)) {
                            /* Insert */
                            switch (size) {
                            case 0:
                                if (op == 4)
5091
                                    mask = 0xff >> -shift;
P
pbrook 已提交
5092
                                else
5093 5094 5095
                                    mask = (uint8_t)(0xff << shift);
                                mask |= mask << 8;
                                mask |= mask << 16;
P
pbrook 已提交
5096 5097 5098
                                break;
                            case 1:
                                if (op == 4)
5099
                                    mask = 0xffff >> -shift;
P
pbrook 已提交
5100
                                else
5101 5102
                                    mask = (uint16_t)(0xffff << shift);
                                mask |= mask << 16;
P
pbrook 已提交
5103 5104
                                break;
                            case 2:
5105 5106 5107 5108 5109 5110 5111 5112
                                if (shift < -31 || shift > 31) {
                                    mask = 0;
                                } else {
                                    if (op == 4)
                                        mask = 0xffffffffu >> -shift;
                                    else
                                        mask = 0xffffffffu << shift;
                                }
P
pbrook 已提交
5113 5114 5115 5116
                                break;
                            default:
                                abort();
                            }
5117
                            tmp2 = neon_load_reg(rd, pass);
5118 5119
                            tcg_gen_andi_i32(tmp, tmp, mask);
                            tcg_gen_andi_i32(tmp2, tmp2, ~mask);
5120
                            tcg_gen_or_i32(tmp, tmp, tmp2);
5121
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
5122
                        }
5123
                        neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
5124 5125 5126
                    }
                } /* for pass */
            } else if (op < 10) {
P
pbrook 已提交
5127
                /* Shift by immediate and narrow:
P
pbrook 已提交
5128
                   VSHRN, VRSHRN, VQSHRN, VQRSHRN.  */
5129
                int input_unsigned = (op == 8) ? !u : u;
5130 5131 5132
                if (rm & 1) {
                    return 1;
                }
P
pbrook 已提交
5133 5134
                shift = shift - (1 << (size + 3));
                size++;
5135
                if (size == 3) {
P
pbrook 已提交
5136
                    tmp64 = tcg_const_i64(shift);
5137 5138 5139 5140 5141 5142 5143 5144 5145
                    neon_load_reg64(cpu_V0, rm);
                    neon_load_reg64(cpu_V1, rm + 1);
                    for (pass = 0; pass < 2; pass++) {
                        TCGv_i64 in;
                        if (pass == 0) {
                            in = cpu_V0;
                        } else {
                            in = cpu_V1;
                        }
P
pbrook 已提交
5146
                        if (q) {
5147
                            if (input_unsigned) {
5148
                                gen_helper_neon_rshl_u64(cpu_V0, in, tmp64);
5149
                            } else {
5150
                                gen_helper_neon_rshl_s64(cpu_V0, in, tmp64);
5151
                            }
P
pbrook 已提交
5152
                        } else {
5153
                            if (input_unsigned) {
5154
                                gen_helper_neon_shl_u64(cpu_V0, in, tmp64);
5155
                            } else {
5156
                                gen_helper_neon_shl_s64(cpu_V0, in, tmp64);
5157
                            }
P
pbrook 已提交
5158
                        }
5159
                        tmp = tcg_temp_new_i32();
5160 5161 5162 5163 5164 5165 5166 5167
                        gen_neon_narrow_op(op == 8, u, size - 1, tmp, cpu_V0);
                        neon_store_reg(rd, pass, tmp);
                    } /* for pass */
                    tcg_temp_free_i64(tmp64);
                } else {
                    if (size == 1) {
                        imm = (uint16_t)shift;
                        imm |= imm << 16;
B
bellard 已提交
5168
                    } else {
5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180
                        /* size == 2 */
                        imm = (uint32_t)shift;
                    }
                    tmp2 = tcg_const_i32(imm);
                    tmp4 = neon_load_reg(rm + 1, 0);
                    tmp5 = neon_load_reg(rm + 1, 1);
                    for (pass = 0; pass < 2; pass++) {
                        if (pass == 0) {
                            tmp = neon_load_reg(rm, 0);
                        } else {
                            tmp = tmp4;
                        }
5181 5182
                        gen_neon_shift_narrow(size, tmp, tmp2, q,
                                              input_unsigned);
5183 5184 5185 5186 5187
                        if (pass == 0) {
                            tmp3 = neon_load_reg(rm, 1);
                        } else {
                            tmp3 = tmp5;
                        }
5188 5189
                        gen_neon_shift_narrow(size, tmp3, tmp2, q,
                                              input_unsigned);
P
pbrook 已提交
5190
                        tcg_gen_concat_i32_i64(cpu_V0, tmp, tmp3);
5191 5192 5193
                        tcg_temp_free_i32(tmp);
                        tcg_temp_free_i32(tmp3);
                        tmp = tcg_temp_new_i32();
5194 5195 5196
                        gen_neon_narrow_op(op == 8, u, size - 1, tmp, cpu_V0);
                        neon_store_reg(rd, pass, tmp);
                    } /* for pass */
5197
                    tcg_temp_free_i32(tmp2);
5198
                }
P
pbrook 已提交
5199
            } else if (op == 10) {
5200 5201
                /* VSHLL, VMOVL */
                if (q || (rd & 1)) {
P
pbrook 已提交
5202
                    return 1;
5203
                }
P
pbrook 已提交
5204 5205
                tmp = neon_load_reg(rm, 0);
                tmp2 = neon_load_reg(rm, 1);
P
pbrook 已提交
5206
                for (pass = 0; pass < 2; pass++) {
P
pbrook 已提交
5207 5208 5209 5210
                    if (pass == 1)
                        tmp = tmp2;

                    gen_neon_widen(cpu_V0, tmp, size, u);
P
pbrook 已提交
5211 5212 5213

                    if (shift != 0) {
                        /* The shift is less than the width of the source
P
pbrook 已提交
5214 5215
                           type, so we can just shift the whole register.  */
                        tcg_gen_shli_i64(cpu_V0, cpu_V0, shift);
5216 5217 5218 5219 5220
                        /* Widen the result of shift: we need to clear
                         * the potential overflow bits resulting from
                         * left bits of the narrow input appearing as
                         * right bits of left the neighbour narrow
                         * input.  */
P
pbrook 已提交
5221 5222 5223 5224 5225
                        if (size < 2 || !u) {
                            uint64_t imm64;
                            if (size == 0) {
                                imm = (0xffu >> (8 - shift));
                                imm |= imm << 16;
5226
                            } else if (size == 1) {
P
pbrook 已提交
5227
                                imm = 0xffff >> (16 - shift);
5228 5229 5230 5231 5232 5233 5234 5235
                            } else {
                                /* size == 2 */
                                imm = 0xffffffff >> (32 - shift);
                            }
                            if (size < 2) {
                                imm64 = imm | (((uint64_t)imm) << 32);
                            } else {
                                imm64 = imm;
P
pbrook 已提交
5236
                            }
5237
                            tcg_gen_andi_i64(cpu_V0, cpu_V0, ~imm64);
P
pbrook 已提交
5238 5239
                        }
                    }
P
pbrook 已提交
5240
                    neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5241
                }
5242
            } else if (op >= 14) {
P
pbrook 已提交
5243
                /* VCVT fixed-point.  */
5244 5245 5246
                if (!(insn & (1 << 21)) || (q && ((rd | rm) & 1))) {
                    return 1;
                }
5247 5248 5249 5250
                /* We have already masked out the must-be-1 top bit of imm6,
                 * hence this 32-shift where the ARM ARM has 64-imm6.
                 */
                shift = 32 - shift;
P
pbrook 已提交
5251
                for (pass = 0; pass < (q ? 4 : 2); pass++) {
P
pbrook 已提交
5252
                    tcg_gen_ld_f32(cpu_F0s, cpu_env, neon_reg_offset(rm, pass));
5253
                    if (!(op & 1)) {
P
pbrook 已提交
5254
                        if (u)
5255
                            gen_vfp_ulto(0, shift, 1);
P
pbrook 已提交
5256
                        else
5257
                            gen_vfp_slto(0, shift, 1);
P
pbrook 已提交
5258 5259
                    } else {
                        if (u)
5260
                            gen_vfp_toul(0, shift, 1);
P
pbrook 已提交
5261
                        else
5262
                            gen_vfp_tosl(0, shift, 1);
B
bellard 已提交
5263
                    }
P
pbrook 已提交
5264
                    tcg_gen_st_f32(cpu_F0s, cpu_env, neon_reg_offset(rd, pass));
B
bellard 已提交
5265 5266
                }
            } else {
P
pbrook 已提交
5267 5268 5269 5270
                return 1;
            }
        } else { /* (insn & 0x00380080) == 0 */
            int invert;
5271 5272 5273
            if (q && (rd & 1)) {
                return 1;
            }
P
pbrook 已提交
5274 5275 5276 5277 5278

            op = (insn >> 8) & 0xf;
            /* One register and immediate.  */
            imm = (u << 7) | ((insn >> 12) & 0x70) | (insn & 0xf);
            invert = (insn & (1 << 5)) != 0;
5279 5280 5281 5282
            /* Note that op = 2,3,4,5,6,7,10,11,12,13 imm=0 is UNPREDICTABLE.
             * We choose to not special-case this and will behave as if a
             * valid constant encoding of 0 had been given.
             */
P
pbrook 已提交
5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302
            switch (op) {
            case 0: case 1:
                /* no-op */
                break;
            case 2: case 3:
                imm <<= 8;
                break;
            case 4: case 5:
                imm <<= 16;
                break;
            case 6: case 7:
                imm <<= 24;
                break;
            case 8: case 9:
                imm |= imm << 16;
                break;
            case 10: case 11:
                imm = (imm << 8) | (imm << 24);
                break;
            case 12:
5303
                imm = (imm << 8) | 0xff;
P
pbrook 已提交
5304 5305 5306 5307 5308 5309 5310 5311 5312 5313
                break;
            case 13:
                imm = (imm << 16) | 0xffff;
                break;
            case 14:
                imm |= (imm << 8) | (imm << 16) | (imm << 24);
                if (invert)
                    imm = ~imm;
                break;
            case 15:
5314 5315 5316
                if (invert) {
                    return 1;
                }
P
pbrook 已提交
5317 5318 5319 5320 5321 5322 5323 5324 5325
                imm = ((imm & 0x80) << 24) | ((imm & 0x3f) << 19)
                      | ((imm & 0x40) ? (0x1f << 25) : (1 << 30));
                break;
            }
            if (invert)
                imm = ~imm;

            for (pass = 0; pass < (q ? 4 : 2); pass++) {
                if (op & 1 && op < 12) {
P
pbrook 已提交
5326
                    tmp = neon_load_reg(rd, pass);
P
pbrook 已提交
5327 5328 5329
                    if (invert) {
                        /* The immediate value has already been inverted, so
                           BIC becomes AND.  */
P
pbrook 已提交
5330
                        tcg_gen_andi_i32(tmp, tmp, imm);
P
pbrook 已提交
5331
                    } else {
P
pbrook 已提交
5332
                        tcg_gen_ori_i32(tmp, tmp, imm);
P
pbrook 已提交
5333 5334
                    }
                } else {
P
pbrook 已提交
5335
                    /* VMOV, VMVN.  */
5336
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
5337
                    if (op == 14 && invert) {
5338
                        int n;
P
pbrook 已提交
5339 5340
                        uint32_t val;
                        val = 0;
P
pbrook 已提交
5341 5342
                        for (n = 0; n < 4; n++) {
                            if (imm & (1 << (n + (pass & 1) * 4)))
P
pbrook 已提交
5343
                                val |= 0xff << (n * 8);
P
pbrook 已提交
5344
                        }
P
pbrook 已提交
5345 5346 5347
                        tcg_gen_movi_i32(tmp, val);
                    } else {
                        tcg_gen_movi_i32(tmp, imm);
P
pbrook 已提交
5348 5349
                    }
                }
P
pbrook 已提交
5350
                neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
5351 5352
            }
        }
P
pbrook 已提交
5353
    } else { /* (insn & 0x00800010 == 0x00800000) */
P
pbrook 已提交
5354 5355 5356 5357 5358 5359 5360
        if (size != 3) {
            op = (insn >> 8) & 0xf;
            if ((insn & (1 << 6)) == 0) {
                /* Three registers of different lengths.  */
                int src1_wide;
                int src2_wide;
                int prewiden;
5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384
                /* undefreq: bit 0 : UNDEF if size != 0
                 *           bit 1 : UNDEF if size == 0
                 *           bit 2 : UNDEF if U == 1
                 * Note that [1:0] set implies 'always UNDEF'
                 */
                int undefreq;
                /* prewiden, src1_wide, src2_wide, undefreq */
                static const int neon_3reg_wide[16][4] = {
                    {1, 0, 0, 0}, /* VADDL */
                    {1, 1, 0, 0}, /* VADDW */
                    {1, 0, 0, 0}, /* VSUBL */
                    {1, 1, 0, 0}, /* VSUBW */
                    {0, 1, 1, 0}, /* VADDHN */
                    {0, 0, 0, 0}, /* VABAL */
                    {0, 1, 1, 0}, /* VSUBHN */
                    {0, 0, 0, 0}, /* VABDL */
                    {0, 0, 0, 0}, /* VMLAL */
                    {0, 0, 0, 6}, /* VQDMLAL */
                    {0, 0, 0, 0}, /* VMLSL */
                    {0, 0, 0, 6}, /* VQDMLSL */
                    {0, 0, 0, 0}, /* Integer VMULL */
                    {0, 0, 0, 2}, /* VQDMULL */
                    {0, 0, 0, 5}, /* Polynomial VMULL */
                    {0, 0, 0, 3}, /* Reserved: always UNDEF */
P
pbrook 已提交
5385 5386 5387 5388 5389
                };

                prewiden = neon_3reg_wide[op][0];
                src1_wide = neon_3reg_wide[op][1];
                src2_wide = neon_3reg_wide[op][2];
5390
                undefreq = neon_3reg_wide[op][3];
P
pbrook 已提交
5391

5392 5393 5394 5395 5396 5397 5398 5399
                if (((undefreq & 1) && (size != 0)) ||
                    ((undefreq & 2) && (size == 0)) ||
                    ((undefreq & 4) && u)) {
                    return 1;
                }
                if ((src1_wide && (rn & 1)) ||
                    (src2_wide && (rm & 1)) ||
                    (!src2_wide && (rd & 1))) {
P
pbrook 已提交
5400
                    return 1;
5401
                }
P
pbrook 已提交
5402

P
pbrook 已提交
5403 5404 5405
                /* Avoid overlapping operands.  Wide source operands are
                   always aligned so will never overlap with wide
                   destinations in problematic ways.  */
P
pbrook 已提交
5406
                if (rd == rm && !src2_wide) {
5407 5408
                    tmp = neon_load_reg(rm, 1);
                    neon_store_scratch(2, tmp);
P
pbrook 已提交
5409
                } else if (rd == rn && !src1_wide) {
5410 5411
                    tmp = neon_load_reg(rn, 1);
                    neon_store_scratch(2, tmp);
P
pbrook 已提交
5412
                }
5413
                TCGV_UNUSED_I32(tmp3);
P
pbrook 已提交
5414
                for (pass = 0; pass < 2; pass++) {
P
pbrook 已提交
5415 5416
                    if (src1_wide) {
                        neon_load_reg64(cpu_V0, rn + pass);
5417
                        TCGV_UNUSED_I32(tmp);
P
pbrook 已提交
5418
                    } else {
P
pbrook 已提交
5419
                        if (pass == 1 && rd == rn) {
5420
                            tmp = neon_load_scratch(2);
P
pbrook 已提交
5421
                        } else {
P
pbrook 已提交
5422 5423 5424 5425
                            tmp = neon_load_reg(rn, pass);
                        }
                        if (prewiden) {
                            gen_neon_widen(cpu_V0, tmp, size, u);
P
pbrook 已提交
5426 5427
                        }
                    }
P
pbrook 已提交
5428 5429
                    if (src2_wide) {
                        neon_load_reg64(cpu_V1, rm + pass);
5430
                        TCGV_UNUSED_I32(tmp2);
P
pbrook 已提交
5431
                    } else {
P
pbrook 已提交
5432
                        if (pass == 1 && rd == rm) {
5433
                            tmp2 = neon_load_scratch(2);
P
pbrook 已提交
5434
                        } else {
P
pbrook 已提交
5435 5436 5437 5438
                            tmp2 = neon_load_reg(rm, pass);
                        }
                        if (prewiden) {
                            gen_neon_widen(cpu_V1, tmp2, size, u);
P
pbrook 已提交
5439 5440 5441 5442
                        }
                    }
                    switch (op) {
                    case 0: case 1: case 4: /* VADDL, VADDW, VADDHN, VRADDHN */
P
pbrook 已提交
5443
                        gen_neon_addl(size);
P
pbrook 已提交
5444
                        break;
5445
                    case 2: case 3: case 6: /* VSUBL, VSUBW, VSUBHN, VRSUBHN */
P
pbrook 已提交
5446
                        gen_neon_subl(size);
P
pbrook 已提交
5447 5448 5449
                        break;
                    case 5: case 7: /* VABAL, VABDL */
                        switch ((size << 1) | u) {
P
pbrook 已提交
5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467
                        case 0:
                            gen_helper_neon_abdl_s16(cpu_V0, tmp, tmp2);
                            break;
                        case 1:
                            gen_helper_neon_abdl_u16(cpu_V0, tmp, tmp2);
                            break;
                        case 2:
                            gen_helper_neon_abdl_s32(cpu_V0, tmp, tmp2);
                            break;
                        case 3:
                            gen_helper_neon_abdl_u32(cpu_V0, tmp, tmp2);
                            break;
                        case 4:
                            gen_helper_neon_abdl_s64(cpu_V0, tmp, tmp2);
                            break;
                        case 5:
                            gen_helper_neon_abdl_u64(cpu_V0, tmp, tmp2);
                            break;
P
pbrook 已提交
5468 5469
                        default: abort();
                        }
5470 5471
                        tcg_temp_free_i32(tmp2);
                        tcg_temp_free_i32(tmp);
P
pbrook 已提交
5472 5473 5474
                        break;
                    case 8: case 9: case 10: case 11: case 12: case 13:
                        /* VMLAL, VQDMLAL, VMLSL, VQDMLSL, VMULL, VQDMULL */
P
pbrook 已提交
5475
                        gen_neon_mull(cpu_V0, tmp, tmp2, size, u);
P
pbrook 已提交
5476 5477
                        break;
                    case 14: /* Polynomial VMULL */
P
Peter Maydell 已提交
5478
                        gen_helper_neon_mull_p8(cpu_V0, tmp, tmp2);
5479 5480
                        tcg_temp_free_i32(tmp2);
                        tcg_temp_free_i32(tmp);
P
Peter Maydell 已提交
5481
                        break;
5482 5483
                    default: /* 15 is RESERVED: caught earlier  */
                        abort();
P
pbrook 已提交
5484
                    }
5485 5486 5487 5488 5489
                    if (op == 13) {
                        /* VQDMULL */
                        gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
                        neon_store_reg64(cpu_V0, rd + pass);
                    } else if (op == 5 || (op >= 8 && op <= 11)) {
P
pbrook 已提交
5490
                        /* Accumulate.  */
5491
                        neon_load_reg64(cpu_V1, rd + pass);
P
pbrook 已提交
5492
                        switch (op) {
5493 5494 5495 5496
                        case 10: /* VMLSL */
                            gen_neon_negl(cpu_V0, size);
                            /* Fall through */
                        case 5: case 8: /* VABAL, VMLAL */
P
pbrook 已提交
5497
                            gen_neon_addl(size);
P
pbrook 已提交
5498 5499
                            break;
                        case 9: case 11: /* VQDMLAL, VQDMLSL */
P
pbrook 已提交
5500
                            gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
5501 5502 5503
                            if (op == 11) {
                                gen_neon_negl(cpu_V0, size);
                            }
P
pbrook 已提交
5504 5505
                            gen_neon_addl_saturate(cpu_V0, cpu_V1, size);
                            break;
P
pbrook 已提交
5506 5507 5508
                        default:
                            abort();
                        }
P
pbrook 已提交
5509
                        neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5510 5511
                    } else if (op == 4 || op == 6) {
                        /* Narrowing operation.  */
5512
                        tmp = tcg_temp_new_i32();
5513
                        if (!u) {
P
pbrook 已提交
5514
                            switch (size) {
P
pbrook 已提交
5515 5516 5517 5518 5519 5520 5521 5522 5523 5524
                            case 0:
                                gen_helper_neon_narrow_high_u8(tmp, cpu_V0);
                                break;
                            case 1:
                                gen_helper_neon_narrow_high_u16(tmp, cpu_V0);
                                break;
                            case 2:
                                tcg_gen_shri_i64(cpu_V0, cpu_V0, 32);
                                tcg_gen_trunc_i64_i32(tmp, cpu_V0);
                                break;
P
pbrook 已提交
5525 5526 5527 5528
                            default: abort();
                            }
                        } else {
                            switch (size) {
P
pbrook 已提交
5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539
                            case 0:
                                gen_helper_neon_narrow_round_high_u8(tmp, cpu_V0);
                                break;
                            case 1:
                                gen_helper_neon_narrow_round_high_u16(tmp, cpu_V0);
                                break;
                            case 2:
                                tcg_gen_addi_i64(cpu_V0, cpu_V0, 1u << 31);
                                tcg_gen_shri_i64(cpu_V0, cpu_V0, 32);
                                tcg_gen_trunc_i64_i32(tmp, cpu_V0);
                                break;
P
pbrook 已提交
5540 5541 5542
                            default: abort();
                            }
                        }
P
pbrook 已提交
5543 5544 5545 5546 5547 5548
                        if (pass == 0) {
                            tmp3 = tmp;
                        } else {
                            neon_store_reg(rd, 0, tmp3);
                            neon_store_reg(rd, 1, tmp);
                        }
P
pbrook 已提交
5549 5550
                    } else {
                        /* Write back the result.  */
P
pbrook 已提交
5551
                        neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5552 5553 5554
                    }
                }
            } else {
5555 5556 5557 5558 5559 5560 5561
                /* Two registers and a scalar. NB that for ops of this form
                 * the ARM ARM labels bit 24 as Q, but it is in our variable
                 * 'u', not 'q'.
                 */
                if (size == 0) {
                    return 1;
                }
P
pbrook 已提交
5562 5563 5564 5565
                switch (op) {
                case 1: /* Float VMLA scalar */
                case 5: /* Floating point VMLS scalar */
                case 9: /* Floating point VMUL scalar */
5566 5567 5568 5569 5570 5571 5572
                    if (size == 1) {
                        return 1;
                    }
                    /* fall through */
                case 0: /* Integer VMLA scalar */
                case 4: /* Integer VMLS scalar */
                case 8: /* Integer VMUL scalar */
P
pbrook 已提交
5573 5574
                case 12: /* VQDMULH scalar */
                case 13: /* VQRDMULH scalar */
5575 5576 5577
                    if (u && ((rd | rn) & 1)) {
                        return 1;
                    }
5578 5579
                    tmp = neon_get_scalar(size, rm);
                    neon_store_scratch(0, tmp);
P
pbrook 已提交
5580
                    for (pass = 0; pass < (u ? 4 : 2); pass++) {
5581 5582
                        tmp = neon_load_scratch(0);
                        tmp2 = neon_load_reg(rn, pass);
P
pbrook 已提交
5583 5584
                        if (op == 12) {
                            if (size == 1) {
5585
                                gen_helper_neon_qdmulh_s16(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
5586
                            } else {
5587
                                gen_helper_neon_qdmulh_s32(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
5588 5589 5590
                            }
                        } else if (op == 13) {
                            if (size == 1) {
5591
                                gen_helper_neon_qrdmulh_s16(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
5592
                            } else {
5593
                                gen_helper_neon_qrdmulh_s32(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
5594 5595
                            }
                        } else if (op & 1) {
5596 5597 5598
                            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
                            gen_helper_vfp_muls(tmp, tmp, tmp2, fpstatus);
                            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
5599 5600
                        } else {
                            switch (size) {
5601 5602 5603
                            case 0: gen_helper_neon_mul_u8(tmp, tmp, tmp2); break;
                            case 1: gen_helper_neon_mul_u16(tmp, tmp, tmp2); break;
                            case 2: tcg_gen_mul_i32(tmp, tmp, tmp2); break;
5604
                            default: abort();
P
pbrook 已提交
5605 5606
                            }
                        }
5607
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
5608 5609
                        if (op < 8) {
                            /* Accumulate.  */
5610
                            tmp2 = neon_load_reg(rd, pass);
P
pbrook 已提交
5611 5612
                            switch (op) {
                            case 0:
5613
                                gen_neon_add(size, tmp, tmp2);
P
pbrook 已提交
5614 5615
                                break;
                            case 1:
5616 5617 5618 5619
                            {
                                TCGv_ptr fpstatus = get_fpstatus_ptr(1);
                                gen_helper_vfp_adds(tmp, tmp, tmp2, fpstatus);
                                tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
5620
                                break;
5621
                            }
P
pbrook 已提交
5622
                            case 4:
5623
                                gen_neon_rsb(size, tmp, tmp2);
P
pbrook 已提交
5624 5625
                                break;
                            case 5:
5626 5627 5628 5629
                            {
                                TCGv_ptr fpstatus = get_fpstatus_ptr(1);
                                gen_helper_vfp_subs(tmp, tmp2, tmp, fpstatus);
                                tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
5630
                                break;
5631
                            }
P
pbrook 已提交
5632 5633 5634
                            default:
                                abort();
                            }
5635
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
5636
                        }
5637
                        neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
5638 5639 5640 5641 5642
                    }
                    break;
                case 3: /* VQDMLAL scalar */
                case 7: /* VQDMLSL scalar */
                case 11: /* VQDMULL scalar */
5643
                    if (u == 1) {
P
pbrook 已提交
5644
                        return 1;
5645 5646 5647 5648 5649 5650 5651 5652
                    }
                    /* fall through */
                case 2: /* VMLAL sclar */
                case 6: /* VMLSL scalar */
                case 10: /* VMULL scalar */
                    if (rd & 1) {
                        return 1;
                    }
5653
                    tmp2 = neon_get_scalar(size, rm);
5654 5655
                    /* We need a copy of tmp2 because gen_neon_mull
                     * deletes it during pass 0.  */
5656
                    tmp4 = tcg_temp_new_i32();
5657
                    tcg_gen_mov_i32(tmp4, tmp2);
5658
                    tmp3 = neon_load_reg(rn, 1);
P
pbrook 已提交
5659

P
pbrook 已提交
5660
                    for (pass = 0; pass < 2; pass++) {
P
pbrook 已提交
5661 5662
                        if (pass == 0) {
                            tmp = neon_load_reg(rn, 0);
P
pbrook 已提交
5663
                        } else {
5664
                            tmp = tmp3;
5665
                            tmp2 = tmp4;
P
pbrook 已提交
5666
                        }
P
pbrook 已提交
5667 5668 5669
                        gen_neon_mull(cpu_V0, tmp, tmp2, size, u);
                        if (op != 11) {
                            neon_load_reg64(cpu_V1, rd + pass);
P
pbrook 已提交
5670 5671
                        }
                        switch (op) {
5672 5673 5674 5675
                        case 6:
                            gen_neon_negl(cpu_V0, size);
                            /* Fall through */
                        case 2:
P
pbrook 已提交
5676
                            gen_neon_addl(size);
P
pbrook 已提交
5677 5678
                            break;
                        case 3: case 7:
P
pbrook 已提交
5679
                            gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
5680 5681 5682
                            if (op == 7) {
                                gen_neon_negl(cpu_V0, size);
                            }
P
pbrook 已提交
5683
                            gen_neon_addl_saturate(cpu_V0, cpu_V1, size);
P
pbrook 已提交
5684 5685 5686 5687 5688
                            break;
                        case 10:
                            /* no-op */
                            break;
                        case 11:
P
pbrook 已提交
5689
                            gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
P
pbrook 已提交
5690 5691 5692 5693
                            break;
                        default:
                            abort();
                        }
P
pbrook 已提交
5694
                        neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5695
                    }
5696 5697


P
pbrook 已提交
5698 5699 5700 5701 5702 5703 5704 5705 5706
                    break;
                default: /* 14 and 15 are RESERVED */
                    return 1;
                }
            }
        } else { /* size == 3 */
            if (!u) {
                /* Extract.  */
                imm = (insn >> 8) & 0xf;
P
pbrook 已提交
5707 5708 5709 5710

                if (imm > 7 && !q)
                    return 1;

5711 5712 5713 5714
                if (q && ((rd | rn | rm) & 1)) {
                    return 1;
                }

P
pbrook 已提交
5715 5716 5717 5718
                if (imm == 0) {
                    neon_load_reg64(cpu_V0, rn);
                    if (q) {
                        neon_load_reg64(cpu_V1, rn + 1);
P
pbrook 已提交
5719
                    }
P
pbrook 已提交
5720 5721 5722 5723
                } else if (imm == 8) {
                    neon_load_reg64(cpu_V0, rn + 1);
                    if (q) {
                        neon_load_reg64(cpu_V1, rm);
P
pbrook 已提交
5724
                    }
P
pbrook 已提交
5725
                } else if (q) {
P
pbrook 已提交
5726
                    tmp64 = tcg_temp_new_i64();
P
pbrook 已提交
5727 5728
                    if (imm < 8) {
                        neon_load_reg64(cpu_V0, rn);
P
pbrook 已提交
5729
                        neon_load_reg64(tmp64, rn + 1);
P
pbrook 已提交
5730 5731
                    } else {
                        neon_load_reg64(cpu_V0, rn + 1);
P
pbrook 已提交
5732
                        neon_load_reg64(tmp64, rm);
P
pbrook 已提交
5733 5734
                    }
                    tcg_gen_shri_i64(cpu_V0, cpu_V0, (imm & 7) * 8);
P
pbrook 已提交
5735
                    tcg_gen_shli_i64(cpu_V1, tmp64, 64 - ((imm & 7) * 8));
P
pbrook 已提交
5736 5737 5738
                    tcg_gen_or_i64(cpu_V0, cpu_V0, cpu_V1);
                    if (imm < 8) {
                        neon_load_reg64(cpu_V1, rm);
P
pbrook 已提交
5739
                    } else {
P
pbrook 已提交
5740 5741
                        neon_load_reg64(cpu_V1, rm + 1);
                        imm -= 8;
P
pbrook 已提交
5742
                    }
P
pbrook 已提交
5743
                    tcg_gen_shli_i64(cpu_V1, cpu_V1, 64 - (imm * 8));
P
pbrook 已提交
5744 5745
                    tcg_gen_shri_i64(tmp64, tmp64, imm * 8);
                    tcg_gen_or_i64(cpu_V1, cpu_V1, tmp64);
5746
                    tcg_temp_free_i64(tmp64);
P
pbrook 已提交
5747
                } else {
P
pbrook 已提交
5748
                    /* BUGFIX */
P
pbrook 已提交
5749
                    neon_load_reg64(cpu_V0, rn);
P
pbrook 已提交
5750
                    tcg_gen_shri_i64(cpu_V0, cpu_V0, imm * 8);
P
pbrook 已提交
5751
                    neon_load_reg64(cpu_V1, rm);
P
pbrook 已提交
5752
                    tcg_gen_shli_i64(cpu_V1, cpu_V1, 64 - (imm * 8));
P
pbrook 已提交
5753 5754 5755 5756 5757
                    tcg_gen_or_i64(cpu_V0, cpu_V0, cpu_V1);
                }
                neon_store_reg64(cpu_V0, rd);
                if (q) {
                    neon_store_reg64(cpu_V1, rd + 1);
P
pbrook 已提交
5758 5759 5760 5761 5762
                }
            } else if ((insn & (1 << 11)) == 0) {
                /* Two register misc.  */
                op = ((insn >> 12) & 0x30) | ((insn >> 7) & 0xf);
                size = (insn >> 18) & 3;
5763 5764 5765 5766
                /* UNDEF for unknown op values and bad op-size combinations */
                if ((neon_2rm_sizes[op] & (1 << size)) == 0) {
                    return 1;
                }
5767 5768 5769 5770
                if ((op != NEON_2RM_VMOVN && op != NEON_2RM_VQMOVN) &&
                    q && ((rm | rd) & 1)) {
                    return 1;
                }
P
pbrook 已提交
5771
                switch (op) {
5772
                case NEON_2RM_VREV64:
P
pbrook 已提交
5773
                    for (pass = 0; pass < (q ? 2 : 1); pass++) {
5774 5775
                        tmp = neon_load_reg(rm, pass * 2);
                        tmp2 = neon_load_reg(rm, pass * 2 + 1);
P
pbrook 已提交
5776
                        switch (size) {
5777 5778
                        case 0: tcg_gen_bswap32_i32(tmp, tmp); break;
                        case 1: gen_swap_half(tmp); break;
P
pbrook 已提交
5779 5780 5781
                        case 2: /* no-op */ break;
                        default: abort();
                        }
5782
                        neon_store_reg(rd, pass * 2 + 1, tmp);
P
pbrook 已提交
5783
                        if (size == 2) {
5784
                            neon_store_reg(rd, pass * 2, tmp2);
P
pbrook 已提交
5785 5786
                        } else {
                            switch (size) {
5787 5788
                            case 0: tcg_gen_bswap32_i32(tmp2, tmp2); break;
                            case 1: gen_swap_half(tmp2); break;
P
pbrook 已提交
5789 5790
                            default: abort();
                            }
5791
                            neon_store_reg(rd, pass * 2, tmp2);
P
pbrook 已提交
5792 5793 5794
                        }
                    }
                    break;
5795 5796
                case NEON_2RM_VPADDL: case NEON_2RM_VPADDL_U:
                case NEON_2RM_VPADAL: case NEON_2RM_VPADAL_U:
P
pbrook 已提交
5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807
                    for (pass = 0; pass < q + 1; pass++) {
                        tmp = neon_load_reg(rm, pass * 2);
                        gen_neon_widen(cpu_V0, tmp, size, op & 1);
                        tmp = neon_load_reg(rm, pass * 2 + 1);
                        gen_neon_widen(cpu_V1, tmp, size, op & 1);
                        switch (size) {
                        case 0: gen_helper_neon_paddl_u16(CPU_V001); break;
                        case 1: gen_helper_neon_paddl_u32(CPU_V001); break;
                        case 2: tcg_gen_add_i64(CPU_V001); break;
                        default: abort();
                        }
5808
                        if (op >= NEON_2RM_VPADAL) {
P
pbrook 已提交
5809
                            /* Accumulate.  */
P
pbrook 已提交
5810 5811
                            neon_load_reg64(cpu_V1, rd + pass);
                            gen_neon_addl(size);
P
pbrook 已提交
5812
                        }
P
pbrook 已提交
5813
                        neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5814 5815
                    }
                    break;
5816
                case NEON_2RM_VTRN:
P
pbrook 已提交
5817
                    if (size == 2) {
5818
                        int n;
P
pbrook 已提交
5819
                        for (n = 0; n < (q ? 4 : 2); n += 2) {
5820 5821 5822 5823
                            tmp = neon_load_reg(rm, n);
                            tmp2 = neon_load_reg(rd, n + 1);
                            neon_store_reg(rm, n, tmp2);
                            neon_store_reg(rd, n + 1, tmp);
P
pbrook 已提交
5824 5825 5826 5827 5828
                        }
                    } else {
                        goto elementwise;
                    }
                    break;
5829
                case NEON_2RM_VUZP:
5830
                    if (gen_neon_unzip(rd, rm, size, q)) {
P
pbrook 已提交
5831 5832 5833
                        return 1;
                    }
                    break;
5834
                case NEON_2RM_VZIP:
5835
                    if (gen_neon_zip(rd, rm, size, q)) {
P
pbrook 已提交
5836 5837 5838
                        return 1;
                    }
                    break;
5839 5840
                case NEON_2RM_VMOVN: case NEON_2RM_VQMOVN:
                    /* also VQMOVUN; op field and mnemonics don't line up */
5841 5842 5843
                    if (rm & 1) {
                        return 1;
                    }
5844
                    TCGV_UNUSED_I32(tmp2);
P
pbrook 已提交
5845
                    for (pass = 0; pass < 2; pass++) {
P
pbrook 已提交
5846
                        neon_load_reg64(cpu_V0, rm + pass);
5847
                        tmp = tcg_temp_new_i32();
5848 5849
                        gen_neon_narrow_op(op == NEON_2RM_VMOVN, q, size,
                                           tmp, cpu_V0);
P
pbrook 已提交
5850 5851 5852 5853 5854
                        if (pass == 0) {
                            tmp2 = tmp;
                        } else {
                            neon_store_reg(rd, 0, tmp2);
                            neon_store_reg(rd, 1, tmp);
P
pbrook 已提交
5855 5856 5857
                        }
                    }
                    break;
5858
                case NEON_2RM_VSHLL:
5859
                    if (q || (rd & 1)) {
P
pbrook 已提交
5860
                        return 1;
5861
                    }
P
pbrook 已提交
5862 5863
                    tmp = neon_load_reg(rm, 0);
                    tmp2 = neon_load_reg(rm, 1);
P
pbrook 已提交
5864
                    for (pass = 0; pass < 2; pass++) {
P
pbrook 已提交
5865 5866 5867
                        if (pass == 1)
                            tmp = tmp2;
                        gen_neon_widen(cpu_V0, tmp, size, 1);
5868
                        tcg_gen_shli_i64(cpu_V0, cpu_V0, 8 << size);
P
pbrook 已提交
5869
                        neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5870 5871
                    }
                    break;
5872
                case NEON_2RM_VCVT_F16_F32:
5873 5874 5875 5876
                    if (!arm_feature(env, ARM_FEATURE_VFP_FP16) ||
                        q || (rm & 1)) {
                        return 1;
                    }
5877 5878
                    tmp = tcg_temp_new_i32();
                    tmp2 = tcg_temp_new_i32();
P
Paul Brook 已提交
5879
                    tcg_gen_ld_f32(cpu_F0s, cpu_env, neon_reg_offset(rm, 0));
5880
                    gen_helper_neon_fcvt_f32_to_f16(tmp, cpu_F0s, cpu_env);
P
Paul Brook 已提交
5881
                    tcg_gen_ld_f32(cpu_F0s, cpu_env, neon_reg_offset(rm, 1));
5882
                    gen_helper_neon_fcvt_f32_to_f16(tmp2, cpu_F0s, cpu_env);
P
Paul Brook 已提交
5883 5884 5885
                    tcg_gen_shli_i32(tmp2, tmp2, 16);
                    tcg_gen_or_i32(tmp2, tmp2, tmp);
                    tcg_gen_ld_f32(cpu_F0s, cpu_env, neon_reg_offset(rm, 2));
5886
                    gen_helper_neon_fcvt_f32_to_f16(tmp, cpu_F0s, cpu_env);
P
Paul Brook 已提交
5887 5888
                    tcg_gen_ld_f32(cpu_F0s, cpu_env, neon_reg_offset(rm, 3));
                    neon_store_reg(rd, 0, tmp2);
5889
                    tmp2 = tcg_temp_new_i32();
5890
                    gen_helper_neon_fcvt_f32_to_f16(tmp2, cpu_F0s, cpu_env);
P
Paul Brook 已提交
5891 5892 5893
                    tcg_gen_shli_i32(tmp2, tmp2, 16);
                    tcg_gen_or_i32(tmp2, tmp2, tmp);
                    neon_store_reg(rd, 1, tmp2);
5894
                    tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
5895
                    break;
5896
                case NEON_2RM_VCVT_F32_F16:
5897 5898 5899 5900
                    if (!arm_feature(env, ARM_FEATURE_VFP_FP16) ||
                        q || (rd & 1)) {
                        return 1;
                    }
5901
                    tmp3 = tcg_temp_new_i32();
P
Paul Brook 已提交
5902 5903 5904
                    tmp = neon_load_reg(rm, 0);
                    tmp2 = neon_load_reg(rm, 1);
                    tcg_gen_ext16u_i32(tmp3, tmp);
5905
                    gen_helper_neon_fcvt_f16_to_f32(cpu_F0s, tmp3, cpu_env);
P
Paul Brook 已提交
5906 5907
                    tcg_gen_st_f32(cpu_F0s, cpu_env, neon_reg_offset(rd, 0));
                    tcg_gen_shri_i32(tmp3, tmp, 16);
5908
                    gen_helper_neon_fcvt_f16_to_f32(cpu_F0s, tmp3, cpu_env);
P
Paul Brook 已提交
5909
                    tcg_gen_st_f32(cpu_F0s, cpu_env, neon_reg_offset(rd, 1));
5910
                    tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
5911
                    tcg_gen_ext16u_i32(tmp3, tmp2);
5912
                    gen_helper_neon_fcvt_f16_to_f32(cpu_F0s, tmp3, cpu_env);
P
Paul Brook 已提交
5913 5914
                    tcg_gen_st_f32(cpu_F0s, cpu_env, neon_reg_offset(rd, 2));
                    tcg_gen_shri_i32(tmp3, tmp2, 16);
5915
                    gen_helper_neon_fcvt_f16_to_f32(cpu_F0s, tmp3, cpu_env);
P
Paul Brook 已提交
5916
                    tcg_gen_st_f32(cpu_F0s, cpu_env, neon_reg_offset(rd, 3));
5917 5918
                    tcg_temp_free_i32(tmp2);
                    tcg_temp_free_i32(tmp3);
P
Paul Brook 已提交
5919
                    break;
P
pbrook 已提交
5920 5921 5922
                default:
                elementwise:
                    for (pass = 0; pass < (q ? 4 : 2); pass++) {
5923
                        if (neon_2rm_is_float_op(op)) {
P
pbrook 已提交
5924 5925
                            tcg_gen_ld_f32(cpu_F0s, cpu_env,
                                           neon_reg_offset(rm, pass));
5926
                            TCGV_UNUSED_I32(tmp);
P
pbrook 已提交
5927
                        } else {
5928
                            tmp = neon_load_reg(rm, pass);
P
pbrook 已提交
5929 5930
                        }
                        switch (op) {
5931
                        case NEON_2RM_VREV32:
P
pbrook 已提交
5932
                            switch (size) {
5933 5934
                            case 0: tcg_gen_bswap32_i32(tmp, tmp); break;
                            case 1: gen_swap_half(tmp); break;
5935
                            default: abort();
P
pbrook 已提交
5936 5937
                            }
                            break;
5938
                        case NEON_2RM_VREV16:
5939
                            gen_rev16(tmp);
P
pbrook 已提交
5940
                            break;
5941
                        case NEON_2RM_VCLS:
P
pbrook 已提交
5942
                            switch (size) {
5943 5944 5945
                            case 0: gen_helper_neon_cls_s8(tmp, tmp); break;
                            case 1: gen_helper_neon_cls_s16(tmp, tmp); break;
                            case 2: gen_helper_neon_cls_s32(tmp, tmp); break;
5946
                            default: abort();
P
pbrook 已提交
5947 5948
                            }
                            break;
5949
                        case NEON_2RM_VCLZ:
P
pbrook 已提交
5950
                            switch (size) {
5951 5952 5953
                            case 0: gen_helper_neon_clz_u8(tmp, tmp); break;
                            case 1: gen_helper_neon_clz_u16(tmp, tmp); break;
                            case 2: gen_helper_clz(tmp, tmp); break;
5954
                            default: abort();
P
pbrook 已提交
5955 5956
                            }
                            break;
5957
                        case NEON_2RM_VCNT:
5958
                            gen_helper_neon_cnt_u8(tmp, tmp);
P
pbrook 已提交
5959
                            break;
5960
                        case NEON_2RM_VMVN:
5961
                            tcg_gen_not_i32(tmp, tmp);
P
pbrook 已提交
5962
                            break;
5963
                        case NEON_2RM_VQABS:
P
pbrook 已提交
5964
                            switch (size) {
5965 5966 5967 5968 5969 5970 5971 5972 5973
                            case 0:
                                gen_helper_neon_qabs_s8(tmp, cpu_env, tmp);
                                break;
                            case 1:
                                gen_helper_neon_qabs_s16(tmp, cpu_env, tmp);
                                break;
                            case 2:
                                gen_helper_neon_qabs_s32(tmp, cpu_env, tmp);
                                break;
5974
                            default: abort();
P
pbrook 已提交
5975 5976
                            }
                            break;
5977
                        case NEON_2RM_VQNEG:
P
pbrook 已提交
5978
                            switch (size) {
5979 5980 5981 5982 5983 5984 5985 5986 5987
                            case 0:
                                gen_helper_neon_qneg_s8(tmp, cpu_env, tmp);
                                break;
                            case 1:
                                gen_helper_neon_qneg_s16(tmp, cpu_env, tmp);
                                break;
                            case 2:
                                gen_helper_neon_qneg_s32(tmp, cpu_env, tmp);
                                break;
5988
                            default: abort();
P
pbrook 已提交
5989 5990
                            }
                            break;
5991
                        case NEON_2RM_VCGT0: case NEON_2RM_VCLE0:
5992
                            tmp2 = tcg_const_i32(0);
P
pbrook 已提交
5993
                            switch(size) {
5994 5995 5996
                            case 0: gen_helper_neon_cgt_s8(tmp, tmp, tmp2); break;
                            case 1: gen_helper_neon_cgt_s16(tmp, tmp, tmp2); break;
                            case 2: gen_helper_neon_cgt_s32(tmp, tmp, tmp2); break;
5997
                            default: abort();
P
pbrook 已提交
5998
                            }
5999
                            tcg_temp_free_i32(tmp2);
6000
                            if (op == NEON_2RM_VCLE0) {
6001
                                tcg_gen_not_i32(tmp, tmp);
6002
                            }
P
pbrook 已提交
6003
                            break;
6004
                        case NEON_2RM_VCGE0: case NEON_2RM_VCLT0:
6005
                            tmp2 = tcg_const_i32(0);
P
pbrook 已提交
6006
                            switch(size) {
6007 6008 6009
                            case 0: gen_helper_neon_cge_s8(tmp, tmp, tmp2); break;
                            case 1: gen_helper_neon_cge_s16(tmp, tmp, tmp2); break;
                            case 2: gen_helper_neon_cge_s32(tmp, tmp, tmp2); break;
6010
                            default: abort();
P
pbrook 已提交
6011
                            }
6012
                            tcg_temp_free_i32(tmp2);
6013
                            if (op == NEON_2RM_VCLT0) {
6014
                                tcg_gen_not_i32(tmp, tmp);
6015
                            }
P
pbrook 已提交
6016
                            break;
6017
                        case NEON_2RM_VCEQ0:
6018
                            tmp2 = tcg_const_i32(0);
P
pbrook 已提交
6019
                            switch(size) {
6020 6021 6022
                            case 0: gen_helper_neon_ceq_u8(tmp, tmp, tmp2); break;
                            case 1: gen_helper_neon_ceq_u16(tmp, tmp, tmp2); break;
                            case 2: gen_helper_neon_ceq_u32(tmp, tmp, tmp2); break;
6023
                            default: abort();
P
pbrook 已提交
6024
                            }
6025
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6026
                            break;
6027
                        case NEON_2RM_VABS:
P
pbrook 已提交
6028
                            switch(size) {
6029 6030 6031
                            case 0: gen_helper_neon_abs_s8(tmp, tmp); break;
                            case 1: gen_helper_neon_abs_s16(tmp, tmp); break;
                            case 2: tcg_gen_abs_i32(tmp, tmp); break;
6032
                            default: abort();
P
pbrook 已提交
6033 6034
                            }
                            break;
6035
                        case NEON_2RM_VNEG:
6036 6037
                            tmp2 = tcg_const_i32(0);
                            gen_neon_rsb(size, tmp, tmp2);
6038
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6039
                            break;
6040
                        case NEON_2RM_VCGT0_F:
6041 6042
                        {
                            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6043
                            tmp2 = tcg_const_i32(0);
6044
                            gen_helper_neon_cgt_f32(tmp, tmp, tmp2, fpstatus);
6045
                            tcg_temp_free_i32(tmp2);
6046
                            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
6047
                            break;
6048
                        }
6049
                        case NEON_2RM_VCGE0_F:
6050 6051
                        {
                            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6052
                            tmp2 = tcg_const_i32(0);
6053
                            gen_helper_neon_cge_f32(tmp, tmp, tmp2, fpstatus);
6054
                            tcg_temp_free_i32(tmp2);
6055
                            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
6056
                            break;
6057
                        }
6058
                        case NEON_2RM_VCEQ0_F:
6059 6060
                        {
                            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6061
                            tmp2 = tcg_const_i32(0);
6062
                            gen_helper_neon_ceq_f32(tmp, tmp, tmp2, fpstatus);
6063
                            tcg_temp_free_i32(tmp2);
6064
                            tcg_temp_free_ptr(fpstatus);
P
pbrook 已提交
6065
                            break;
6066
                        }
6067
                        case NEON_2RM_VCLE0_F:
6068 6069
                        {
                            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6070
                            tmp2 = tcg_const_i32(0);
6071
                            gen_helper_neon_cge_f32(tmp, tmp2, tmp, fpstatus);
6072
                            tcg_temp_free_i32(tmp2);
6073
                            tcg_temp_free_ptr(fpstatus);
6074
                            break;
6075
                        }
6076
                        case NEON_2RM_VCLT0_F:
6077 6078
                        {
                            TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6079
                            tmp2 = tcg_const_i32(0);
6080
                            gen_helper_neon_cgt_f32(tmp, tmp2, tmp, fpstatus);
6081
                            tcg_temp_free_i32(tmp2);
6082
                            tcg_temp_free_ptr(fpstatus);
6083
                            break;
6084
                        }
6085
                        case NEON_2RM_VABS_F:
P
pbrook 已提交
6086
                            gen_vfp_abs(0);
P
pbrook 已提交
6087
                            break;
6088
                        case NEON_2RM_VNEG_F:
P
pbrook 已提交
6089
                            gen_vfp_neg(0);
P
pbrook 已提交
6090
                            break;
6091
                        case NEON_2RM_VSWP:
6092 6093
                            tmp2 = neon_load_reg(rd, pass);
                            neon_store_reg(rm, pass, tmp2);
P
pbrook 已提交
6094
                            break;
6095
                        case NEON_2RM_VTRN:
6096
                            tmp2 = neon_load_reg(rd, pass);
P
pbrook 已提交
6097
                            switch (size) {
6098 6099
                            case 0: gen_neon_trn_u8(tmp, tmp2); break;
                            case 1: gen_neon_trn_u16(tmp, tmp2); break;
6100
                            default: abort();
P
pbrook 已提交
6101
                            }
6102
                            neon_store_reg(rm, pass, tmp2);
P
pbrook 已提交
6103
                            break;
6104
                        case NEON_2RM_VRECPE:
6105
                            gen_helper_recpe_u32(tmp, tmp, cpu_env);
P
pbrook 已提交
6106
                            break;
6107
                        case NEON_2RM_VRSQRTE:
6108
                            gen_helper_rsqrte_u32(tmp, tmp, cpu_env);
P
pbrook 已提交
6109
                            break;
6110
                        case NEON_2RM_VRECPE_F:
P
pbrook 已提交
6111
                            gen_helper_recpe_f32(cpu_F0s, cpu_F0s, cpu_env);
P
pbrook 已提交
6112
                            break;
6113
                        case NEON_2RM_VRSQRTE_F:
P
pbrook 已提交
6114
                            gen_helper_rsqrte_f32(cpu_F0s, cpu_F0s, cpu_env);
P
pbrook 已提交
6115
                            break;
6116
                        case NEON_2RM_VCVT_FS: /* VCVT.F32.S32 */
6117
                            gen_vfp_sito(0, 1);
P
pbrook 已提交
6118
                            break;
6119
                        case NEON_2RM_VCVT_FU: /* VCVT.F32.U32 */
6120
                            gen_vfp_uito(0, 1);
P
pbrook 已提交
6121
                            break;
6122
                        case NEON_2RM_VCVT_SF: /* VCVT.S32.F32 */
6123
                            gen_vfp_tosiz(0, 1);
P
pbrook 已提交
6124
                            break;
6125
                        case NEON_2RM_VCVT_UF: /* VCVT.U32.F32 */
6126
                            gen_vfp_touiz(0, 1);
P
pbrook 已提交
6127 6128
                            break;
                        default:
6129 6130 6131 6132
                            /* Reserved op values were caught by the
                             * neon_2rm_sizes[] check earlier.
                             */
                            abort();
P
pbrook 已提交
6133
                        }
6134
                        if (neon_2rm_is_float_op(op)) {
P
pbrook 已提交
6135 6136
                            tcg_gen_st_f32(cpu_F0s, cpu_env,
                                           neon_reg_offset(rd, pass));
P
pbrook 已提交
6137
                        } else {
6138
                            neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
6139 6140 6141 6142 6143 6144
                        }
                    }
                    break;
                }
            } else if ((insn & (1 << 10)) == 0) {
                /* VTBL, VTBX.  */
6145 6146 6147 6148 6149 6150 6151 6152
                int n = ((insn >> 8) & 3) + 1;
                if ((rn + n) > 32) {
                    /* This is UNPREDICTABLE; we choose to UNDEF to avoid the
                     * helper function running off the end of the register file.
                     */
                    return 1;
                }
                n <<= 3;
P
pbrook 已提交
6153
                if (insn & (1 << 6)) {
P
pbrook 已提交
6154
                    tmp = neon_load_reg(rd, 0);
P
pbrook 已提交
6155
                } else {
6156
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
6157
                    tcg_gen_movi_i32(tmp, 0);
P
pbrook 已提交
6158
                }
P
pbrook 已提交
6159
                tmp2 = neon_load_reg(rm, 0);
6160 6161
                tmp4 = tcg_const_i32(rn);
                tmp5 = tcg_const_i32(n);
6162
                gen_helper_neon_tbl(tmp2, cpu_env, tmp2, tmp, tmp4, tmp5);
6163
                tcg_temp_free_i32(tmp);
P
pbrook 已提交
6164
                if (insn & (1 << 6)) {
P
pbrook 已提交
6165
                    tmp = neon_load_reg(rd, 1);
P
pbrook 已提交
6166
                } else {
6167
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
6168
                    tcg_gen_movi_i32(tmp, 0);
P
pbrook 已提交
6169
                }
P
pbrook 已提交
6170
                tmp3 = neon_load_reg(rm, 1);
6171
                gen_helper_neon_tbl(tmp3, cpu_env, tmp3, tmp, tmp4, tmp5);
6172 6173
                tcg_temp_free_i32(tmp5);
                tcg_temp_free_i32(tmp4);
P
pbrook 已提交
6174
                neon_store_reg(rd, 0, tmp2);
P
pbrook 已提交
6175
                neon_store_reg(rd, 1, tmp3);
6176
                tcg_temp_free_i32(tmp);
P
pbrook 已提交
6177 6178
            } else if ((insn & 0x380) == 0) {
                /* VDUP */
6179 6180 6181
                if ((insn & (7 << 16)) == 0 || (q && (rd & 1))) {
                    return 1;
                }
P
pbrook 已提交
6182
                if (insn & (1 << 19)) {
6183
                    tmp = neon_load_reg(rm, 1);
P
pbrook 已提交
6184
                } else {
6185
                    tmp = neon_load_reg(rm, 0);
P
pbrook 已提交
6186 6187
                }
                if (insn & (1 << 16)) {
6188
                    gen_neon_dup_u8(tmp, ((insn >> 17) & 3) * 8);
P
pbrook 已提交
6189 6190
                } else if (insn & (1 << 17)) {
                    if ((insn >> 18) & 1)
6191
                        gen_neon_dup_high16(tmp);
P
pbrook 已提交
6192
                    else
6193
                        gen_neon_dup_low16(tmp);
P
pbrook 已提交
6194 6195
                }
                for (pass = 0; pass < (q ? 4 : 2); pass++) {
6196
                    tmp2 = tcg_temp_new_i32();
6197 6198
                    tcg_gen_mov_i32(tmp2, tmp);
                    neon_store_reg(rd, pass, tmp2);
P
pbrook 已提交
6199
                }
6200
                tcg_temp_free_i32(tmp);
P
pbrook 已提交
6201 6202 6203 6204 6205 6206 6207 6208
            } else {
                return 1;
            }
        }
    }
    return 0;
}

6209
static int disas_coproc_insn(CPUARMState * env, DisasContext *s, uint32_t insn)
P
pbrook 已提交
6210
{
6211 6212 6213
    int cpnum, is64, crn, crm, opc1, opc2, isread, rt, rt2;
    const ARMCPRegInfo *ri;
    ARMCPU *cpu = arm_env_get_cpu(env);
P
pbrook 已提交
6214 6215 6216 6217 6218 6219

    cpnum = (insn >> 8) & 0xf;
    if (arm_feature(env, ARM_FEATURE_XSCALE)
	    && ((env->cp15.c15_cpar ^ 0x3fff) & (1 << cpnum)))
	return 1;

6220
    /* First check for coprocessor space used for actual instructions */
P
pbrook 已提交
6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232
    switch (cpnum) {
      case 0:
      case 1:
	if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
	    return disas_iwmmxt_insn(env, s, insn);
	} else if (arm_feature(env, ARM_FEATURE_XSCALE)) {
	    return disas_dsp_insn(env, s, insn);
	}
	return 1;
    case 10:
    case 11:
	return disas_vfp_insn (env, s, insn);
6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276
    default:
        break;
    }

    /* Otherwise treat as a generic register access */
    is64 = (insn & (1 << 25)) == 0;
    if (!is64 && ((insn & (1 << 4)) == 0)) {
        /* cdp */
        return 1;
    }

    crm = insn & 0xf;
    if (is64) {
        crn = 0;
        opc1 = (insn >> 4) & 0xf;
        opc2 = 0;
        rt2 = (insn >> 16) & 0xf;
    } else {
        crn = (insn >> 16) & 0xf;
        opc1 = (insn >> 21) & 7;
        opc2 = (insn >> 5) & 7;
        rt2 = 0;
    }
    isread = (insn >> 20) & 1;
    rt = (insn >> 12) & 0xf;

    ri = get_arm_cp_reginfo(cpu,
                            ENCODE_CP_REG(cpnum, is64, crn, crm, opc1, opc2));
    if (ri) {
        /* Check access permissions */
        if (!cp_access_ok(env, ri, isread)) {
            return 1;
        }

        /* Handle special cases first */
        switch (ri->type & ~(ARM_CP_FLAG_MASK & ~ARM_CP_SPECIAL)) {
        case ARM_CP_NOP:
            return 0;
        case ARM_CP_WFI:
            if (isread) {
                return 1;
            }
            gen_set_pc_im(s->pc);
            s->is_jmp = DISAS_WFI;
P
Paul Brook 已提交
6277
            return 0;
6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303
        default:
            break;
        }

        if (isread) {
            /* Read */
            if (is64) {
                TCGv_i64 tmp64;
                TCGv_i32 tmp;
                if (ri->type & ARM_CP_CONST) {
                    tmp64 = tcg_const_i64(ri->resetvalue);
                } else if (ri->readfn) {
                    TCGv_ptr tmpptr;
                    gen_set_pc_im(s->pc);
                    tmp64 = tcg_temp_new_i64();
                    tmpptr = tcg_const_ptr(ri);
                    gen_helper_get_cp_reg64(tmp64, cpu_env, tmpptr);
                    tcg_temp_free_ptr(tmpptr);
                } else {
                    tmp64 = tcg_temp_new_i64();
                    tcg_gen_ld_i64(tmp64, cpu_env, ri->fieldoffset);
                }
                tmp = tcg_temp_new_i32();
                tcg_gen_trunc_i64_i32(tmp, tmp64);
                store_reg(s, rt, tmp);
                tcg_gen_shri_i64(tmp64, tmp64, 32);
6304
                tmp = tcg_temp_new_i32();
6305
                tcg_gen_trunc_i64_i32(tmp, tmp64);
6306
                tcg_temp_free_i64(tmp64);
6307 6308
                store_reg(s, rt2, tmp);
            } else {
6309
                TCGv_i32 tmp;
6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339
                if (ri->type & ARM_CP_CONST) {
                    tmp = tcg_const_i32(ri->resetvalue);
                } else if (ri->readfn) {
                    TCGv_ptr tmpptr;
                    gen_set_pc_im(s->pc);
                    tmp = tcg_temp_new_i32();
                    tmpptr = tcg_const_ptr(ri);
                    gen_helper_get_cp_reg(tmp, cpu_env, tmpptr);
                    tcg_temp_free_ptr(tmpptr);
                } else {
                    tmp = load_cpu_offset(ri->fieldoffset);
                }
                if (rt == 15) {
                    /* Destination register of r15 for 32 bit loads sets
                     * the condition codes from the high 4 bits of the value
                     */
                    gen_set_nzcv(tmp);
                    tcg_temp_free_i32(tmp);
                } else {
                    store_reg(s, rt, tmp);
                }
            }
        } else {
            /* Write */
            if (ri->type & ARM_CP_CONST) {
                /* If not forbidden by access permissions, treat as WI */
                return 0;
            }

            if (is64) {
6340
                TCGv_i32 tmplo, tmphi;
6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357
                TCGv_i64 tmp64 = tcg_temp_new_i64();
                tmplo = load_reg(s, rt);
                tmphi = load_reg(s, rt2);
                tcg_gen_concat_i32_i64(tmp64, tmplo, tmphi);
                tcg_temp_free_i32(tmplo);
                tcg_temp_free_i32(tmphi);
                if (ri->writefn) {
                    TCGv_ptr tmpptr = tcg_const_ptr(ri);
                    gen_set_pc_im(s->pc);
                    gen_helper_set_cp_reg64(cpu_env, tmpptr, tmp64);
                    tcg_temp_free_ptr(tmpptr);
                } else {
                    tcg_gen_st_i64(tmp64, cpu_env, ri->fieldoffset);
                }
                tcg_temp_free_i64(tmp64);
            } else {
                if (ri->writefn) {
6358
                    TCGv_i32 tmp;
6359 6360 6361 6362 6363 6364 6365 6366
                    TCGv_ptr tmpptr;
                    gen_set_pc_im(s->pc);
                    tmp = load_reg(s, rt);
                    tmpptr = tcg_const_ptr(ri);
                    gen_helper_set_cp_reg(cpu_env, tmpptr, tmp);
                    tcg_temp_free_ptr(tmpptr);
                    tcg_temp_free_i32(tmp);
                } else {
6367
                    TCGv_i32 tmp = load_reg(s, rt);
6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381
                    store_cpu_offset(tmp, ri->fieldoffset);
                }
            }
            /* We default to ending the TB on a coprocessor register write,
             * but allow this to be suppressed by the register definition
             * (usually only necessary to work around guest bugs).
             */
            if (!(ri->type & ARM_CP_SUPPRESS_TB_END)) {
                gen_lookup_tb(s);
            }
        }
        return 0;
    }

6382
    return 1;
P
pbrook 已提交
6383 6384
}

P
pbrook 已提交
6385 6386

/* Store a 64-bit value to a register pair.  Clobbers val.  */
P
pbrook 已提交
6387
static void gen_storeq_reg(DisasContext *s, int rlow, int rhigh, TCGv_i64 val)
P
pbrook 已提交
6388
{
6389
    TCGv_i32 tmp;
6390
    tmp = tcg_temp_new_i32();
P
pbrook 已提交
6391 6392
    tcg_gen_trunc_i64_i32(tmp, val);
    store_reg(s, rlow, tmp);
6393
    tmp = tcg_temp_new_i32();
P
pbrook 已提交
6394 6395 6396 6397 6398 6399
    tcg_gen_shri_i64(val, val, 32);
    tcg_gen_trunc_i64_i32(tmp, val);
    store_reg(s, rhigh, tmp);
}

/* load a 32-bit value from a register and perform a 64-bit accumulate.  */
P
pbrook 已提交
6400
static void gen_addq_lo(DisasContext *s, TCGv_i64 val, int rlow)
P
pbrook 已提交
6401
{
P
pbrook 已提交
6402
    TCGv_i64 tmp;
6403
    TCGv_i32 tmp2;
P
pbrook 已提交
6404

P
pbrook 已提交
6405
    /* Load value and extend to 64 bits.  */
P
pbrook 已提交
6406
    tmp = tcg_temp_new_i64();
P
pbrook 已提交
6407 6408
    tmp2 = load_reg(s, rlow);
    tcg_gen_extu_i32_i64(tmp, tmp2);
6409
    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6410
    tcg_gen_add_i64(val, val, tmp);
6411
    tcg_temp_free_i64(tmp);
P
pbrook 已提交
6412 6413 6414
}

/* load and add a 64-bit value from a register pair.  */
P
pbrook 已提交
6415
static void gen_addq(DisasContext *s, TCGv_i64 val, int rlow, int rhigh)
P
pbrook 已提交
6416
{
P
pbrook 已提交
6417
    TCGv_i64 tmp;
6418 6419
    TCGv_i32 tmpl;
    TCGv_i32 tmph;
P
pbrook 已提交
6420 6421

    /* Load 64-bit value rd:rn.  */
P
pbrook 已提交
6422 6423
    tmpl = load_reg(s, rlow);
    tmph = load_reg(s, rhigh);
P
pbrook 已提交
6424
    tmp = tcg_temp_new_i64();
P
pbrook 已提交
6425
    tcg_gen_concat_i32_i64(tmp, tmpl, tmph);
6426 6427
    tcg_temp_free_i32(tmpl);
    tcg_temp_free_i32(tmph);
P
pbrook 已提交
6428
    tcg_gen_add_i64(val, val, tmp);
6429
    tcg_temp_free_i64(tmp);
P
pbrook 已提交
6430 6431
}

6432
/* Set N and Z flags from hi|lo.  */
6433
static void gen_logicq_cc(TCGv_i32 lo, TCGv_i32 hi)
P
pbrook 已提交
6434
{
6435 6436
    tcg_gen_mov_i32(cpu_NF, hi);
    tcg_gen_or_i32(cpu_ZF, lo, hi);
P
pbrook 已提交
6437 6438
}

P
Paul Brook 已提交
6439 6440
/* Load/Store exclusive instructions are implemented by remembering
   the value/address loaded, and seeing if these are the same
6441
   when the store is performed. This should be sufficient to implement
P
Paul Brook 已提交
6442 6443 6444 6445 6446 6447 6448
   the architecturally mandated semantics, and avoids having to monitor
   regular stores.

   In system emulation mode only one CPU will be running at once, so
   this sequence is effectively atomic.  In user emulation mode we
   throw an exception and handle the atomic operation elsewhere.  */
static void gen_load_exclusive(DisasContext *s, int rt, int rt2,
6449
                               TCGv_i32 addr, int size)
P
Paul Brook 已提交
6450
{
6451
    TCGv_i32 tmp = tcg_temp_new_i32();
P
Paul Brook 已提交
6452 6453 6454

    switch (size) {
    case 0:
6455
        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6456 6457
        break;
    case 1:
6458
        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6459 6460 6461
        break;
    case 2:
    case 3:
6462
        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6463 6464 6465 6466 6467 6468 6469
        break;
    default:
        abort();
    }
    tcg_gen_mov_i32(cpu_exclusive_val, tmp);
    store_reg(s, rt, tmp);
    if (size == 3) {
6470
        TCGv_i32 tmp2 = tcg_temp_new_i32();
P
Peter Maydell 已提交
6471
        tcg_gen_addi_i32(tmp2, addr, 4);
6472 6473
        tmp = tcg_temp_new_i32();
        tcg_gen_qemu_ld32u(tmp, tmp2, IS_USER(s));
6474
        tcg_temp_free_i32(tmp2);
P
Paul Brook 已提交
6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487
        tcg_gen_mov_i32(cpu_exclusive_high, tmp);
        store_reg(s, rt2, tmp);
    }
    tcg_gen_mov_i32(cpu_exclusive_addr, addr);
}

static void gen_clrex(DisasContext *s)
{
    tcg_gen_movi_i32(cpu_exclusive_addr, -1);
}

#ifdef CONFIG_USER_ONLY
static void gen_store_exclusive(DisasContext *s, int rd, int rt, int rt2,
6488
                                TCGv_i32 addr, int size)
P
Paul Brook 已提交
6489 6490 6491 6492
{
    tcg_gen_mov_i32(cpu_exclusive_test, addr);
    tcg_gen_movi_i32(cpu_exclusive_info,
                     size | (rd << 4) | (rt << 8) | (rt2 << 12));
6493
    gen_exception_insn(s, 4, EXCP_STREX);
P
Paul Brook 已提交
6494 6495 6496
}
#else
static void gen_store_exclusive(DisasContext *s, int rd, int rt, int rt2,
6497
                                TCGv_i32 addr, int size)
P
Paul Brook 已提交
6498
{
6499
    TCGv_i32 tmp;
P
Paul Brook 已提交
6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511
    int done_label;
    int fail_label;

    /* if (env->exclusive_addr == addr && env->exclusive_val == [addr]) {
         [addr] = {Rt};
         {Rd} = 0;
       } else {
         {Rd} = 1;
       } */
    fail_label = gen_new_label();
    done_label = gen_new_label();
    tcg_gen_brcond_i32(TCG_COND_NE, addr, cpu_exclusive_addr, fail_label);
6512
    tmp = tcg_temp_new_i32();
P
Paul Brook 已提交
6513 6514
    switch (size) {
    case 0:
6515
        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6516 6517
        break;
    case 1:
6518
        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6519 6520 6521
        break;
    case 2:
    case 3:
6522
        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6523 6524 6525 6526 6527
        break;
    default:
        abort();
    }
    tcg_gen_brcond_i32(TCG_COND_NE, tmp, cpu_exclusive_val, fail_label);
6528
    tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6529
    if (size == 3) {
6530
        TCGv_i32 tmp2 = tcg_temp_new_i32();
P
Paul Brook 已提交
6531
        tcg_gen_addi_i32(tmp2, addr, 4);
6532 6533
        tmp = tcg_temp_new_i32();
        tcg_gen_qemu_ld32u(tmp, tmp2, IS_USER(s));
6534
        tcg_temp_free_i32(tmp2);
P
Paul Brook 已提交
6535
        tcg_gen_brcond_i32(TCG_COND_NE, tmp, cpu_exclusive_high, fail_label);
6536
        tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6537 6538 6539 6540
    }
    tmp = load_reg(s, rt);
    switch (size) {
    case 0:
6541
        tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6542 6543
        break;
    case 1:
6544
        tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6545 6546 6547
        break;
    case 2:
    case 3:
6548
        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6549 6550 6551 6552
        break;
    default:
        abort();
    }
6553
    tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6554 6555 6556
    if (size == 3) {
        tcg_gen_addi_i32(addr, addr, 4);
        tmp = load_reg(s, rt2);
6557 6558
        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
        tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6559 6560 6561 6562 6563 6564 6565 6566 6567 6568
    }
    tcg_gen_movi_i32(cpu_R[rd], 0);
    tcg_gen_br(done_label);
    gen_set_label(fail_label);
    tcg_gen_movi_i32(cpu_R[rd], 1);
    gen_set_label(done_label);
    tcg_gen_movi_i32(cpu_exclusive_addr, -1);
}
#endif

6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603
/* gen_srs:
 * @env: CPUARMState
 * @s: DisasContext
 * @mode: mode field from insn (which stack to store to)
 * @amode: addressing mode (DA/IA/DB/IB), encoded as per P,U bits in ARM insn
 * @writeback: true if writeback bit set
 *
 * Generate code for the SRS (Store Return State) insn.
 */
static void gen_srs(DisasContext *s,
                    uint32_t mode, uint32_t amode, bool writeback)
{
    int32_t offset;
    TCGv_i32 addr = tcg_temp_new_i32();
    TCGv_i32 tmp = tcg_const_i32(mode);
    gen_helper_get_r13_banked(addr, cpu_env, tmp);
    tcg_temp_free_i32(tmp);
    switch (amode) {
    case 0: /* DA */
        offset = -4;
        break;
    case 1: /* IA */
        offset = 0;
        break;
    case 2: /* DB */
        offset = -8;
        break;
    case 3: /* IB */
        offset = 4;
        break;
    default:
        abort();
    }
    tcg_gen_addi_i32(addr, addr, offset);
    tmp = load_reg(s, 14);
6604 6605
    tcg_gen_qemu_st32(tmp, addr, 0);
    tcg_temp_free_i32(tmp);
6606 6607
    tmp = load_cpu_field(spsr);
    tcg_gen_addi_i32(addr, addr, 4);
6608 6609
    tcg_gen_qemu_st32(tmp, addr, 0);
    tcg_temp_free_i32(tmp);
6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634
    if (writeback) {
        switch (amode) {
        case 0:
            offset = -8;
            break;
        case 1:
            offset = 4;
            break;
        case 2:
            offset = -4;
            break;
        case 3:
            offset = 0;
            break;
        default:
            abort();
        }
        tcg_gen_addi_i32(addr, addr, offset);
        tmp = tcg_const_i32(mode);
        gen_helper_set_r13_banked(cpu_env, tmp, addr);
        tcg_temp_free_i32(tmp);
    }
    tcg_temp_free_i32(addr);
}

6635
static void disas_arm_insn(CPUARMState * env, DisasContext *s)
P
pbrook 已提交
6636 6637
{
    unsigned int cond, insn, val, op1, i, shift, rm, rs, rn, rd, sh;
6638 6639 6640 6641
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
    TCGv_i32 tmp3;
    TCGv_i32 addr;
P
pbrook 已提交
6642
    TCGv_i64 tmp64;
P
pbrook 已提交
6643

6644
    insn = arm_ldl_code(env, s->pc, s->bswap_code);
P
pbrook 已提交
6645 6646 6647 6648 6649 6650 6651
    s->pc += 4;

    /* M variants do not implement ARM mode.  */
    if (IS_M(env))
        goto illegal_op;
    cond = insn >> 28;
    if (cond == 0xf){
6652 6653 6654 6655 6656 6657
        /* In ARMv3 and v4 the NV condition is UNPREDICTABLE; we
         * choose to UNDEF. In ARMv5 and above the space is used
         * for miscellaneous unconditional instructions.
         */
        ARCH(5);

P
pbrook 已提交
6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676
        /* Unconditional instructions.  */
        if (((insn >> 25) & 7) == 1) {
            /* NEON Data processing.  */
            if (!arm_feature(env, ARM_FEATURE_NEON))
                goto illegal_op;

            if (disas_neon_data_insn(env, s, insn))
                goto illegal_op;
            return;
        }
        if ((insn & 0x0f100000) == 0x04000000) {
            /* NEON load/store.  */
            if (!arm_feature(env, ARM_FEATURE_NEON))
                goto illegal_op;

            if (disas_neon_ls_insn(env, s, insn))
                goto illegal_op;
            return;
        }
6677 6678 6679 6680 6681 6682 6683 6684 6685
        if (((insn & 0x0f30f000) == 0x0510f000) ||
            ((insn & 0x0f30f010) == 0x0710f000)) {
            if ((insn & (1 << 22)) == 0) {
                /* PLDW; v7MP */
                if (!arm_feature(env, ARM_FEATURE_V7MP)) {
                    goto illegal_op;
                }
            }
            /* Otherwise PLD; v5TE+ */
6686
            ARCH(5TE);
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702
            return;
        }
        if (((insn & 0x0f70f000) == 0x0450f000) ||
            ((insn & 0x0f70f010) == 0x0650f000)) {
            ARCH(7);
            return; /* PLI; V7 */
        }
        if (((insn & 0x0f700000) == 0x04100000) ||
            ((insn & 0x0f700010) == 0x06100000)) {
            if (!arm_feature(env, ARM_FEATURE_V7MP)) {
                goto illegal_op;
            }
            return; /* v7MP: Unallocated memory hint: must NOP */
        }

        if ((insn & 0x0ffffdff) == 0x01010000) {
P
pbrook 已提交
6703 6704
            ARCH(6);
            /* setend */
6705 6706
            if (((insn >> 9) & 1) != s->bswap_code) {
                /* Dynamic endianness switching not implemented. */
P
pbrook 已提交
6707 6708 6709 6710 6711 6712 6713
                goto illegal_op;
            }
            return;
        } else if ((insn & 0x0fffff00) == 0x057ff000) {
            switch ((insn >> 4) & 0xf) {
            case 1: /* clrex */
                ARCH(6K);
P
Paul Brook 已提交
6714
                gen_clrex(s);
P
pbrook 已提交
6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726
                return;
            case 4: /* dsb */
            case 5: /* dmb */
            case 6: /* isb */
                ARCH(7);
                /* We don't emulate caches so these are a no-op.  */
                return;
            default:
                goto illegal_op;
            }
        } else if ((insn & 0x0e5fffe0) == 0x084d0500) {
            /* srs */
6727
            if (IS_USER(s)) {
P
pbrook 已提交
6728 6729
                goto illegal_op;
            }
6730 6731
            ARCH(6);
            gen_srs(s, (insn & 0x1f), (insn >> 23) & 3, insn & (1 << 21));
6732
            return;
6733
        } else if ((insn & 0x0e50ffe0) == 0x08100a00) {
P
pbrook 已提交
6734
            /* rfe */
6735
            int32_t offset;
P
pbrook 已提交
6736 6737 6738 6739
            if (IS_USER(s))
                goto illegal_op;
            ARCH(6);
            rn = (insn >> 16) & 0xf;
P
pbrook 已提交
6740
            addr = load_reg(s, rn);
P
pbrook 已提交
6741 6742
            i = (insn >> 23) & 3;
            switch (i) {
P
pbrook 已提交
6743
            case 0: offset = -4; break; /* DA */
6744 6745
            case 1: offset = 0; break; /* IA */
            case 2: offset = -8; break; /* DB */
P
pbrook 已提交
6746
            case 3: offset = 4; break; /* IB */
P
pbrook 已提交
6747 6748 6749
            default: abort();
            }
            if (offset)
P
pbrook 已提交
6750 6751
                tcg_gen_addi_i32(addr, addr, offset);
            /* Load PC into tmp and CPSR into tmp2.  */
6752 6753
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, 0);
P
pbrook 已提交
6754
            tcg_gen_addi_i32(addr, addr, 4);
6755
            tmp2 = tcg_temp_new_i32();
P
Peter Chubb 已提交
6756
            tcg_gen_qemu_ld32u(tmp2, addr, 0);
P
pbrook 已提交
6757 6758 6759
            if (insn & (1 << 21)) {
                /* Base writeback.  */
                switch (i) {
P
pbrook 已提交
6760
                case 0: offset = -8; break;
6761 6762
                case 1: offset = 4; break;
                case 2: offset = -4; break;
P
pbrook 已提交
6763
                case 3: offset = 0; break;
P
pbrook 已提交
6764 6765 6766
                default: abort();
                }
                if (offset)
P
pbrook 已提交
6767 6768 6769
                    tcg_gen_addi_i32(addr, addr, offset);
                store_reg(s, rn, addr);
            } else {
6770
                tcg_temp_free_i32(addr);
P
pbrook 已提交
6771
            }
P
pbrook 已提交
6772
            gen_rfe(s, tmp, tmp2);
6773
            return;
P
pbrook 已提交
6774 6775 6776 6777 6778
        } else if ((insn & 0x0e000000) == 0x0a000000) {
            /* branch link and change to thumb (blx <offset>) */
            int32_t offset;

            val = (uint32_t)s->pc;
6779
            tmp = tcg_temp_new_i32();
P
pbrook 已提交
6780 6781
            tcg_gen_movi_i32(tmp, val);
            store_reg(s, 14, tmp);
P
pbrook 已提交
6782 6783 6784 6785 6786 6787
            /* Sign-extend the 24-bit offset */
            offset = (((int32_t)insn) << 8) >> 8;
            /* offset * 4 + bit24 * 2 + (thumb bit) */
            val += (offset << 2) | ((insn >> 23) & 2) | 1;
            /* pipeline offset */
            val += 4;
6788
            /* protected by ARCH(5); above, near the start of uncond block */
P
pbrook 已提交
6789
            gen_bx_im(s, val);
P
pbrook 已提交
6790 6791 6792 6793 6794 6795 6796 6797 6798 6799
            return;
        } else if ((insn & 0x0e000f00) == 0x0c000100) {
            if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
                /* iWMMXt register transfer.  */
                if (env->cp15.c15_cpar & (1 << 1))
                    if (!disas_iwmmxt_insn(env, s, insn))
                        return;
            }
        } else if ((insn & 0x0fe00000) == 0x0c400000) {
            /* Coprocessor double register transfer.  */
6800
            ARCH(5TE);
P
pbrook 已提交
6801 6802
        } else if ((insn & 0x0f000010) == 0x0e000010) {
            /* Additional coprocessor register transfer.  */
B
balrog 已提交
6803
        } else if ((insn & 0x0ff10020) == 0x01000000) {
P
pbrook 已提交
6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819
            uint32_t mask;
            uint32_t val;
            /* cps (privileged) */
            if (IS_USER(s))
                return;
            mask = val = 0;
            if (insn & (1 << 19)) {
                if (insn & (1 << 8))
                    mask |= CPSR_A;
                if (insn & (1 << 7))
                    mask |= CPSR_I;
                if (insn & (1 << 6))
                    mask |= CPSR_F;
                if (insn & (1 << 18))
                    val |= mask;
            }
B
balrog 已提交
6820
            if (insn & (1 << 17)) {
P
pbrook 已提交
6821 6822 6823 6824
                mask |= CPSR_M;
                val |= (insn & 0x1f);
            }
            if (mask) {
6825
                gen_set_psr_im(s, mask, 0, val);
P
pbrook 已提交
6826 6827 6828 6829 6830 6831 6832 6833 6834
            }
            return;
        }
        goto illegal_op;
    }
    if (cond != 0xe) {
        /* if not always execute, we generate a conditional jump to
           next instruction */
        s->condlabel = gen_new_label();
P
pbrook 已提交
6835
        gen_test_cc(cond ^ 1, s->condlabel);
P
pbrook 已提交
6836 6837 6838 6839 6840 6841 6842 6843 6844
        s->condjmp = 1;
    }
    if ((insn & 0x0f900000) == 0x03000000) {
        if ((insn & (1 << 21)) == 0) {
            ARCH(6T2);
            rd = (insn >> 12) & 0xf;
            val = ((insn >> 4) & 0xf000) | (insn & 0xfff);
            if ((insn & (1 << 22)) == 0) {
                /* MOVW */
6845
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
6846
                tcg_gen_movi_i32(tmp, val);
P
pbrook 已提交
6847 6848
            } else {
                /* MOVT */
P
pbrook 已提交
6849
                tmp = load_reg(s, rd);
P
pbrook 已提交
6850
                tcg_gen_ext16u_i32(tmp, tmp);
P
pbrook 已提交
6851
                tcg_gen_ori_i32(tmp, tmp, val << 16);
P
pbrook 已提交
6852
            }
P
pbrook 已提交
6853
            store_reg(s, rd, tmp);
P
pbrook 已提交
6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865
        } else {
            if (((insn >> 12) & 0xf) != 0xf)
                goto illegal_op;
            if (((insn >> 16) & 0xf) == 0) {
                gen_nop_hint(s, insn & 0xff);
            } else {
                /* CPSR = immediate */
                val = insn & 0xff;
                shift = ((insn >> 8) & 0xf) * 2;
                if (shift)
                    val = (val >> shift) | (val << (32 - shift));
                i = ((insn & (1 << 22)) != 0);
6866
                if (gen_set_psr_im(s, msr_mask(env, s, (insn >> 16) & 0xf, i), i, val))
P
pbrook 已提交
6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879
                    goto illegal_op;
            }
        }
    } else if ((insn & 0x0f900000) == 0x01000000
               && (insn & 0x00000090) != 0x00000090) {
        /* miscellaneous instructions */
        op1 = (insn >> 21) & 3;
        sh = (insn >> 4) & 0xf;
        rm = insn & 0xf;
        switch (sh) {
        case 0x0: /* move program status register */
            if (op1 & 1) {
                /* PSR = reg */
6880
                tmp = load_reg(s, rm);
P
pbrook 已提交
6881
                i = ((op1 & 2) != 0);
6882
                if (gen_set_psr(s, msr_mask(env, s, (insn >> 16) & 0xf, i), i, tmp))
P
pbrook 已提交
6883 6884 6885 6886 6887 6888 6889
                    goto illegal_op;
            } else {
                /* reg = PSR */
                rd = (insn >> 12) & 0xf;
                if (op1 & 2) {
                    if (IS_USER(s))
                        goto illegal_op;
P
pbrook 已提交
6890
                    tmp = load_cpu_field(spsr);
P
pbrook 已提交
6891
                } else {
6892
                    tmp = tcg_temp_new_i32();
6893
                    gen_helper_cpsr_read(tmp, cpu_env);
P
pbrook 已提交
6894
                }
P
pbrook 已提交
6895
                store_reg(s, rd, tmp);
P
pbrook 已提交
6896 6897 6898 6899 6900
            }
            break;
        case 0x1:
            if (op1 == 1) {
                /* branch/exchange thumb (bx).  */
6901
                ARCH(4T);
P
pbrook 已提交
6902 6903
                tmp = load_reg(s, rm);
                gen_bx(s, tmp);
P
pbrook 已提交
6904 6905
            } else if (op1 == 3) {
                /* clz */
6906
                ARCH(5);
P
pbrook 已提交
6907
                rd = (insn >> 12) & 0xf;
P
pbrook 已提交
6908 6909 6910
                tmp = load_reg(s, rm);
                gen_helper_clz(tmp, tmp);
                store_reg(s, rd, tmp);
P
pbrook 已提交
6911 6912 6913 6914 6915 6916 6917 6918
            } else {
                goto illegal_op;
            }
            break;
        case 0x2:
            if (op1 == 1) {
                ARCH(5J); /* bxj */
                /* Trivial implementation equivalent to bx.  */
P
pbrook 已提交
6919 6920
                tmp = load_reg(s, rm);
                gen_bx(s, tmp);
P
pbrook 已提交
6921 6922 6923 6924 6925 6926 6927 6928
            } else {
                goto illegal_op;
            }
            break;
        case 0x3:
            if (op1 != 1)
              goto illegal_op;

6929
            ARCH(5);
P
pbrook 已提交
6930
            /* branch link/exchange thumb (blx) */
P
pbrook 已提交
6931
            tmp = load_reg(s, rm);
6932
            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
6933 6934 6935
            tcg_gen_movi_i32(tmp2, s->pc);
            store_reg(s, 14, tmp2);
            gen_bx(s, tmp);
P
pbrook 已提交
6936 6937
            break;
        case 0x5: /* saturating add/subtract */
6938
            ARCH(5TE);
P
pbrook 已提交
6939 6940
            rd = (insn >> 12) & 0xf;
            rn = (insn >> 16) & 0xf;
6941
            tmp = load_reg(s, rm);
P
pbrook 已提交
6942
            tmp2 = load_reg(s, rn);
P
pbrook 已提交
6943
            if (op1 & 2)
6944
                gen_helper_double_saturate(tmp2, cpu_env, tmp2);
P
pbrook 已提交
6945
            if (op1 & 1)
6946
                gen_helper_sub_saturate(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
6947
            else
6948
                gen_helper_add_saturate(tmp, cpu_env, tmp, tmp2);
6949
            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6950
            store_reg(s, rd, tmp);
P
pbrook 已提交
6951
            break;
6952 6953 6954 6955 6956 6957 6958 6959
        case 7:
            /* SMC instruction (op1 == 3)
               and undefined instructions (op1 == 0 || op1 == 2)
               will trap */
            if (op1 != 1) {
                goto illegal_op;
            }
            /* bkpt */
6960
            ARCH(5);
6961
            gen_exception_insn(s, 4, EXCP_BKPT);
P
pbrook 已提交
6962 6963 6964 6965 6966
            break;
        case 0x8: /* signed multiply */
        case 0xa:
        case 0xc:
        case 0xe:
6967
            ARCH(5TE);
P
pbrook 已提交
6968 6969 6970 6971 6972
            rs = (insn >> 8) & 0xf;
            rn = (insn >> 12) & 0xf;
            rd = (insn >> 16) & 0xf;
            if (op1 == 1) {
                /* (32 * 16) >> 16 */
P
pbrook 已提交
6973 6974
                tmp = load_reg(s, rm);
                tmp2 = load_reg(s, rs);
P
pbrook 已提交
6975
                if (sh & 4)
P
pbrook 已提交
6976
                    tcg_gen_sari_i32(tmp2, tmp2, 16);
P
pbrook 已提交
6977
                else
P
pbrook 已提交
6978
                    gen_sxth(tmp2);
P
pbrook 已提交
6979 6980
                tmp64 = gen_muls_i64_i32(tmp, tmp2);
                tcg_gen_shri_i64(tmp64, tmp64, 16);
6981
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
6982
                tcg_gen_trunc_i64_i32(tmp, tmp64);
6983
                tcg_temp_free_i64(tmp64);
P
pbrook 已提交
6984
                if ((sh & 2) == 0) {
P
pbrook 已提交
6985
                    tmp2 = load_reg(s, rn);
6986
                    gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
6987
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6988
                }
P
pbrook 已提交
6989
                store_reg(s, rd, tmp);
P
pbrook 已提交
6990 6991
            } else {
                /* 16 * 16 */
P
pbrook 已提交
6992 6993 6994
                tmp = load_reg(s, rm);
                tmp2 = load_reg(s, rs);
                gen_mulxy(tmp, tmp2, sh & 2, sh & 4);
6995
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6996
                if (op1 == 2) {
P
pbrook 已提交
6997 6998
                    tmp64 = tcg_temp_new_i64();
                    tcg_gen_ext_i32_i64(tmp64, tmp);
6999
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
7000 7001
                    gen_addq(s, tmp64, rn, rd);
                    gen_storeq_reg(s, rn, rd, tmp64);
7002
                    tcg_temp_free_i64(tmp64);
P
pbrook 已提交
7003 7004
                } else {
                    if (op1 == 0) {
P
pbrook 已提交
7005
                        tmp2 = load_reg(s, rn);
7006
                        gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
7007
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7008
                    }
P
pbrook 已提交
7009
                    store_reg(s, rd, tmp);
P
pbrook 已提交
7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029
                }
            }
            break;
        default:
            goto illegal_op;
        }
    } else if (((insn & 0x0e000000) == 0 &&
                (insn & 0x00000090) != 0x90) ||
               ((insn & 0x0e000000) == (1 << 25))) {
        int set_cc, logic_cc, shiftop;

        op1 = (insn >> 21) & 0xf;
        set_cc = (insn >> 20) & 1;
        logic_cc = table_logic_cc[op1] & set_cc;

        /* data processing instruction */
        if (insn & (1 << 25)) {
            /* immediate operand */
            val = insn & 0xff;
            shift = ((insn >> 8) & 0xf) * 2;
7030
            if (shift) {
P
pbrook 已提交
7031
                val = (val >> shift) | (val << (32 - shift));
7032
            }
7033
            tmp2 = tcg_temp_new_i32();
7034 7035 7036 7037
            tcg_gen_movi_i32(tmp2, val);
            if (logic_cc && shift) {
                gen_set_CF_bit31(tmp2);
            }
P
pbrook 已提交
7038 7039 7040
        } else {
            /* register */
            rm = (insn) & 0xf;
7041
            tmp2 = load_reg(s, rm);
P
pbrook 已提交
7042 7043 7044
            shiftop = (insn >> 5) & 3;
            if (!(insn & (1 << 4))) {
                shift = (insn >> 7) & 0x1f;
7045
                gen_arm_shift_im(tmp2, shiftop, shift, logic_cc);
P
pbrook 已提交
7046 7047
            } else {
                rs = (insn >> 8) & 0xf;
P
pbrook 已提交
7048
                tmp = load_reg(s, rs);
7049
                gen_arm_shift_reg(tmp2, shiftop, tmp, logic_cc);
P
pbrook 已提交
7050 7051 7052 7053
            }
        }
        if (op1 != 0x0f && op1 != 0x0d) {
            rn = (insn >> 16) & 0xf;
7054 7055
            tmp = load_reg(s, rn);
        } else {
7056
            TCGV_UNUSED_I32(tmp);
P
pbrook 已提交
7057 7058 7059 7060
        }
        rd = (insn >> 12) & 0xf;
        switch(op1) {
        case 0x00:
7061 7062 7063 7064
            tcg_gen_and_i32(tmp, tmp, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7065
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7066 7067
            break;
        case 0x01:
7068 7069 7070 7071
            tcg_gen_xor_i32(tmp, tmp, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7072
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7073 7074 7075 7076
            break;
        case 0x02:
            if (set_cc && rd == 15) {
                /* SUBS r15, ... is used for exception return.  */
7077
                if (IS_USER(s)) {
P
pbrook 已提交
7078
                    goto illegal_op;
7079
                }
7080
                gen_sub_CC(tmp, tmp, tmp2);
7081
                gen_exception_return(s, tmp);
P
pbrook 已提交
7082
            } else {
7083
                if (set_cc) {
7084
                    gen_sub_CC(tmp, tmp, tmp2);
7085 7086 7087
                } else {
                    tcg_gen_sub_i32(tmp, tmp, tmp2);
                }
7088
                store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7089 7090 7091
            }
            break;
        case 0x03:
7092
            if (set_cc) {
7093
                gen_sub_CC(tmp, tmp2, tmp);
7094 7095 7096
            } else {
                tcg_gen_sub_i32(tmp, tmp2, tmp);
            }
7097
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7098 7099
            break;
        case 0x04:
7100
            if (set_cc) {
7101
                gen_add_CC(tmp, tmp, tmp2);
7102 7103 7104
            } else {
                tcg_gen_add_i32(tmp, tmp, tmp2);
            }
7105
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7106 7107
            break;
        case 0x05:
7108
            if (set_cc) {
7109
                gen_adc_CC(tmp, tmp, tmp2);
7110 7111 7112
            } else {
                gen_add_carry(tmp, tmp, tmp2);
            }
7113
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7114 7115
            break;
        case 0x06:
7116
            if (set_cc) {
7117
                gen_sbc_CC(tmp, tmp, tmp2);
7118 7119 7120
            } else {
                gen_sub_carry(tmp, tmp, tmp2);
            }
7121
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7122 7123
            break;
        case 0x07:
7124
            if (set_cc) {
7125
                gen_sbc_CC(tmp, tmp2, tmp);
7126 7127 7128
            } else {
                gen_sub_carry(tmp, tmp2, tmp);
            }
7129
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7130 7131 7132
            break;
        case 0x08:
            if (set_cc) {
7133 7134
                tcg_gen_and_i32(tmp, tmp, tmp2);
                gen_logic_CC(tmp);
P
pbrook 已提交
7135
            }
7136
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7137 7138 7139
            break;
        case 0x09:
            if (set_cc) {
7140 7141
                tcg_gen_xor_i32(tmp, tmp, tmp2);
                gen_logic_CC(tmp);
P
pbrook 已提交
7142
            }
7143
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7144 7145 7146
            break;
        case 0x0a:
            if (set_cc) {
7147
                gen_sub_CC(tmp, tmp, tmp2);
P
pbrook 已提交
7148
            }
7149
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7150 7151 7152
            break;
        case 0x0b:
            if (set_cc) {
7153
                gen_add_CC(tmp, tmp, tmp2);
P
pbrook 已提交
7154
            }
7155
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7156 7157
            break;
        case 0x0c:
7158 7159 7160 7161
            tcg_gen_or_i32(tmp, tmp, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7162
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7163 7164 7165 7166
            break;
        case 0x0d:
            if (logic_cc && rd == 15) {
                /* MOVS r15, ... is used for exception return.  */
7167
                if (IS_USER(s)) {
P
pbrook 已提交
7168
                    goto illegal_op;
7169 7170
                }
                gen_exception_return(s, tmp2);
P
pbrook 已提交
7171
            } else {
7172 7173 7174
                if (logic_cc) {
                    gen_logic_CC(tmp2);
                }
7175
                store_reg_bx(env, s, rd, tmp2);
P
pbrook 已提交
7176 7177 7178
            }
            break;
        case 0x0e:
7179
            tcg_gen_andc_i32(tmp, tmp, tmp2);
7180 7181 7182
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7183
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7184 7185 7186
            break;
        default:
        case 0x0f:
7187 7188 7189 7190
            tcg_gen_not_i32(tmp2, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp2);
            }
7191
            store_reg_bx(env, s, rd, tmp2);
P
pbrook 已提交
7192 7193
            break;
        }
7194
        if (op1 != 0x0f && op1 != 0x0d) {
7195
            tcg_temp_free_i32(tmp2);
7196
        }
P
pbrook 已提交
7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214
    } else {
        /* other instructions */
        op1 = (insn >> 24) & 0xf;
        switch(op1) {
        case 0x0:
        case 0x1:
            /* multiplies, extra load/stores */
            sh = (insn >> 5) & 3;
            if (sh == 0) {
                if (op1 == 0x0) {
                    rd = (insn >> 16) & 0xf;
                    rn = (insn >> 12) & 0xf;
                    rs = (insn >> 8) & 0xf;
                    rm = (insn) & 0xf;
                    op1 = (insn >> 20) & 0xf;
                    switch (op1) {
                    case 0: case 1: case 2: case 3: case 6:
                        /* 32 bit mul */
P
pbrook 已提交
7215 7216 7217
                        tmp = load_reg(s, rs);
                        tmp2 = load_reg(s, rm);
                        tcg_gen_mul_i32(tmp, tmp, tmp2);
7218
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7219 7220 7221
                        if (insn & (1 << 22)) {
                            /* Subtract (mls) */
                            ARCH(6T2);
P
pbrook 已提交
7222 7223
                            tmp2 = load_reg(s, rn);
                            tcg_gen_sub_i32(tmp, tmp2, tmp);
7224
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7225 7226
                        } else if (insn & (1 << 21)) {
                            /* Add */
P
pbrook 已提交
7227 7228
                            tmp2 = load_reg(s, rn);
                            tcg_gen_add_i32(tmp, tmp, tmp2);
7229
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7230 7231
                        }
                        if (insn & (1 << 20))
P
pbrook 已提交
7232 7233
                            gen_logic_CC(tmp);
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7234
                        break;
A
Aurelien Jarno 已提交
7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248
                    case 4:
                        /* 64 bit mul double accumulate (UMAAL) */
                        ARCH(6);
                        tmp = load_reg(s, rs);
                        tmp2 = load_reg(s, rm);
                        tmp64 = gen_mulu_i64_i32(tmp, tmp2);
                        gen_addq_lo(s, tmp64, rn);
                        gen_addq_lo(s, tmp64, rd);
                        gen_storeq_reg(s, rn, rd, tmp64);
                        tcg_temp_free_i64(tmp64);
                        break;
                    case 8: case 9: case 10: case 11:
                    case 12: case 13: case 14: case 15:
                        /* 64 bit mul: UMULL, UMLAL, SMULL, SMLAL. */
P
pbrook 已提交
7249 7250
                        tmp = load_reg(s, rs);
                        tmp2 = load_reg(s, rm);
A
Aurelien Jarno 已提交
7251
                        if (insn & (1 << 22)) {
7252
                            tcg_gen_muls2_i32(tmp, tmp2, tmp, tmp2);
A
Aurelien Jarno 已提交
7253
                        } else {
7254
                            tcg_gen_mulu2_i32(tmp, tmp2, tmp, tmp2);
A
Aurelien Jarno 已提交
7255 7256
                        }
                        if (insn & (1 << 21)) { /* mult accumulate */
7257 7258
                            TCGv_i32 al = load_reg(s, rn);
                            TCGv_i32 ah = load_reg(s, rd);
7259
                            tcg_gen_add2_i32(tmp, tmp2, tmp, tmp2, al, ah);
7260 7261
                            tcg_temp_free_i32(al);
                            tcg_temp_free_i32(ah);
P
pbrook 已提交
7262
                        }
A
Aurelien Jarno 已提交
7263
                        if (insn & (1 << 20)) {
7264
                            gen_logicq_cc(tmp, tmp2);
A
Aurelien Jarno 已提交
7265
                        }
7266 7267
                        store_reg(s, rn, tmp);
                        store_reg(s, rd, tmp2);
P
pbrook 已提交
7268
                        break;
A
Aurelien Jarno 已提交
7269 7270
                    default:
                        goto illegal_op;
P
pbrook 已提交
7271 7272 7273 7274 7275 7276
                    }
                } else {
                    rn = (insn >> 16) & 0xf;
                    rd = (insn >> 12) & 0xf;
                    if (insn & (1 << 23)) {
                        /* load/store exclusive */
7277
                        int op2 = (insn >> 8) & 3;
P
pbrook 已提交
7278
                        op1 = (insn >> 21) & 0x3;
7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300

                        switch (op2) {
                        case 0: /* lda/stl */
                            if (op1 == 1) {
                                goto illegal_op;
                            }
                            ARCH(8);
                            break;
                        case 1: /* reserved */
                            goto illegal_op;
                        case 2: /* ldaex/stlex */
                            ARCH(8);
                            break;
                        case 3: /* ldrex/strex */
                            if (op1) {
                                ARCH(6K);
                            } else {
                                ARCH(6);
                            }
                            break;
                        }

7301
                        addr = tcg_temp_local_new_i32();
7302
                        load_reg_var(s, addr, rn);
7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342

                        /* Since the emulation does not have barriers,
                           the acquire/release semantics need no special
                           handling */
                        if (op2 == 0) {
                            if (insn & (1 << 20)) {
                                tmp = tcg_temp_new_i32();
                                switch (op1) {
                                case 0: /* lda */
                                    tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
                                    break;
                                case 2: /* ldab */
                                    tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
                                    break;
                                case 3: /* ldah */
                                    tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
                                    break;
                                default:
                                    abort();
                                }
                                store_reg(s, rd, tmp);
                            } else {
                                rm = insn & 0xf;
                                tmp = load_reg(s, rm);
                                switch (op1) {
                                case 0: /* stl */
                                    tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                                    break;
                                case 2: /* stlb */
                                    tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
                                    break;
                                case 3: /* stlh */
                                    tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
                                    break;
                                default:
                                    abort();
                                }
                                tcg_temp_free_i32(tmp);
                            }
                        } else if (insn & (1 << 20)) {
P
pbrook 已提交
7343 7344
                            switch (op1) {
                            case 0: /* ldrex */
P
Paul Brook 已提交
7345
                                gen_load_exclusive(s, rd, 15, addr, 2);
P
pbrook 已提交
7346 7347
                                break;
                            case 1: /* ldrexd */
P
Paul Brook 已提交
7348
                                gen_load_exclusive(s, rd, rd + 1, addr, 3);
P
pbrook 已提交
7349 7350
                                break;
                            case 2: /* ldrexb */
P
Paul Brook 已提交
7351
                                gen_load_exclusive(s, rd, 15, addr, 0);
P
pbrook 已提交
7352 7353
                                break;
                            case 3: /* ldrexh */
P
Paul Brook 已提交
7354
                                gen_load_exclusive(s, rd, 15, addr, 1);
P
pbrook 已提交
7355 7356 7357 7358
                                break;
                            default:
                                abort();
                            }
P
pbrook 已提交
7359 7360
                        } else {
                            rm = insn & 0xf;
P
pbrook 已提交
7361 7362
                            switch (op1) {
                            case 0:  /*  strex */
P
Paul Brook 已提交
7363
                                gen_store_exclusive(s, rd, rm, 15, addr, 2);
P
pbrook 已提交
7364 7365
                                break;
                            case 1: /*  strexd */
A
Aurelien Jarno 已提交
7366
                                gen_store_exclusive(s, rd, rm, rm + 1, addr, 3);
P
pbrook 已提交
7367 7368
                                break;
                            case 2: /*  strexb */
P
Paul Brook 已提交
7369
                                gen_store_exclusive(s, rd, rm, 15, addr, 0);
P
pbrook 已提交
7370 7371
                                break;
                            case 3: /* strexh */
P
Paul Brook 已提交
7372
                                gen_store_exclusive(s, rd, rm, 15, addr, 1);
P
pbrook 已提交
7373 7374 7375 7376
                                break;
                            default:
                                abort();
                            }
P
pbrook 已提交
7377
                        }
7378
                        tcg_temp_free_i32(addr);
P
pbrook 已提交
7379 7380 7381 7382
                    } else {
                        /* SWP instruction */
                        rm = (insn) & 0xf;

P
pbrook 已提交
7383 7384 7385 7386 7387
                        /* ??? This is not really atomic.  However we know
                           we never have multiple CPUs running in parallel,
                           so it is good enough.  */
                        addr = load_reg(s, rn);
                        tmp = load_reg(s, rm);
7388
                        tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
7389
                        if (insn & (1 << 22)) {
7390 7391
                            tcg_gen_qemu_ld8u(tmp2, addr, IS_USER(s));
                            tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
P
pbrook 已提交
7392
                        } else {
7393 7394
                            tcg_gen_qemu_ld32u(tmp2, addr, IS_USER(s));
                            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
P
pbrook 已提交
7395
                        }
7396
                        tcg_temp_free_i32(tmp);
7397
                        tcg_temp_free_i32(addr);
P
pbrook 已提交
7398
                        store_reg(s, rd, tmp2);
P
pbrook 已提交
7399 7400 7401 7402 7403 7404 7405 7406
                    }
                }
            } else {
                int address_offset;
                int load;
                /* Misc load/store */
                rn = (insn >> 16) & 0xf;
                rd = (insn >> 12) & 0xf;
P
pbrook 已提交
7407
                addr = load_reg(s, rn);
P
pbrook 已提交
7408
                if (insn & (1 << 24))
P
pbrook 已提交
7409
                    gen_add_datah_offset(s, insn, 0, addr);
P
pbrook 已提交
7410 7411 7412
                address_offset = 0;
                if (insn & (1 << 20)) {
                    /* load */
7413
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
7414 7415
                    switch(sh) {
                    case 1:
7416
                        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
7417 7418
                        break;
                    case 2:
7419
                        tcg_gen_qemu_ld8s(tmp, addr, IS_USER(s));
P
pbrook 已提交
7420 7421 7422
                        break;
                    default:
                    case 3:
7423
                        tcg_gen_qemu_ld16s(tmp, addr, IS_USER(s));
P
pbrook 已提交
7424 7425 7426 7427
                        break;
                    }
                    load = 1;
                } else if (sh & 2) {
7428
                    ARCH(5TE);
P
pbrook 已提交
7429 7430 7431
                    /* doubleword */
                    if (sh & 1) {
                        /* store */
P
pbrook 已提交
7432
                        tmp = load_reg(s, rd);
7433 7434
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                        tcg_temp_free_i32(tmp);
P
pbrook 已提交
7435 7436
                        tcg_gen_addi_i32(addr, addr, 4);
                        tmp = load_reg(s, rd + 1);
7437 7438
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                        tcg_temp_free_i32(tmp);
P
pbrook 已提交
7439 7440 7441
                        load = 0;
                    } else {
                        /* load */
7442 7443
                        tmp = tcg_temp_new_i32();
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
7444 7445
                        store_reg(s, rd, tmp);
                        tcg_gen_addi_i32(addr, addr, 4);
7446 7447
                        tmp = tcg_temp_new_i32();
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
7448 7449 7450 7451 7452 7453
                        rd++;
                        load = 1;
                    }
                    address_offset = -4;
                } else {
                    /* store */
P
pbrook 已提交
7454
                    tmp = load_reg(s, rd);
7455 7456
                    tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
7457 7458 7459 7460 7461 7462 7463
                    load = 0;
                }
                /* Perform base writeback before the loaded value to
                   ensure correct behavior with overlapping index registers.
                   ldrd with base writeback is is undefined if the
                   destination and index registers overlap.  */
                if (!(insn & (1 << 24))) {
P
pbrook 已提交
7464 7465
                    gen_add_datah_offset(s, insn, address_offset, addr);
                    store_reg(s, rn, addr);
P
pbrook 已提交
7466 7467
                } else if (insn & (1 << 21)) {
                    if (address_offset)
P
pbrook 已提交
7468 7469 7470
                        tcg_gen_addi_i32(addr, addr, address_offset);
                    store_reg(s, rn, addr);
                } else {
7471
                    tcg_temp_free_i32(addr);
P
pbrook 已提交
7472 7473 7474
                }
                if (load) {
                    /* Complete the load.  */
P
pbrook 已提交
7475
                    store_reg(s, rd, tmp);
P
pbrook 已提交
7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488
                }
            }
            break;
        case 0x4:
        case 0x5:
            goto do_ldst;
        case 0x6:
        case 0x7:
            if (insn & (1 << 4)) {
                ARCH(6);
                /* Armv6 Media instructions.  */
                rm = insn & 0xf;
                rn = (insn >> 16) & 0xf;
B
bellard 已提交
7489
                rd = (insn >> 12) & 0xf;
P
pbrook 已提交
7490 7491 7492 7493
                rs = (insn >> 8) & 0xf;
                switch ((insn >> 23) & 3) {
                case 0: /* Parallel add/subtract.  */
                    op1 = (insn >> 20) & 7;
P
pbrook 已提交
7494 7495
                    tmp = load_reg(s, rn);
                    tmp2 = load_reg(s, rm);
P
pbrook 已提交
7496 7497 7498
                    sh = (insn >> 5) & 7;
                    if ((op1 & 3) == 0 || sh == 5 || sh == 6)
                        goto illegal_op;
P
pbrook 已提交
7499
                    gen_arm_parallel_addsub(op1, sh, tmp, tmp2);
7500
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7501
                    store_reg(s, rd, tmp);
P
pbrook 已提交
7502 7503 7504
                    break;
                case 1:
                    if ((insn & 0x00700020) == 0) {
B
balrog 已提交
7505
                        /* Halfword pack.  */
P
pbrook 已提交
7506 7507
                        tmp = load_reg(s, rn);
                        tmp2 = load_reg(s, rm);
P
pbrook 已提交
7508
                        shift = (insn >> 7) & 0x1f;
P
pbrook 已提交
7509 7510
                        if (insn & (1 << 6)) {
                            /* pkhtb */
7511 7512 7513
                            if (shift == 0)
                                shift = 31;
                            tcg_gen_sari_i32(tmp2, tmp2, shift);
P
pbrook 已提交
7514
                            tcg_gen_andi_i32(tmp, tmp, 0xffff0000);
P
pbrook 已提交
7515
                            tcg_gen_ext16u_i32(tmp2, tmp2);
P
pbrook 已提交
7516 7517
                        } else {
                            /* pkhbt */
7518 7519
                            if (shift)
                                tcg_gen_shli_i32(tmp2, tmp2, shift);
P
pbrook 已提交
7520
                            tcg_gen_ext16u_i32(tmp, tmp);
P
pbrook 已提交
7521 7522 7523
                            tcg_gen_andi_i32(tmp2, tmp2, 0xffff0000);
                        }
                        tcg_gen_or_i32(tmp, tmp, tmp2);
7524
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7525
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7526 7527
                    } else if ((insn & 0x00200020) == 0x00200000) {
                        /* [us]sat */
P
pbrook 已提交
7528
                        tmp = load_reg(s, rm);
P
pbrook 已提交
7529 7530 7531 7532
                        shift = (insn >> 7) & 0x1f;
                        if (insn & (1 << 6)) {
                            if (shift == 0)
                                shift = 31;
P
pbrook 已提交
7533
                            tcg_gen_sari_i32(tmp, tmp, shift);
P
pbrook 已提交
7534
                        } else {
P
pbrook 已提交
7535
                            tcg_gen_shli_i32(tmp, tmp, shift);
P
pbrook 已提交
7536 7537
                        }
                        sh = (insn >> 16) & 0x1f;
7538 7539
                        tmp2 = tcg_const_i32(sh);
                        if (insn & (1 << 22))
7540
                          gen_helper_usat(tmp, cpu_env, tmp, tmp2);
7541
                        else
7542
                          gen_helper_ssat(tmp, cpu_env, tmp, tmp2);
7543
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7544
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7545 7546
                    } else if ((insn & 0x00300fe0) == 0x00200f20) {
                        /* [us]sat16 */
P
pbrook 已提交
7547
                        tmp = load_reg(s, rm);
P
pbrook 已提交
7548
                        sh = (insn >> 16) & 0x1f;
7549 7550
                        tmp2 = tcg_const_i32(sh);
                        if (insn & (1 << 22))
7551
                          gen_helper_usat16(tmp, cpu_env, tmp, tmp2);
7552
                        else
7553
                          gen_helper_ssat16(tmp, cpu_env, tmp, tmp2);
7554
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7555
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7556 7557
                    } else if ((insn & 0x00700fe0) == 0x00000fa0) {
                        /* Select bytes.  */
P
pbrook 已提交
7558 7559
                        tmp = load_reg(s, rn);
                        tmp2 = load_reg(s, rm);
7560
                        tmp3 = tcg_temp_new_i32();
7561
                        tcg_gen_ld_i32(tmp3, cpu_env, offsetof(CPUARMState, GE));
P
pbrook 已提交
7562
                        gen_helper_sel_flags(tmp, tmp3, tmp, tmp2);
7563 7564
                        tcg_temp_free_i32(tmp3);
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7565
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7566
                    } else if ((insn & 0x000003e0) == 0x00000060) {
P
pbrook 已提交
7567
                        tmp = load_reg(s, rm);
P
pbrook 已提交
7568
                        shift = (insn >> 10) & 3;
7569
                        /* ??? In many cases it's not necessary to do a
P
pbrook 已提交
7570 7571
                           rotate, a shift is sufficient.  */
                        if (shift != 0)
7572
                            tcg_gen_rotri_i32(tmp, tmp, shift * 8);
P
pbrook 已提交
7573 7574
                        op1 = (insn >> 20) & 7;
                        switch (op1) {
P
pbrook 已提交
7575 7576 7577 7578 7579 7580
                        case 0: gen_sxtb16(tmp);  break;
                        case 2: gen_sxtb(tmp);    break;
                        case 3: gen_sxth(tmp);    break;
                        case 4: gen_uxtb16(tmp);  break;
                        case 6: gen_uxtb(tmp);    break;
                        case 7: gen_uxth(tmp);    break;
P
pbrook 已提交
7581 7582 7583
                        default: goto illegal_op;
                        }
                        if (rn != 15) {
P
pbrook 已提交
7584
                            tmp2 = load_reg(s, rn);
P
pbrook 已提交
7585
                            if ((op1 & 3) == 0) {
P
pbrook 已提交
7586
                                gen_add16(tmp, tmp2);
P
pbrook 已提交
7587
                            } else {
P
pbrook 已提交
7588
                                tcg_gen_add_i32(tmp, tmp, tmp2);
7589
                                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7590 7591
                            }
                        }
B
balrog 已提交
7592
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7593 7594
                    } else if ((insn & 0x003f0f60) == 0x003f0f20) {
                        /* rev */
P
pbrook 已提交
7595
                        tmp = load_reg(s, rm);
P
pbrook 已提交
7596 7597
                        if (insn & (1 << 22)) {
                            if (insn & (1 << 7)) {
P
pbrook 已提交
7598
                                gen_revsh(tmp);
P
pbrook 已提交
7599 7600
                            } else {
                                ARCH(6T2);
P
pbrook 已提交
7601
                                gen_helper_rbit(tmp, tmp);
P
pbrook 已提交
7602 7603 7604
                            }
                        } else {
                            if (insn & (1 << 7))
P
pbrook 已提交
7605
                                gen_rev16(tmp);
P
pbrook 已提交
7606
                            else
A
aurel32 已提交
7607
                                tcg_gen_bswap32_i32(tmp, tmp);
P
pbrook 已提交
7608
                        }
P
pbrook 已提交
7609
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7610 7611 7612 7613 7614
                    } else {
                        goto illegal_op;
                    }
                    break;
                case 2: /* Multiplies (Type 3).  */
7615 7616 7617 7618 7619 7620
                    switch ((insn >> 20) & 0x7) {
                    case 5:
                        if (((insn >> 6) ^ (insn >> 7)) & 1) {
                            /* op2 not 00x or 11x : UNDEF */
                            goto illegal_op;
                        }
7621 7622
                        /* Signed multiply most significant [accumulate].
                           (SMMUL, SMMLA, SMMLS) */
7623 7624
                        tmp = load_reg(s, rm);
                        tmp2 = load_reg(s, rs);
P
pbrook 已提交
7625
                        tmp64 = gen_muls_i64_i32(tmp, tmp2);
7626

7627
                        if (rd != 15) {
7628
                            tmp = load_reg(s, rd);
P
pbrook 已提交
7629
                            if (insn & (1 << 6)) {
7630
                                tmp64 = gen_subq_msw(tmp64, tmp);
P
pbrook 已提交
7631
                            } else {
7632
                                tmp64 = gen_addq_msw(tmp64, tmp);
P
pbrook 已提交
7633 7634
                            }
                        }
7635 7636 7637 7638
                        if (insn & (1 << 5)) {
                            tcg_gen_addi_i64(tmp64, tmp64, 0x80000000u);
                        }
                        tcg_gen_shri_i64(tmp64, tmp64, 32);
7639
                        tmp = tcg_temp_new_i32();
7640 7641
                        tcg_gen_trunc_i64_i32(tmp, tmp64);
                        tcg_temp_free_i64(tmp64);
7642
                        store_reg(s, rn, tmp);
7643 7644 7645 7646 7647 7648 7649 7650 7651
                        break;
                    case 0:
                    case 4:
                        /* SMLAD, SMUAD, SMLSD, SMUSD, SMLALD, SMLSLD */
                        if (insn & (1 << 7)) {
                            goto illegal_op;
                        }
                        tmp = load_reg(s, rm);
                        tmp2 = load_reg(s, rs);
P
pbrook 已提交
7652
                        if (insn & (1 << 5))
P
pbrook 已提交
7653 7654 7655
                            gen_swap_half(tmp2);
                        gen_smul_dual(tmp, tmp2);
                        if (insn & (1 << 6)) {
7656
                            /* This subtraction cannot overflow. */
P
pbrook 已提交
7657 7658
                            tcg_gen_sub_i32(tmp, tmp, tmp2);
                        } else {
7659 7660 7661 7662
                            /* This addition cannot overflow 32 bits;
                             * however it may overflow considered as a signed
                             * operation, in which case we must set the Q flag.
                             */
7663
                            gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
7664
                        }
7665
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7666
                        if (insn & (1 << 22)) {
P
pbrook 已提交
7667
                            /* smlald, smlsld */
P
pbrook 已提交
7668 7669
                            tmp64 = tcg_temp_new_i64();
                            tcg_gen_ext_i32_i64(tmp64, tmp);
7670
                            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7671 7672
                            gen_addq(s, tmp64, rd, rn);
                            gen_storeq_reg(s, rd, rn, tmp64);
7673
                            tcg_temp_free_i64(tmp64);
P
pbrook 已提交
7674
                        } else {
P
pbrook 已提交
7675
                            /* smuad, smusd, smlad, smlsd */
7676
                            if (rd != 15)
P
pbrook 已提交
7677
                              {
7678
                                tmp2 = load_reg(s, rd);
7679
                                gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
7680
                                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7681
                              }
7682
                            store_reg(s, rn, tmp);
P
pbrook 已提交
7683
                        }
7684
                        break;
7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703
                    case 1:
                    case 3:
                        /* SDIV, UDIV */
                        if (!arm_feature(env, ARM_FEATURE_ARM_DIV)) {
                            goto illegal_op;
                        }
                        if (((insn >> 5) & 7) || (rd != 15)) {
                            goto illegal_op;
                        }
                        tmp = load_reg(s, rm);
                        tmp2 = load_reg(s, rs);
                        if (insn & (1 << 21)) {
                            gen_helper_udiv(tmp, tmp, tmp2);
                        } else {
                            gen_helper_sdiv(tmp, tmp, tmp2);
                        }
                        tcg_temp_free_i32(tmp2);
                        store_reg(s, rn, tmp);
                        break;
7704 7705
                    default:
                        goto illegal_op;
P
pbrook 已提交
7706 7707 7708 7709 7710 7711
                    }
                    break;
                case 3:
                    op1 = ((insn >> 17) & 0x38) | ((insn >> 5) & 7);
                    switch (op1) {
                    case 0: /* Unsigned sum of absolute differences.  */
P
pbrook 已提交
7712 7713 7714 7715
                        ARCH(6);
                        tmp = load_reg(s, rm);
                        tmp2 = load_reg(s, rs);
                        gen_helper_usad8(tmp, tmp, tmp2);
7716
                        tcg_temp_free_i32(tmp2);
7717 7718
                        if (rd != 15) {
                            tmp2 = load_reg(s, rd);
P
pbrook 已提交
7719
                            tcg_gen_add_i32(tmp, tmp, tmp2);
7720
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7721
                        }
7722
                        store_reg(s, rn, tmp);
P
pbrook 已提交
7723 7724 7725 7726 7727 7728 7729 7730
                        break;
                    case 0x20: case 0x24: case 0x28: case 0x2c:
                        /* Bitfield insert/clear.  */
                        ARCH(6T2);
                        shift = (insn >> 7) & 0x1f;
                        i = (insn >> 16) & 0x1f;
                        i = i + 1 - shift;
                        if (rm == 15) {
7731
                            tmp = tcg_temp_new_i32();
P
pbrook 已提交
7732
                            tcg_gen_movi_i32(tmp, 0);
P
pbrook 已提交
7733
                        } else {
P
pbrook 已提交
7734
                            tmp = load_reg(s, rm);
P
pbrook 已提交
7735 7736
                        }
                        if (i != 32) {
P
pbrook 已提交
7737
                            tmp2 = load_reg(s, rd);
7738
                            tcg_gen_deposit_i32(tmp, tmp2, tmp, shift, i);
7739
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7740
                        }
P
pbrook 已提交
7741
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7742 7743 7744
                        break;
                    case 0x12: case 0x16: case 0x1a: case 0x1e: /* sbfx */
                    case 0x32: case 0x36: case 0x3a: case 0x3e: /* ubfx */
7745
                        ARCH(6T2);
P
pbrook 已提交
7746
                        tmp = load_reg(s, rm);
P
pbrook 已提交
7747 7748 7749 7750 7751 7752
                        shift = (insn >> 7) & 0x1f;
                        i = ((insn >> 16) & 0x1f) + 1;
                        if (shift + i > 32)
                            goto illegal_op;
                        if (i < 32) {
                            if (op1 & 0x20) {
P
pbrook 已提交
7753
                                gen_ubfx(tmp, shift, (1u << i) - 1);
P
pbrook 已提交
7754
                            } else {
P
pbrook 已提交
7755
                                gen_sbfx(tmp, shift, i);
P
pbrook 已提交
7756 7757
                            }
                        }
P
pbrook 已提交
7758
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779
                        break;
                    default:
                        goto illegal_op;
                    }
                    break;
                }
                break;
            }
        do_ldst:
            /* Check for undefined extension instructions
             * per the ARM Bible IE:
             * xxxx 0111 1111 xxxx  xxxx xxxx 1111 xxxx
             */
            sh = (0xf << 20) | (0xf << 4);
            if (op1 == 0x7 && ((insn & sh) == sh))
            {
                goto illegal_op;
            }
            /* load/store byte/word */
            rn = (insn >> 16) & 0xf;
            rd = (insn >> 12) & 0xf;
P
pbrook 已提交
7780
            tmp2 = load_reg(s, rn);
P
pbrook 已提交
7781 7782
            i = (IS_USER(s) || (insn & 0x01200000) == 0x00200000);
            if (insn & (1 << 24))
P
pbrook 已提交
7783
                gen_add_data_offset(s, insn, tmp2);
P
pbrook 已提交
7784 7785
            if (insn & (1 << 20)) {
                /* load */
7786
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
7787
                if (insn & (1 << 22)) {
7788
                    tcg_gen_qemu_ld8u(tmp, tmp2, i);
P
pbrook 已提交
7789
                } else {
7790
                    tcg_gen_qemu_ld32u(tmp, tmp2, i);
P
pbrook 已提交
7791 7792 7793
                }
            } else {
                /* store */
P
pbrook 已提交
7794
                tmp = load_reg(s, rd);
7795 7796 7797 7798 7799 7800
                if (insn & (1 << 22)) {
                    tcg_gen_qemu_st8(tmp, tmp2, i);
                } else {
                    tcg_gen_qemu_st32(tmp, tmp2, i);
                }
                tcg_temp_free_i32(tmp);
P
pbrook 已提交
7801 7802
            }
            if (!(insn & (1 << 24))) {
P
pbrook 已提交
7803 7804 7805 7806 7807
                gen_add_data_offset(s, insn, tmp2);
                store_reg(s, rn, tmp2);
            } else if (insn & (1 << 21)) {
                store_reg(s, rn, tmp2);
            } else {
7808
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7809 7810 7811
            }
            if (insn & (1 << 20)) {
                /* Complete the load.  */
7812
                store_reg_from_load(env, s, rd, tmp);
P
pbrook 已提交
7813 7814 7815 7816 7817 7818
            }
            break;
        case 0x08:
        case 0x09:
            {
                int j, n, user, loaded_base;
7819
                TCGv_i32 loaded_var;
P
pbrook 已提交
7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830
                /* load/store multiple words */
                /* XXX: store correct base if write back */
                user = 0;
                if (insn & (1 << 22)) {
                    if (IS_USER(s))
                        goto illegal_op; /* only usable in supervisor mode */

                    if ((insn & (1 << 15)) == 0)
                        user = 1;
                }
                rn = (insn >> 16) & 0xf;
P
pbrook 已提交
7831
                addr = load_reg(s, rn);
P
pbrook 已提交
7832 7833 7834

                /* compute total size */
                loaded_base = 0;
7835
                TCGV_UNUSED_I32(loaded_var);
P
pbrook 已提交
7836 7837 7838 7839 7840 7841 7842 7843 7844
                n = 0;
                for(i=0;i<16;i++) {
                    if (insn & (1 << i))
                        n++;
                }
                /* XXX: test invalid n == 0 case ? */
                if (insn & (1 << 23)) {
                    if (insn & (1 << 24)) {
                        /* pre increment */
P
pbrook 已提交
7845
                        tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
7846 7847 7848 7849 7850 7851
                    } else {
                        /* post increment */
                    }
                } else {
                    if (insn & (1 << 24)) {
                        /* pre decrement */
P
pbrook 已提交
7852
                        tcg_gen_addi_i32(addr, addr, -(n * 4));
P
pbrook 已提交
7853 7854 7855
                    } else {
                        /* post decrement */
                        if (n != 1)
P
pbrook 已提交
7856
                        tcg_gen_addi_i32(addr, addr, -((n - 1) * 4));
P
pbrook 已提交
7857 7858 7859 7860 7861 7862 7863
                    }
                }
                j = 0;
                for(i=0;i<16;i++) {
                    if (insn & (1 << i)) {
                        if (insn & (1 << 20)) {
                            /* load */
7864 7865
                            tmp = tcg_temp_new_i32();
                            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
7866
                            if (user) {
7867
                                tmp2 = tcg_const_i32(i);
B
Blue Swirl 已提交
7868
                                gen_helper_set_user_reg(cpu_env, tmp2, tmp);
7869
                                tcg_temp_free_i32(tmp2);
7870
                                tcg_temp_free_i32(tmp);
P
pbrook 已提交
7871
                            } else if (i == rn) {
P
pbrook 已提交
7872
                                loaded_var = tmp;
P
pbrook 已提交
7873 7874
                                loaded_base = 1;
                            } else {
7875
                                store_reg_from_load(env, s, i, tmp);
P
pbrook 已提交
7876 7877 7878 7879 7880 7881
                            }
                        } else {
                            /* store */
                            if (i == 15) {
                                /* special case: r15 = PC + 8 */
                                val = (long)s->pc + 4;
7882
                                tmp = tcg_temp_new_i32();
P
pbrook 已提交
7883
                                tcg_gen_movi_i32(tmp, val);
P
pbrook 已提交
7884
                            } else if (user) {
7885
                                tmp = tcg_temp_new_i32();
7886
                                tmp2 = tcg_const_i32(i);
7887
                                gen_helper_get_user_reg(tmp, cpu_env, tmp2);
7888
                                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7889
                            } else {
P
pbrook 已提交
7890
                                tmp = load_reg(s, i);
P
pbrook 已提交
7891
                            }
7892 7893
                            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7894 7895 7896 7897
                        }
                        j++;
                        /* no need to add after the last transfer */
                        if (j != n)
P
pbrook 已提交
7898
                            tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
7899 7900 7901 7902 7903 7904 7905 7906 7907
                    }
                }
                if (insn & (1 << 21)) {
                    /* write back */
                    if (insn & (1 << 23)) {
                        if (insn & (1 << 24)) {
                            /* pre increment */
                        } else {
                            /* post increment */
P
pbrook 已提交
7908
                            tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
7909 7910 7911 7912 7913
                        }
                    } else {
                        if (insn & (1 << 24)) {
                            /* pre decrement */
                            if (n != 1)
P
pbrook 已提交
7914
                                tcg_gen_addi_i32(addr, addr, -((n - 1) * 4));
P
pbrook 已提交
7915 7916
                        } else {
                            /* post decrement */
P
pbrook 已提交
7917
                            tcg_gen_addi_i32(addr, addr, -(n * 4));
P
pbrook 已提交
7918 7919
                        }
                    }
P
pbrook 已提交
7920 7921
                    store_reg(s, rn, addr);
                } else {
7922
                    tcg_temp_free_i32(addr);
P
pbrook 已提交
7923 7924
                }
                if (loaded_base) {
P
pbrook 已提交
7925
                    store_reg(s, rn, loaded_var);
P
pbrook 已提交
7926 7927 7928
                }
                if ((insn & (1 << 22)) && !user) {
                    /* Restore CPSR from SPSR.  */
P
pbrook 已提交
7929 7930
                    tmp = load_cpu_field(spsr);
                    gen_set_cpsr(tmp, 0xffffffff);
7931
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943
                    s->is_jmp = DISAS_UPDATE;
                }
            }
            break;
        case 0xa:
        case 0xb:
            {
                int32_t offset;

                /* branch (and link) */
                val = (int32_t)s->pc;
                if (insn & (1 << 24)) {
7944
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
7945 7946
                    tcg_gen_movi_i32(tmp, val);
                    store_reg(s, 14, tmp);
P
pbrook 已提交
7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961
                }
                offset = (((int32_t)insn << 8) >> 8);
                val += (offset << 2) + 4;
                gen_jmp(s, val);
            }
            break;
        case 0xc:
        case 0xd:
        case 0xe:
            /* Coprocessor.  */
            if (disas_coproc_insn(env, s, insn))
                goto illegal_op;
            break;
        case 0xf:
            /* swi */
P
pbrook 已提交
7962
            gen_set_pc_im(s->pc);
P
pbrook 已提交
7963 7964 7965 7966
            s->is_jmp = DISAS_SWI;
            break;
        default:
        illegal_op:
7967
            gen_exception_insn(s, 4, EXCP_UDEF);
P
pbrook 已提交
7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986
            break;
        }
    }
}

/* Return true if this is a Thumb-2 logical op.  */
static int
thumb2_logic_op(int op)
{
    return (op < 8);
}

/* Generate code for a Thumb-2 data processing operation.  If CONDS is nonzero
   then set condition code flags based on the result of the operation.
   If SHIFTER_OUT is nonzero then set the carry flag for logical operations
   to the high bit of T1.
   Returns zero if the opcode is valid.  */

static int
7987 7988
gen_thumb2_data_op(DisasContext *s, int op, int conds, uint32_t shifter_out,
                   TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
7989 7990 7991 7992 7993 7994
{
    int logic_cc;

    logic_cc = 0;
    switch (op) {
    case 0: /* and */
7995
        tcg_gen_and_i32(t0, t0, t1);
P
pbrook 已提交
7996 7997 7998
        logic_cc = conds;
        break;
    case 1: /* bic */
7999
        tcg_gen_andc_i32(t0, t0, t1);
P
pbrook 已提交
8000 8001 8002
        logic_cc = conds;
        break;
    case 2: /* orr */
8003
        tcg_gen_or_i32(t0, t0, t1);
P
pbrook 已提交
8004 8005 8006
        logic_cc = conds;
        break;
    case 3: /* orn */
8007
        tcg_gen_orc_i32(t0, t0, t1);
P
pbrook 已提交
8008 8009 8010
        logic_cc = conds;
        break;
    case 4: /* eor */
8011
        tcg_gen_xor_i32(t0, t0, t1);
P
pbrook 已提交
8012 8013 8014 8015
        logic_cc = conds;
        break;
    case 8: /* add */
        if (conds)
8016
            gen_add_CC(t0, t0, t1);
P
pbrook 已提交
8017
        else
8018
            tcg_gen_add_i32(t0, t0, t1);
P
pbrook 已提交
8019 8020 8021
        break;
    case 10: /* adc */
        if (conds)
8022
            gen_adc_CC(t0, t0, t1);
P
pbrook 已提交
8023
        else
8024
            gen_adc(t0, t1);
P
pbrook 已提交
8025 8026
        break;
    case 11: /* sbc */
8027 8028 8029
        if (conds) {
            gen_sbc_CC(t0, t0, t1);
        } else {
8030
            gen_sub_carry(t0, t0, t1);
8031
        }
P
pbrook 已提交
8032 8033 8034
        break;
    case 13: /* sub */
        if (conds)
8035
            gen_sub_CC(t0, t0, t1);
P
pbrook 已提交
8036
        else
8037
            tcg_gen_sub_i32(t0, t0, t1);
P
pbrook 已提交
8038 8039 8040
        break;
    case 14: /* rsb */
        if (conds)
8041
            gen_sub_CC(t0, t1, t0);
P
pbrook 已提交
8042
        else
8043
            tcg_gen_sub_i32(t0, t1, t0);
P
pbrook 已提交
8044 8045 8046 8047 8048
        break;
    default: /* 5, 6, 7, 9, 12, 15. */
        return 1;
    }
    if (logic_cc) {
8049
        gen_logic_CC(t0);
P
pbrook 已提交
8050
        if (shifter_out)
8051
            gen_set_CF_bit31(t1);
P
pbrook 已提交
8052 8053 8054 8055 8056 8057
    }
    return 0;
}

/* Translate a 32-bit thumb instruction.  Returns nonzero if the instruction
   is not legal.  */
8058
static int disas_thumb2_insn(CPUARMState *env, DisasContext *s, uint16_t insn_hw1)
P
pbrook 已提交
8059
{
P
pbrook 已提交
8060
    uint32_t insn, imm, shift, offset;
P
pbrook 已提交
8061
    uint32_t rd, rn, rm, rs;
8062 8063 8064 8065
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
    TCGv_i32 tmp3;
    TCGv_i32 addr;
P
pbrook 已提交
8066
    TCGv_i64 tmp64;
P
pbrook 已提交
8067 8068 8069 8070 8071 8072 8073
    int op;
    int shiftop;
    int conds;
    int logic_cc;

    if (!(arm_feature(env, ARM_FEATURE_THUMB2)
          || arm_feature (env, ARM_FEATURE_M))) {
8074
        /* Thumb-1 cores may need to treat bl and blx as a pair of
P
pbrook 已提交
8075 8076 8077
           16-bit instructions to get correct prefetch abort behavior.  */
        insn = insn_hw1;
        if ((insn & (1 << 12)) == 0) {
8078
            ARCH(5);
P
pbrook 已提交
8079 8080
            /* Second half of blx.  */
            offset = ((insn & 0x7ff) << 1);
P
pbrook 已提交
8081 8082 8083
            tmp = load_reg(s, 14);
            tcg_gen_addi_i32(tmp, tmp, offset);
            tcg_gen_andi_i32(tmp, tmp, 0xfffffffc);
P
pbrook 已提交
8084

8085
            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
8086
            tcg_gen_movi_i32(tmp2, s->pc | 1);
P
pbrook 已提交
8087 8088
            store_reg(s, 14, tmp2);
            gen_bx(s, tmp);
P
pbrook 已提交
8089 8090 8091 8092 8093
            return 0;
        }
        if (insn & (1 << 11)) {
            /* Second half of bl.  */
            offset = ((insn & 0x7ff) << 1) | 1;
P
pbrook 已提交
8094
            tmp = load_reg(s, 14);
B
balrog 已提交
8095
            tcg_gen_addi_i32(tmp, tmp, offset);
P
pbrook 已提交
8096

8097
            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
8098
            tcg_gen_movi_i32(tmp2, s->pc | 1);
P
pbrook 已提交
8099 8100
            store_reg(s, 14, tmp2);
            gen_bx(s, tmp);
P
pbrook 已提交
8101 8102 8103 8104 8105 8106 8107
            return 0;
        }
        if ((s->pc & ~TARGET_PAGE_MASK) == 0) {
            /* Instruction spans a page boundary.  Implement it as two
               16-bit instructions in case the second half causes an
               prefetch abort.  */
            offset = ((int32_t)insn << 21) >> 9;
8108
            tcg_gen_movi_i32(cpu_R[14], s->pc + 2 + offset);
P
pbrook 已提交
8109 8110 8111 8112 8113
            return 0;
        }
        /* Fall through to 32-bit decode.  */
    }

8114
    insn = arm_lduw_code(env, s->pc, s->bswap_code);
P
pbrook 已提交
8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135
    s->pc += 2;
    insn |= (uint32_t)insn_hw1 << 16;

    if ((insn & 0xf800e800) != 0xf000e800) {
        ARCH(6T2);
    }

    rn = (insn >> 16) & 0xf;
    rs = (insn >> 12) & 0xf;
    rd = (insn >> 8) & 0xf;
    rm = insn & 0xf;
    switch ((insn >> 25) & 0xf) {
    case 0: case 1: case 2: case 3:
        /* 16-bit instructions.  Should never happen.  */
        abort();
    case 4:
        if (insn & (1 << 22)) {
            /* Other load/store, table branch.  */
            if (insn & 0x01200000) {
                /* Load/store doubleword.  */
                if (rn == 15) {
8136
                    addr = tcg_temp_new_i32();
P
pbrook 已提交
8137
                    tcg_gen_movi_i32(addr, s->pc & ~3);
P
pbrook 已提交
8138
                } else {
P
pbrook 已提交
8139
                    addr = load_reg(s, rn);
P
pbrook 已提交
8140 8141 8142 8143 8144
                }
                offset = (insn & 0xff) * 4;
                if ((insn & (1 << 23)) == 0)
                    offset = -offset;
                if (insn & (1 << 24)) {
P
pbrook 已提交
8145
                    tcg_gen_addi_i32(addr, addr, offset);
P
pbrook 已提交
8146 8147 8148 8149
                    offset = 0;
                }
                if (insn & (1 << 20)) {
                    /* ldrd */
8150 8151
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
8152 8153
                    store_reg(s, rs, tmp);
                    tcg_gen_addi_i32(addr, addr, 4);
8154 8155
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
8156
                    store_reg(s, rd, tmp);
P
pbrook 已提交
8157 8158
                } else {
                    /* strd */
P
pbrook 已提交
8159
                    tmp = load_reg(s, rs);
8160 8161
                    tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
8162 8163
                    tcg_gen_addi_i32(addr, addr, 4);
                    tmp = load_reg(s, rd);
8164 8165
                    tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
8166 8167 8168 8169 8170
                }
                if (insn & (1 << 21)) {
                    /* Base writeback.  */
                    if (rn == 15)
                        goto illegal_op;
P
pbrook 已提交
8171 8172 8173
                    tcg_gen_addi_i32(addr, addr, offset - 4);
                    store_reg(s, rn, addr);
                } else {
8174
                    tcg_temp_free_i32(addr);
P
pbrook 已提交
8175 8176 8177
                }
            } else if ((insn & (1 << 23)) == 0) {
                /* Load/store exclusive word.  */
8178
                addr = tcg_temp_local_new_i32();
8179
                load_reg_var(s, addr, rn);
P
Paul Brook 已提交
8180
                tcg_gen_addi_i32(addr, addr, (insn & 0xff) << 2);
B
bellard 已提交
8181
                if (insn & (1 << 20)) {
P
Paul Brook 已提交
8182
                    gen_load_exclusive(s, rs, 15, addr, 2);
P
pbrook 已提交
8183
                } else {
P
Paul Brook 已提交
8184
                    gen_store_exclusive(s, rd, rs, 15, addr, 2);
P
pbrook 已提交
8185
                }
8186
                tcg_temp_free_i32(addr);
8187
            } else if ((insn & (7 << 5)) == 0) {
P
pbrook 已提交
8188 8189
                /* Table Branch.  */
                if (rn == 15) {
8190
                    addr = tcg_temp_new_i32();
P
pbrook 已提交
8191
                    tcg_gen_movi_i32(addr, s->pc);
P
pbrook 已提交
8192
                } else {
P
pbrook 已提交
8193
                    addr = load_reg(s, rn);
P
pbrook 已提交
8194
                }
P
pbrook 已提交
8195
                tmp = load_reg(s, rm);
P
pbrook 已提交
8196
                tcg_gen_add_i32(addr, addr, tmp);
P
pbrook 已提交
8197 8198
                if (insn & (1 << 4)) {
                    /* tbh */
P
pbrook 已提交
8199
                    tcg_gen_add_i32(addr, addr, tmp);
8200
                    tcg_temp_free_i32(tmp);
8201 8202
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
8203
                } else { /* tbb */
8204
                    tcg_temp_free_i32(tmp);
8205 8206
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
pbrook 已提交
8207
                }
8208
                tcg_temp_free_i32(addr);
P
pbrook 已提交
8209 8210 8211
                tcg_gen_shli_i32(tmp, tmp, 1);
                tcg_gen_addi_i32(tmp, tmp, s->pc);
                store_reg(s, 15, tmp);
P
pbrook 已提交
8212
            } else {
8213
                int op2 = (insn >> 6) & 0x3;
P
pbrook 已提交
8214
                op = (insn >> 4) & 0x3;
8215 8216
                switch (op2) {
                case 0:
P
Paul Brook 已提交
8217
                    goto illegal_op;
8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234
                case 1:
                    /* Load/store exclusive byte/halfword/doubleword */
                    if (op == 2) {
                        goto illegal_op;
                    }
                    ARCH(7);
                    break;
                case 2:
                    /* Load-acquire/store-release */
                    if (op == 3) {
                        goto illegal_op;
                    }
                    /* Fall through */
                case 3:
                    /* Load-acquire/store-release exclusive */
                    ARCH(8);
                    break;
P
Paul Brook 已提交
8235
                }
8236
                addr = tcg_temp_local_new_i32();
8237
                load_reg_var(s, addr, rn);
8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272
                if (!(op2 & 1)) {
                    if (insn & (1 << 20)) {
                        tmp = tcg_temp_new_i32();
                        switch (op) {
                        case 0: /* ldab */
                            tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
                            break;
                        case 1: /* ldah */
                            tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
                            break;
                        case 2: /* lda */
                            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
                            break;
                        default:
                            abort();
                        }
                        store_reg(s, rs, tmp);
                    } else {
                        tmp = load_reg(s, rs);
                        switch (op) {
                        case 0: /* stlb */
                            tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
                            break;
                        case 1: /* stlh */
                            tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
                            break;
                        case 2: /* stl */
                            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                            break;
                        default:
                            abort();
                        }
                        tcg_temp_free_i32(tmp);
                    }
                } else if (insn & (1 << 20)) {
P
Paul Brook 已提交
8273
                    gen_load_exclusive(s, rs, rd, addr, op);
P
pbrook 已提交
8274
                } else {
P
Paul Brook 已提交
8275
                    gen_store_exclusive(s, rm, rs, rd, addr, op);
P
pbrook 已提交
8276
                }
8277
                tcg_temp_free_i32(addr);
P
pbrook 已提交
8278 8279 8280 8281
            }
        } else {
            /* Load/store multiple, RFE, SRS.  */
            if (((insn >> 23) & 1) == ((insn >> 24) & 1)) {
8282 8283
                /* RFE, SRS: not available in user mode or on M profile */
                if (IS_USER(s) || IS_M(env)) {
P
pbrook 已提交
8284
                    goto illegal_op;
8285
                }
P
pbrook 已提交
8286 8287
                if (insn & (1 << 20)) {
                    /* rfe */
P
pbrook 已提交
8288 8289 8290 8291
                    addr = load_reg(s, rn);
                    if ((insn & (1 << 24)) == 0)
                        tcg_gen_addi_i32(addr, addr, -8);
                    /* Load PC into tmp and CPSR into tmp2.  */
8292 8293
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp, addr, 0);
P
pbrook 已提交
8294
                    tcg_gen_addi_i32(addr, addr, 4);
8295 8296
                    tmp2 = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp2, addr, 0);
P
pbrook 已提交
8297 8298
                    if (insn & (1 << 21)) {
                        /* Base writeback.  */
P
pbrook 已提交
8299 8300 8301 8302 8303 8304 8305
                        if (insn & (1 << 24)) {
                            tcg_gen_addi_i32(addr, addr, 4);
                        } else {
                            tcg_gen_addi_i32(addr, addr, -4);
                        }
                        store_reg(s, rn, addr);
                    } else {
8306
                        tcg_temp_free_i32(addr);
P
pbrook 已提交
8307
                    }
P
pbrook 已提交
8308
                    gen_rfe(s, tmp, tmp2);
P
pbrook 已提交
8309 8310
                } else {
                    /* srs */
8311 8312
                    gen_srs(s, (insn & 0x1f), (insn & (1 << 24)) ? 1 : 2,
                            insn & (1 << 21));
P
pbrook 已提交
8313 8314
                }
            } else {
8315
                int i, loaded_base = 0;
8316
                TCGv_i32 loaded_var;
P
pbrook 已提交
8317
                /* Load/store multiple.  */
P
pbrook 已提交
8318
                addr = load_reg(s, rn);
P
pbrook 已提交
8319 8320 8321 8322 8323 8324
                offset = 0;
                for (i = 0; i < 16; i++) {
                    if (insn & (1 << i))
                        offset += 4;
                }
                if (insn & (1 << 24)) {
P
pbrook 已提交
8325
                    tcg_gen_addi_i32(addr, addr, -offset);
P
pbrook 已提交
8326 8327
                }

8328
                TCGV_UNUSED_I32(loaded_var);
P
pbrook 已提交
8329 8330 8331 8332 8333
                for (i = 0; i < 16; i++) {
                    if ((insn & (1 << i)) == 0)
                        continue;
                    if (insn & (1 << 20)) {
                        /* Load.  */
8334 8335
                        tmp = tcg_temp_new_i32();
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
8336
                        if (i == 15) {
P
pbrook 已提交
8337
                            gen_bx(s, tmp);
8338 8339 8340
                        } else if (i == rn) {
                            loaded_var = tmp;
                            loaded_base = 1;
P
pbrook 已提交
8341
                        } else {
P
pbrook 已提交
8342
                            store_reg(s, i, tmp);
P
pbrook 已提交
8343 8344 8345
                        }
                    } else {
                        /* Store.  */
P
pbrook 已提交
8346
                        tmp = load_reg(s, i);
8347 8348
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                        tcg_temp_free_i32(tmp);
P
pbrook 已提交
8349
                    }
P
pbrook 已提交
8350
                    tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
8351
                }
8352 8353 8354
                if (loaded_base) {
                    store_reg(s, rn, loaded_var);
                }
P
pbrook 已提交
8355 8356 8357
                if (insn & (1 << 21)) {
                    /* Base register writeback.  */
                    if (insn & (1 << 24)) {
P
pbrook 已提交
8358
                        tcg_gen_addi_i32(addr, addr, -offset);
P
pbrook 已提交
8359 8360 8361 8362
                    }
                    /* Fault if writeback register is in register list.  */
                    if (insn & (1 << rn))
                        goto illegal_op;
P
pbrook 已提交
8363 8364
                    store_reg(s, rn, addr);
                } else {
8365
                    tcg_temp_free_i32(addr);
P
pbrook 已提交
8366 8367 8368 8369
                }
            }
        }
        break;
8370 8371
    case 5:

P
pbrook 已提交
8372
        op = (insn >> 21) & 0xf;
8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392
        if (op == 6) {
            /* Halfword pack.  */
            tmp = load_reg(s, rn);
            tmp2 = load_reg(s, rm);
            shift = ((insn >> 10) & 0x1c) | ((insn >> 6) & 0x3);
            if (insn & (1 << 5)) {
                /* pkhtb */
                if (shift == 0)
                    shift = 31;
                tcg_gen_sari_i32(tmp2, tmp2, shift);
                tcg_gen_andi_i32(tmp, tmp, 0xffff0000);
                tcg_gen_ext16u_i32(tmp2, tmp2);
            } else {
                /* pkhbt */
                if (shift)
                    tcg_gen_shli_i32(tmp2, tmp2, shift);
                tcg_gen_ext16u_i32(tmp, tmp);
                tcg_gen_andi_i32(tmp2, tmp2, 0xffff0000);
            }
            tcg_gen_or_i32(tmp, tmp, tmp2);
8393
            tcg_temp_free_i32(tmp2);
8394 8395
            store_reg(s, rd, tmp);
        } else {
8396 8397
            /* Data processing register constant shift.  */
            if (rn == 15) {
8398
                tmp = tcg_temp_new_i32();
8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411
                tcg_gen_movi_i32(tmp, 0);
            } else {
                tmp = load_reg(s, rn);
            }
            tmp2 = load_reg(s, rm);

            shiftop = (insn >> 4) & 3;
            shift = ((insn >> 6) & 3) | ((insn >> 10) & 0x1c);
            conds = (insn & (1 << 20)) != 0;
            logic_cc = (conds && thumb2_logic_op(op));
            gen_arm_shift_im(tmp2, shiftop, shift, logic_cc);
            if (gen_thumb2_data_op(s, op, conds, 0, tmp, tmp2))
                goto illegal_op;
8412
            tcg_temp_free_i32(tmp2);
8413 8414 8415
            if (rd != 15) {
                store_reg(s, rd, tmp);
            } else {
8416
                tcg_temp_free_i32(tmp);
8417
            }
8418
        }
P
pbrook 已提交
8419 8420 8421 8422 8423 8424 8425
        break;
    case 13: /* Misc data processing.  */
        op = ((insn >> 22) & 6) | ((insn >> 7) & 1);
        if (op < 4 && (insn & 0xf000) != 0xf000)
            goto illegal_op;
        switch (op) {
        case 0: /* Register controlled shift.  */
P
pbrook 已提交
8426 8427
            tmp = load_reg(s, rn);
            tmp2 = load_reg(s, rm);
P
pbrook 已提交
8428 8429 8430
            if ((insn & 0x70) != 0)
                goto illegal_op;
            op = (insn >> 21) & 3;
P
pbrook 已提交
8431 8432 8433 8434
            logic_cc = (insn & (1 << 20)) != 0;
            gen_arm_shift_reg(tmp, op, tmp2, logic_cc);
            if (logic_cc)
                gen_logic_CC(tmp);
8435
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
8436 8437
            break;
        case 1: /* Sign/zero extend.  */
P
pbrook 已提交
8438
            tmp = load_reg(s, rm);
P
pbrook 已提交
8439
            shift = (insn >> 4) & 3;
8440
            /* ??? In many cases it's not necessary to do a
P
pbrook 已提交
8441 8442
               rotate, a shift is sufficient.  */
            if (shift != 0)
8443
                tcg_gen_rotri_i32(tmp, tmp, shift * 8);
P
pbrook 已提交
8444 8445
            op = (insn >> 20) & 7;
            switch (op) {
P
pbrook 已提交
8446 8447 8448 8449 8450 8451
            case 0: gen_sxth(tmp);   break;
            case 1: gen_uxth(tmp);   break;
            case 2: gen_sxtb16(tmp); break;
            case 3: gen_uxtb16(tmp); break;
            case 4: gen_sxtb(tmp);   break;
            case 5: gen_uxtb(tmp);   break;
P
pbrook 已提交
8452 8453 8454
            default: goto illegal_op;
            }
            if (rn != 15) {
P
pbrook 已提交
8455
                tmp2 = load_reg(s, rn);
P
pbrook 已提交
8456
                if ((op >> 1) == 1) {
P
pbrook 已提交
8457
                    gen_add16(tmp, tmp2);
P
pbrook 已提交
8458
                } else {
P
pbrook 已提交
8459
                    tcg_gen_add_i32(tmp, tmp, tmp2);
8460
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8461 8462
                }
            }
P
pbrook 已提交
8463
            store_reg(s, rd, tmp);
P
pbrook 已提交
8464 8465 8466 8467 8468 8469
            break;
        case 2: /* SIMD add/subtract.  */
            op = (insn >> 20) & 7;
            shift = (insn >> 4) & 7;
            if ((op & 3) == 3 || (shift & 3) == 3)
                goto illegal_op;
P
pbrook 已提交
8470 8471 8472
            tmp = load_reg(s, rn);
            tmp2 = load_reg(s, rm);
            gen_thumb2_parallel_addsub(op, shift, tmp, tmp2);
8473
            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8474
            store_reg(s, rd, tmp);
P
pbrook 已提交
8475 8476 8477 8478 8479
            break;
        case 3: /* Other data processing.  */
            op = ((insn >> 17) & 0x38) | ((insn >> 4) & 7);
            if (op < 4) {
                /* Saturating add/subtract.  */
P
pbrook 已提交
8480 8481
                tmp = load_reg(s, rn);
                tmp2 = load_reg(s, rm);
P
pbrook 已提交
8482
                if (op & 1)
8483
                    gen_helper_double_saturate(tmp, cpu_env, tmp);
8484
                if (op & 2)
8485
                    gen_helper_sub_saturate(tmp, cpu_env, tmp2, tmp);
P
pbrook 已提交
8486
                else
8487
                    gen_helper_add_saturate(tmp, cpu_env, tmp, tmp2);
8488
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8489
            } else {
P
pbrook 已提交
8490
                tmp = load_reg(s, rn);
P
pbrook 已提交
8491 8492
                switch (op) {
                case 0x0a: /* rbit */
P
pbrook 已提交
8493
                    gen_helper_rbit(tmp, tmp);
P
pbrook 已提交
8494 8495
                    break;
                case 0x08: /* rev */
A
aurel32 已提交
8496
                    tcg_gen_bswap32_i32(tmp, tmp);
P
pbrook 已提交
8497 8498
                    break;
                case 0x09: /* rev16 */
P
pbrook 已提交
8499
                    gen_rev16(tmp);
P
pbrook 已提交
8500 8501
                    break;
                case 0x0b: /* revsh */
P
pbrook 已提交
8502
                    gen_revsh(tmp);
P
pbrook 已提交
8503 8504
                    break;
                case 0x10: /* sel */
P
pbrook 已提交
8505
                    tmp2 = load_reg(s, rm);
8506
                    tmp3 = tcg_temp_new_i32();
8507
                    tcg_gen_ld_i32(tmp3, cpu_env, offsetof(CPUARMState, GE));
P
pbrook 已提交
8508
                    gen_helper_sel_flags(tmp, tmp3, tmp, tmp2);
8509 8510
                    tcg_temp_free_i32(tmp3);
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8511 8512
                    break;
                case 0x18: /* clz */
P
pbrook 已提交
8513
                    gen_helper_clz(tmp, tmp);
P
pbrook 已提交
8514 8515 8516 8517 8518
                    break;
                default:
                    goto illegal_op;
                }
            }
P
pbrook 已提交
8519
            store_reg(s, rd, tmp);
P
pbrook 已提交
8520 8521 8522
            break;
        case 4: case 5: /* 32-bit multiply.  Sum of absolute differences.  */
            op = (insn >> 4) & 0xf;
P
pbrook 已提交
8523 8524
            tmp = load_reg(s, rn);
            tmp2 = load_reg(s, rm);
P
pbrook 已提交
8525 8526
            switch ((insn >> 20) & 7) {
            case 0: /* 32 x 32 -> 32 */
P
pbrook 已提交
8527
                tcg_gen_mul_i32(tmp, tmp, tmp2);
8528
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8529
                if (rs != 15) {
P
pbrook 已提交
8530
                    tmp2 = load_reg(s, rs);
P
pbrook 已提交
8531
                    if (op)
P
pbrook 已提交
8532
                        tcg_gen_sub_i32(tmp, tmp2, tmp);
P
pbrook 已提交
8533
                    else
P
pbrook 已提交
8534
                        tcg_gen_add_i32(tmp, tmp, tmp2);
8535
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8536 8537 8538
                }
                break;
            case 1: /* 16 x 16 -> 32 */
P
pbrook 已提交
8539
                gen_mulxy(tmp, tmp2, op & 2, op & 1);
8540
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8541
                if (rs != 15) {
P
pbrook 已提交
8542
                    tmp2 = load_reg(s, rs);
8543
                    gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
8544
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8545 8546 8547 8548 8549
                }
                break;
            case 2: /* Dual multiply add.  */
            case 4: /* Dual multiply subtract.  */
                if (op)
P
pbrook 已提交
8550 8551
                    gen_swap_half(tmp2);
                gen_smul_dual(tmp, tmp2);
P
pbrook 已提交
8552
                if (insn & (1 << 22)) {
8553
                    /* This subtraction cannot overflow. */
P
pbrook 已提交
8554
                    tcg_gen_sub_i32(tmp, tmp, tmp2);
P
pbrook 已提交
8555
                } else {
8556 8557 8558 8559
                    /* This addition cannot overflow 32 bits;
                     * however it may overflow considered as a signed
                     * operation, in which case we must set the Q flag.
                     */
8560
                    gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
8561
                }
8562
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8563 8564
                if (rs != 15)
                  {
P
pbrook 已提交
8565
                    tmp2 = load_reg(s, rs);
8566
                    gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
8567
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8568 8569 8570 8571
                  }
                break;
            case 3: /* 32 * 16 -> 32msb */
                if (op)
P
pbrook 已提交
8572
                    tcg_gen_sari_i32(tmp2, tmp2, 16);
P
pbrook 已提交
8573
                else
P
pbrook 已提交
8574
                    gen_sxth(tmp2);
P
pbrook 已提交
8575 8576
                tmp64 = gen_muls_i64_i32(tmp, tmp2);
                tcg_gen_shri_i64(tmp64, tmp64, 16);
8577
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
8578
                tcg_gen_trunc_i64_i32(tmp, tmp64);
8579
                tcg_temp_free_i64(tmp64);
P
pbrook 已提交
8580 8581
                if (rs != 15)
                  {
P
pbrook 已提交
8582
                    tmp2 = load_reg(s, rs);
8583
                    gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
8584
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8585 8586
                  }
                break;
8587 8588
            case 5: case 6: /* 32 * 32 -> 32msb (SMMUL, SMMLA, SMMLS) */
                tmp64 = gen_muls_i64_i32(tmp, tmp2);
P
pbrook 已提交
8589
                if (rs != 15) {
8590 8591 8592
                    tmp = load_reg(s, rs);
                    if (insn & (1 << 20)) {
                        tmp64 = gen_addq_msw(tmp64, tmp);
B
bellard 已提交
8593
                    } else {
8594
                        tmp64 = gen_subq_msw(tmp64, tmp);
B
bellard 已提交
8595
                    }
B
bellard 已提交
8596
                }
8597 8598 8599 8600
                if (insn & (1 << 4)) {
                    tcg_gen_addi_i64(tmp64, tmp64, 0x80000000u);
                }
                tcg_gen_shri_i64(tmp64, tmp64, 32);
8601
                tmp = tcg_temp_new_i32();
8602 8603
                tcg_gen_trunc_i64_i32(tmp, tmp64);
                tcg_temp_free_i64(tmp64);
P
pbrook 已提交
8604 8605
                break;
            case 7: /* Unsigned sum of absolute differences.  */
P
pbrook 已提交
8606
                gen_helper_usad8(tmp, tmp, tmp2);
8607
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8608
                if (rs != 15) {
P
pbrook 已提交
8609 8610
                    tmp2 = load_reg(s, rs);
                    tcg_gen_add_i32(tmp, tmp, tmp2);
8611
                    tcg_temp_free_i32(tmp2);
8612
                }
P
pbrook 已提交
8613
                break;
B
bellard 已提交
8614
            }
P
pbrook 已提交
8615
            store_reg(s, rd, tmp);
B
bellard 已提交
8616
            break;
P
pbrook 已提交
8617 8618
        case 6: case 7: /* 64-bit multiply, Divide.  */
            op = ((insn >> 4) & 0xf) | ((insn >> 16) & 0x70);
P
pbrook 已提交
8619 8620
            tmp = load_reg(s, rn);
            tmp2 = load_reg(s, rm);
P
pbrook 已提交
8621 8622
            if ((op & 0x50) == 0x10) {
                /* sdiv, udiv */
8623
                if (!arm_feature(env, ARM_FEATURE_THUMB_DIV)) {
P
pbrook 已提交
8624
                    goto illegal_op;
8625
                }
P
pbrook 已提交
8626
                if (op & 0x20)
P
pbrook 已提交
8627
                    gen_helper_udiv(tmp, tmp, tmp2);
B
bellard 已提交
8628
                else
P
pbrook 已提交
8629
                    gen_helper_sdiv(tmp, tmp, tmp2);
8630
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8631
                store_reg(s, rd, tmp);
P
pbrook 已提交
8632 8633 8634
            } else if ((op & 0xe) == 0xc) {
                /* Dual multiply accumulate long.  */
                if (op & 1)
P
pbrook 已提交
8635 8636
                    gen_swap_half(tmp2);
                gen_smul_dual(tmp, tmp2);
P
pbrook 已提交
8637
                if (op & 0x10) {
P
pbrook 已提交
8638
                    tcg_gen_sub_i32(tmp, tmp, tmp2);
B
bellard 已提交
8639
                } else {
P
pbrook 已提交
8640
                    tcg_gen_add_i32(tmp, tmp, tmp2);
B
bellard 已提交
8641
                }
8642
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8643 8644 8645
                /* BUGFIX */
                tmp64 = tcg_temp_new_i64();
                tcg_gen_ext_i32_i64(tmp64, tmp);
8646
                tcg_temp_free_i32(tmp);
P
pbrook 已提交
8647 8648
                gen_addq(s, tmp64, rs, rd);
                gen_storeq_reg(s, rs, rd, tmp64);
8649
                tcg_temp_free_i64(tmp64);
B
bellard 已提交
8650
            } else {
P
pbrook 已提交
8651 8652
                if (op & 0x20) {
                    /* Unsigned 64-bit multiply  */
P
pbrook 已提交
8653
                    tmp64 = gen_mulu_i64_i32(tmp, tmp2);
B
bellard 已提交
8654
                } else {
P
pbrook 已提交
8655 8656
                    if (op & 8) {
                        /* smlalxy */
P
pbrook 已提交
8657
                        gen_mulxy(tmp, tmp2, op & 2, op & 1);
8658
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8659 8660
                        tmp64 = tcg_temp_new_i64();
                        tcg_gen_ext_i32_i64(tmp64, tmp);
8661
                        tcg_temp_free_i32(tmp);
P
pbrook 已提交
8662 8663
                    } else {
                        /* Signed 64-bit multiply  */
P
pbrook 已提交
8664
                        tmp64 = gen_muls_i64_i32(tmp, tmp2);
P
pbrook 已提交
8665
                    }
B
bellard 已提交
8666
                }
P
pbrook 已提交
8667 8668
                if (op & 4) {
                    /* umaal */
P
pbrook 已提交
8669 8670
                    gen_addq_lo(s, tmp64, rs);
                    gen_addq_lo(s, tmp64, rd);
P
pbrook 已提交
8671 8672
                } else if (op & 0x40) {
                    /* 64-bit accumulate.  */
P
pbrook 已提交
8673
                    gen_addq(s, tmp64, rs, rd);
P
pbrook 已提交
8674
                }
P
pbrook 已提交
8675
                gen_storeq_reg(s, rs, rd, tmp64);
8676
                tcg_temp_free_i64(tmp64);
8677
            }
B
bellard 已提交
8678
            break;
P
pbrook 已提交
8679 8680 8681 8682 8683 8684
        }
        break;
    case 6: case 7: case 14: case 15:
        /* Coprocessor.  */
        if (((insn >> 24) & 3) == 3) {
            /* Translate into the equivalent ARM encoding.  */
8685
            insn = (insn & 0xe2ffffff) | ((insn & (1 << 28)) >> 4) | (1 << 28);
P
pbrook 已提交
8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711
            if (disas_neon_data_insn(env, s, insn))
                goto illegal_op;
        } else {
            if (insn & (1 << 28))
                goto illegal_op;
            if (disas_coproc_insn (env, s, insn))
                goto illegal_op;
        }
        break;
    case 8: case 9: case 10: case 11:
        if (insn & (1 << 15)) {
            /* Branches, misc control.  */
            if (insn & 0x5000) {
                /* Unconditional branch.  */
                /* signextend(hw1[10:0]) -> offset[:12].  */
                offset = ((int32_t)insn << 5) >> 9 & ~(int32_t)0xfff;
                /* hw1[10:0] -> offset[11:1].  */
                offset |= (insn & 0x7ff) << 1;
                /* (~hw2[13, 11] ^ offset[24]) -> offset[23,22]
                   offset[24:22] already have the same value because of the
                   sign extension above.  */
                offset ^= ((~insn) & (1 << 13)) << 10;
                offset ^= ((~insn) & (1 << 11)) << 11;

                if (insn & (1 << 14)) {
                    /* Branch and link.  */
8712
                    tcg_gen_movi_i32(cpu_R[14], s->pc | 1);
B
bellard 已提交
8713
                }
8714

P
pbrook 已提交
8715
                offset += s->pc;
P
pbrook 已提交
8716 8717
                if (insn & (1 << 12)) {
                    /* b/bl */
P
pbrook 已提交
8718
                    gen_jmp(s, offset);
P
pbrook 已提交
8719 8720
                } else {
                    /* blx */
P
pbrook 已提交
8721
                    offset &= ~(uint32_t)2;
8722
                    /* thumb2 bx, no need to check */
P
pbrook 已提交
8723
                    gen_bx_im(s, offset);
B
bellard 已提交
8724
                }
P
pbrook 已提交
8725 8726 8727 8728 8729 8730 8731 8732
            } else if (((insn >> 23) & 7) == 7) {
                /* Misc control */
                if (insn & (1 << 13))
                    goto illegal_op;

                if (insn & (1 << 26)) {
                    /* Secure monitor call (v6Z) */
                    goto illegal_op; /* not implemented.  */
B
bellard 已提交
8733
                } else {
P
pbrook 已提交
8734 8735 8736 8737
                    op = (insn >> 20) & 7;
                    switch (op) {
                    case 0: /* msr cpsr.  */
                        if (IS_M(env)) {
P
pbrook 已提交
8738 8739 8740
                            tmp = load_reg(s, rn);
                            addr = tcg_const_i32(insn & 0xff);
                            gen_helper_v7m_msr(cpu_env, addr, tmp);
8741
                            tcg_temp_free_i32(addr);
8742
                            tcg_temp_free_i32(tmp);
P
pbrook 已提交
8743 8744 8745 8746 8747 8748 8749
                            gen_lookup_tb(s);
                            break;
                        }
                        /* fall through */
                    case 1: /* msr spsr.  */
                        if (IS_M(env))
                            goto illegal_op;
8750 8751
                        tmp = load_reg(s, rn);
                        if (gen_set_psr(s,
P
pbrook 已提交
8752
                              msr_mask(env, s, (insn >> 8) & 0xf, op == 1),
8753
                              op == 1, tmp))
P
pbrook 已提交
8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779
                            goto illegal_op;
                        break;
                    case 2: /* cps, nop-hint.  */
                        if (((insn >> 8) & 7) == 0) {
                            gen_nop_hint(s, insn & 0xff);
                        }
                        /* Implemented as NOP in user mode.  */
                        if (IS_USER(s))
                            break;
                        offset = 0;
                        imm = 0;
                        if (insn & (1 << 10)) {
                            if (insn & (1 << 7))
                                offset |= CPSR_A;
                            if (insn & (1 << 6))
                                offset |= CPSR_I;
                            if (insn & (1 << 5))
                                offset |= CPSR_F;
                            if (insn & (1 << 9))
                                imm = CPSR_A | CPSR_I | CPSR_F;
                        }
                        if (insn & (1 << 8)) {
                            offset |= 0x1f;
                            imm |= (insn & 0x1f);
                        }
                        if (offset) {
8780
                            gen_set_psr_im(s, offset, 0, imm);
P
pbrook 已提交
8781 8782 8783
                        }
                        break;
                    case 3: /* Special control operations.  */
P
Paul Brook 已提交
8784
                        ARCH(7);
P
pbrook 已提交
8785 8786 8787
                        op = (insn >> 4) & 0xf;
                        switch (op) {
                        case 2: /* clrex */
P
Paul Brook 已提交
8788
                            gen_clrex(s);
P
pbrook 已提交
8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800
                            break;
                        case 4: /* dsb */
                        case 5: /* dmb */
                        case 6: /* isb */
                            /* These execute as NOPs.  */
                            break;
                        default:
                            goto illegal_op;
                        }
                        break;
                    case 4: /* bxj */
                        /* Trivial implementation equivalent to bx.  */
P
pbrook 已提交
8801 8802
                        tmp = load_reg(s, rn);
                        gen_bx(s, tmp);
P
pbrook 已提交
8803 8804
                        break;
                    case 5: /* Exception return.  */
8805 8806 8807 8808 8809 8810 8811 8812 8813 8814
                        if (IS_USER(s)) {
                            goto illegal_op;
                        }
                        if (rn != 14 || rd != 15) {
                            goto illegal_op;
                        }
                        tmp = load_reg(s, rn);
                        tcg_gen_subi_i32(tmp, tmp, insn & 0xff);
                        gen_exception_return(s, tmp);
                        break;
P
pbrook 已提交
8815
                    case 6: /* mrs cpsr.  */
8816
                        tmp = tcg_temp_new_i32();
P
pbrook 已提交
8817
                        if (IS_M(env)) {
P
pbrook 已提交
8818 8819
                            addr = tcg_const_i32(insn & 0xff);
                            gen_helper_v7m_mrs(tmp, cpu_env, addr);
8820
                            tcg_temp_free_i32(addr);
P
pbrook 已提交
8821
                        } else {
8822
                            gen_helper_cpsr_read(tmp, cpu_env);
P
pbrook 已提交
8823
                        }
P
pbrook 已提交
8824
                        store_reg(s, rd, tmp);
P
pbrook 已提交
8825 8826 8827 8828 8829
                        break;
                    case 7: /* mrs spsr.  */
                        /* Not accessible in user mode.  */
                        if (IS_USER(s) || IS_M(env))
                            goto illegal_op;
P
pbrook 已提交
8830 8831
                        tmp = load_cpu_field(spsr);
                        store_reg(s, rd, tmp);
P
pbrook 已提交
8832
                        break;
B
bellard 已提交
8833 8834
                    }
                }
P
pbrook 已提交
8835 8836 8837 8838 8839
            } else {
                /* Conditional branch.  */
                op = (insn >> 22) & 0xf;
                /* Generate a conditional jump to next instruction.  */
                s->condlabel = gen_new_label();
P
pbrook 已提交
8840
                gen_test_cc(op ^ 1, s->condlabel);
P
pbrook 已提交
8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854
                s->condjmp = 1;

                /* offset[11:1] = insn[10:0] */
                offset = (insn & 0x7ff) << 1;
                /* offset[17:12] = insn[21:16].  */
                offset |= (insn & 0x003f0000) >> 4;
                /* offset[31:20] = insn[26].  */
                offset |= ((int32_t)((insn << 5) & 0x80000000)) >> 11;
                /* offset[18] = insn[13].  */
                offset |= (insn & (1 << 13)) << 5;
                /* offset[19] = insn[11].  */
                offset |= (insn & (1 << 11)) << 8;

                /* jump to the offset */
P
pbrook 已提交
8855
                gen_jmp(s, s->pc + offset);
P
pbrook 已提交
8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866
            }
        } else {
            /* Data processing immediate.  */
            if (insn & (1 << 25)) {
                if (insn & (1 << 24)) {
                    if (insn & (1 << 20))
                        goto illegal_op;
                    /* Bitfield/Saturate.  */
                    op = (insn >> 21) & 7;
                    imm = insn & 0x1f;
                    shift = ((insn >> 6) & 3) | ((insn >> 10) & 0x1c);
P
pbrook 已提交
8867
                    if (rn == 15) {
8868
                        tmp = tcg_temp_new_i32();
P
pbrook 已提交
8869 8870 8871 8872
                        tcg_gen_movi_i32(tmp, 0);
                    } else {
                        tmp = load_reg(s, rn);
                    }
P
pbrook 已提交
8873 8874 8875 8876 8877 8878
                    switch (op) {
                    case 2: /* Signed bitfield extract.  */
                        imm++;
                        if (shift + imm > 32)
                            goto illegal_op;
                        if (imm < 32)
P
pbrook 已提交
8879
                            gen_sbfx(tmp, shift, imm);
P
pbrook 已提交
8880 8881 8882 8883 8884 8885
                        break;
                    case 6: /* Unsigned bitfield extract.  */
                        imm++;
                        if (shift + imm > 32)
                            goto illegal_op;
                        if (imm < 32)
P
pbrook 已提交
8886
                            gen_ubfx(tmp, shift, (1u << imm) - 1);
P
pbrook 已提交
8887 8888 8889 8890 8891 8892
                        break;
                    case 3: /* Bitfield insert/clear.  */
                        if (imm < shift)
                            goto illegal_op;
                        imm = imm + 1 - shift;
                        if (imm != 32) {
P
pbrook 已提交
8893
                            tmp2 = load_reg(s, rd);
8894
                            tcg_gen_deposit_i32(tmp, tmp2, tmp, shift, imm);
8895
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8896 8897 8898 8899 8900 8901 8902
                        }
                        break;
                    case 7:
                        goto illegal_op;
                    default: /* Saturate.  */
                        if (shift) {
                            if (op & 1)
P
pbrook 已提交
8903
                                tcg_gen_sari_i32(tmp, tmp, shift);
P
pbrook 已提交
8904
                            else
P
pbrook 已提交
8905
                                tcg_gen_shli_i32(tmp, tmp, shift);
P
pbrook 已提交
8906
                        }
P
pbrook 已提交
8907
                        tmp2 = tcg_const_i32(imm);
P
pbrook 已提交
8908 8909 8910
                        if (op & 4) {
                            /* Unsigned.  */
                            if ((op & 1) && shift == 0)
8911
                                gen_helper_usat16(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
8912
                            else
8913
                                gen_helper_usat(tmp, cpu_env, tmp, tmp2);
B
bellard 已提交
8914
                        } else {
P
pbrook 已提交
8915 8916
                            /* Signed.  */
                            if ((op & 1) && shift == 0)
8917
                                gen_helper_ssat16(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
8918
                            else
8919
                                gen_helper_ssat(tmp, cpu_env, tmp, tmp2);
B
bellard 已提交
8920
                        }
8921
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8922
                        break;
B
bellard 已提交
8923
                    }
P
pbrook 已提交
8924
                    store_reg(s, rd, tmp);
P
pbrook 已提交
8925 8926 8927 8928 8929 8930 8931 8932
                } else {
                    imm = ((insn & 0x04000000) >> 15)
                          | ((insn & 0x7000) >> 4) | (insn & 0xff);
                    if (insn & (1 << 22)) {
                        /* 16-bit immediate.  */
                        imm |= (insn >> 4) & 0xf000;
                        if (insn & (1 << 23)) {
                            /* movt */
P
pbrook 已提交
8933
                            tmp = load_reg(s, rd);
P
pbrook 已提交
8934
                            tcg_gen_ext16u_i32(tmp, tmp);
P
pbrook 已提交
8935
                            tcg_gen_ori_i32(tmp, tmp, imm << 16);
B
bellard 已提交
8936
                        } else {
P
pbrook 已提交
8937
                            /* movw */
8938
                            tmp = tcg_temp_new_i32();
P
pbrook 已提交
8939
                            tcg_gen_movi_i32(tmp, imm);
B
bellard 已提交
8940 8941
                        }
                    } else {
P
pbrook 已提交
8942 8943
                        /* Add/sub 12-bit immediate.  */
                        if (rn == 15) {
P
pbrook 已提交
8944
                            offset = s->pc & ~(uint32_t)3;
P
pbrook 已提交
8945
                            if (insn & (1 << 23))
P
pbrook 已提交
8946
                                offset -= imm;
P
pbrook 已提交
8947
                            else
P
pbrook 已提交
8948
                                offset += imm;
8949
                            tmp = tcg_temp_new_i32();
P
pbrook 已提交
8950
                            tcg_gen_movi_i32(tmp, offset);
B
bellard 已提交
8951
                        } else {
P
pbrook 已提交
8952
                            tmp = load_reg(s, rn);
P
pbrook 已提交
8953
                            if (insn & (1 << 23))
P
pbrook 已提交
8954
                                tcg_gen_subi_i32(tmp, tmp, imm);
P
pbrook 已提交
8955
                            else
P
pbrook 已提交
8956
                                tcg_gen_addi_i32(tmp, tmp, imm);
B
bellard 已提交
8957
                        }
P
pbrook 已提交
8958
                    }
P
pbrook 已提交
8959
                    store_reg(s, rd, tmp);
P
pbrook 已提交
8960
                }
P
pbrook 已提交
8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986
            } else {
                int shifter_out = 0;
                /* modified 12-bit immediate.  */
                shift = ((insn & 0x04000000) >> 23) | ((insn & 0x7000) >> 12);
                imm = (insn & 0xff);
                switch (shift) {
                case 0: /* XY */
                    /* Nothing to do.  */
                    break;
                case 1: /* 00XY00XY */
                    imm |= imm << 16;
                    break;
                case 2: /* XY00XY00 */
                    imm |= imm << 16;
                    imm <<= 8;
                    break;
                case 3: /* XYXYXYXY */
                    imm |= imm << 16;
                    imm |= imm << 8;
                    break;
                default: /* Rotated constant.  */
                    shift = (shift << 1) | (imm >> 7);
                    imm |= 0x80;
                    imm = imm << (32 - shift);
                    shifter_out = 1;
                    break;
B
bellard 已提交
8987
                }
8988
                tmp2 = tcg_temp_new_i32();
8989
                tcg_gen_movi_i32(tmp2, imm);
P
pbrook 已提交
8990
                rn = (insn >> 16) & 0xf;
8991
                if (rn == 15) {
8992
                    tmp = tcg_temp_new_i32();
8993 8994 8995 8996
                    tcg_gen_movi_i32(tmp, 0);
                } else {
                    tmp = load_reg(s, rn);
                }
P
pbrook 已提交
8997 8998
                op = (insn >> 21) & 0xf;
                if (gen_thumb2_data_op(s, op, (insn & (1 << 20)) != 0,
8999
                                       shifter_out, tmp, tmp2))
P
pbrook 已提交
9000
                    goto illegal_op;
9001
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
9002 9003
                rd = (insn >> 8) & 0xf;
                if (rd != 15) {
9004 9005
                    store_reg(s, rd, tmp);
                } else {
9006
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
9007 9008
                }
            }
P
pbrook 已提交
9009 9010 9011 9012 9013 9014
        }
        break;
    case 12: /* Load/store single data item.  */
        {
        int postinc = 0;
        int writeback = 0;
P
pbrook 已提交
9015
        int user;
P
pbrook 已提交
9016 9017
        if ((insn & 0x01100000) == 0x01000000) {
            if (disas_neon_ls_insn(env, s, insn))
9018
                goto illegal_op;
P
pbrook 已提交
9019 9020
            break;
        }
9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043
        op = ((insn >> 21) & 3) | ((insn >> 22) & 4);
        if (rs == 15) {
            if (!(insn & (1 << 20))) {
                goto illegal_op;
            }
            if (op != 2) {
                /* Byte or halfword load space with dest == r15 : memory hints.
                 * Catch them early so we don't emit pointless addressing code.
                 * This space is a mix of:
                 *  PLD/PLDW/PLI,  which we implement as NOPs (note that unlike
                 *     the ARM encodings, PLDW space doesn't UNDEF for non-v7MP
                 *     cores)
                 *  unallocated hints, which must be treated as NOPs
                 *  UNPREDICTABLE space, which we NOP or UNDEF depending on
                 *     which is easiest for the decoding logic
                 *  Some space which must UNDEF
                 */
                int op1 = (insn >> 23) & 3;
                int op2 = (insn >> 6) & 0x3f;
                if (op & 2) {
                    goto illegal_op;
                }
                if (rn == 15) {
9044 9045 9046
                    /* UNPREDICTABLE, unallocated hint or
                     * PLD/PLDW/PLI (literal)
                     */
9047 9048 9049
                    return 0;
                }
                if (op1 & 1) {
9050
                    return 0; /* PLD/PLDW/PLI or unallocated hint */
9051 9052
                }
                if ((op2 == 0) || ((op2 & 0x3c) == 0x30)) {
9053
                    return 0; /* PLD/PLDW/PLI or unallocated hint */
9054 9055 9056 9057 9058
                }
                /* UNDEF space, or an UNPREDICTABLE */
                return 1;
            }
        }
P
pbrook 已提交
9059
        user = IS_USER(s);
P
pbrook 已提交
9060
        if (rn == 15) {
9061
            addr = tcg_temp_new_i32();
P
pbrook 已提交
9062 9063 9064 9065 9066 9067 9068
            /* PC relative.  */
            /* s->pc has already been incremented by 4.  */
            imm = s->pc & 0xfffffffc;
            if (insn & (1 << 23))
                imm += insn & 0xfff;
            else
                imm -= insn & 0xfff;
P
pbrook 已提交
9069
            tcg_gen_movi_i32(addr, imm);
P
pbrook 已提交
9070
        } else {
P
pbrook 已提交
9071
            addr = load_reg(s, rn);
P
pbrook 已提交
9072 9073 9074
            if (insn & (1 << 23)) {
                /* Positive offset.  */
                imm = insn & 0xfff;
P
pbrook 已提交
9075
                tcg_gen_addi_i32(addr, addr, imm);
P
pbrook 已提交
9076 9077
            } else {
                imm = insn & 0xff;
9078 9079
                switch ((insn >> 8) & 0xf) {
                case 0x0: /* Shifted Register.  */
P
pbrook 已提交
9080
                    shift = (insn >> 4) & 0xf;
9081 9082
                    if (shift > 3) {
                        tcg_temp_free_i32(addr);
9083
                        goto illegal_op;
9084
                    }
P
pbrook 已提交
9085
                    tmp = load_reg(s, rm);
P
pbrook 已提交
9086
                    if (shift)
P
pbrook 已提交
9087
                        tcg_gen_shli_i32(tmp, tmp, shift);
P
pbrook 已提交
9088
                    tcg_gen_add_i32(addr, addr, tmp);
9089
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
9090
                    break;
9091
                case 0xc: /* Negative offset.  */
P
pbrook 已提交
9092
                    tcg_gen_addi_i32(addr, addr, -imm);
P
pbrook 已提交
9093
                    break;
9094
                case 0xe: /* User privilege.  */
P
pbrook 已提交
9095 9096
                    tcg_gen_addi_i32(addr, addr, imm);
                    user = 1;
P
pbrook 已提交
9097
                    break;
9098
                case 0x9: /* Post-decrement.  */
P
pbrook 已提交
9099 9100
                    imm = -imm;
                    /* Fall through.  */
9101
                case 0xb: /* Post-increment.  */
P
pbrook 已提交
9102 9103 9104
                    postinc = 1;
                    writeback = 1;
                    break;
9105
                case 0xd: /* Pre-decrement.  */
P
pbrook 已提交
9106 9107
                    imm = -imm;
                    /* Fall through.  */
9108
                case 0xf: /* Pre-increment.  */
P
pbrook 已提交
9109
                    tcg_gen_addi_i32(addr, addr, imm);
P
pbrook 已提交
9110 9111 9112
                    writeback = 1;
                    break;
                default:
9113
                    tcg_temp_free_i32(addr);
B
bellard 已提交
9114
                    goto illegal_op;
P
pbrook 已提交
9115 9116 9117 9118 9119
                }
            }
        }
        if (insn & (1 << 20)) {
            /* Load.  */
9120
            tmp = tcg_temp_new_i32();
9121
            switch (op) {
9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136
            case 0:
                tcg_gen_qemu_ld8u(tmp, addr, user);
                break;
            case 4:
                tcg_gen_qemu_ld8s(tmp, addr, user);
                break;
            case 1:
                tcg_gen_qemu_ld16u(tmp, addr, user);
                break;
            case 5:
                tcg_gen_qemu_ld16s(tmp, addr, user);
                break;
            case 2:
                tcg_gen_qemu_ld32u(tmp, addr, user);
                break;
9137
            default:
9138
                tcg_temp_free_i32(tmp);
9139 9140
                tcg_temp_free_i32(addr);
                goto illegal_op;
9141 9142 9143
            }
            if (rs == 15) {
                gen_bx(s, tmp);
P
pbrook 已提交
9144
            } else {
9145
                store_reg(s, rs, tmp);
P
pbrook 已提交
9146 9147 9148
            }
        } else {
            /* Store.  */
P
pbrook 已提交
9149
            tmp = load_reg(s, rs);
P
pbrook 已提交
9150
            switch (op) {
9151 9152 9153 9154 9155 9156 9157 9158 9159
            case 0:
                tcg_gen_qemu_st8(tmp, addr, user);
                break;
            case 1:
                tcg_gen_qemu_st16(tmp, addr, user);
                break;
            case 2:
                tcg_gen_qemu_st32(tmp, addr, user);
                break;
9160
            default:
9161
                tcg_temp_free_i32(tmp);
9162 9163
                tcg_temp_free_i32(addr);
                goto illegal_op;
B
bellard 已提交
9164
            }
9165
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9166
        }
P
pbrook 已提交
9167
        if (postinc)
P
pbrook 已提交
9168 9169 9170 9171
            tcg_gen_addi_i32(addr, addr, imm);
        if (writeback) {
            store_reg(s, rn, addr);
        } else {
9172
            tcg_temp_free_i32(addr);
P
pbrook 已提交
9173
        }
P
pbrook 已提交
9174 9175 9176 9177
        }
        break;
    default:
        goto illegal_op;
B
bellard 已提交
9178
    }
P
pbrook 已提交
9179 9180 9181
    return 0;
illegal_op:
    return 1;
B
bellard 已提交
9182 9183
}

9184
static void disas_thumb_insn(CPUARMState *env, DisasContext *s)
B
bellard 已提交
9185 9186 9187 9188
{
    uint32_t val, insn, op, rm, rn, rd, shift, cond;
    int32_t offset;
    int i;
9189 9190 9191
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
    TCGv_i32 addr;
B
bellard 已提交
9192

P
pbrook 已提交
9193 9194
    if (s->condexec_mask) {
        cond = s->condexec_cond;
9195 9196 9197 9198 9199
        if (cond != 0x0e) {     /* Skip conditional when condition is AL. */
          s->condlabel = gen_new_label();
          gen_test_cc(cond ^ 1, s->condlabel);
          s->condjmp = 1;
        }
P
pbrook 已提交
9200 9201
    }

9202
    insn = arm_lduw_code(env, s->pc, s->bswap_code);
B
bellard 已提交
9203
    s->pc += 2;
B
bellard 已提交
9204

B
bellard 已提交
9205 9206
    switch (insn >> 12) {
    case 0: case 1:
9207

B
bellard 已提交
9208 9209 9210 9211 9212
        rd = insn & 7;
        op = (insn >> 11) & 3;
        if (op == 3) {
            /* add/subtract */
            rn = (insn >> 3) & 7;
9213
            tmp = load_reg(s, rn);
B
bellard 已提交
9214 9215
            if (insn & (1 << 10)) {
                /* immediate */
9216
                tmp2 = tcg_temp_new_i32();
9217
                tcg_gen_movi_i32(tmp2, (insn >> 6) & 7);
B
bellard 已提交
9218 9219 9220
            } else {
                /* reg */
                rm = (insn >> 6) & 7;
9221
                tmp2 = load_reg(s, rm);
B
bellard 已提交
9222
            }
P
pbrook 已提交
9223 9224
            if (insn & (1 << 9)) {
                if (s->condexec_mask)
9225
                    tcg_gen_sub_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9226
                else
9227
                    gen_sub_CC(tmp, tmp, tmp2);
P
pbrook 已提交
9228 9229
            } else {
                if (s->condexec_mask)
9230
                    tcg_gen_add_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9231
                else
9232
                    gen_add_CC(tmp, tmp, tmp2);
P
pbrook 已提交
9233
            }
9234
            tcg_temp_free_i32(tmp2);
9235
            store_reg(s, rd, tmp);
B
bellard 已提交
9236 9237 9238 9239
        } else {
            /* shift immediate */
            rm = (insn >> 3) & 7;
            shift = (insn >> 6) & 0x1f;
P
pbrook 已提交
9240 9241 9242 9243 9244
            tmp = load_reg(s, rm);
            gen_arm_shift_im(tmp, op, shift, s->condexec_mask == 0);
            if (!s->condexec_mask)
                gen_logic_CC(tmp);
            store_reg(s, rd, tmp);
B
bellard 已提交
9245 9246 9247 9248 9249 9250
        }
        break;
    case 2: case 3:
        /* arithmetic large immediate */
        op = (insn >> 11) & 3;
        rd = (insn >> 8) & 0x7;
9251
        if (op == 0) { /* mov */
9252
            tmp = tcg_temp_new_i32();
9253
            tcg_gen_movi_i32(tmp, insn & 0xff);
P
pbrook 已提交
9254
            if (!s->condexec_mask)
9255 9256 9257 9258
                gen_logic_CC(tmp);
            store_reg(s, rd, tmp);
        } else {
            tmp = load_reg(s, rd);
9259
            tmp2 = tcg_temp_new_i32();
9260 9261 9262
            tcg_gen_movi_i32(tmp2, insn & 0xff);
            switch (op) {
            case 1: /* cmp */
9263
                gen_sub_CC(tmp, tmp, tmp2);
9264 9265
                tcg_temp_free_i32(tmp);
                tcg_temp_free_i32(tmp2);
9266 9267 9268 9269 9270
                break;
            case 2: /* add */
                if (s->condexec_mask)
                    tcg_gen_add_i32(tmp, tmp, tmp2);
                else
9271
                    gen_add_CC(tmp, tmp, tmp2);
9272
                tcg_temp_free_i32(tmp2);
9273 9274 9275 9276 9277 9278
                store_reg(s, rd, tmp);
                break;
            case 3: /* sub */
                if (s->condexec_mask)
                    tcg_gen_sub_i32(tmp, tmp, tmp2);
                else
9279
                    gen_sub_CC(tmp, tmp, tmp2);
9280
                tcg_temp_free_i32(tmp2);
9281 9282 9283
                store_reg(s, rd, tmp);
                break;
            }
B
bellard 已提交
9284 9285 9286 9287 9288
        }
        break;
    case 4:
        if (insn & (1 << 11)) {
            rd = (insn >> 8) & 7;
B
bellard 已提交
9289 9290 9291
            /* load pc-relative.  Bit 1 of PC is ignored.  */
            val = s->pc + 2 + ((insn & 0xff) * 4);
            val &= ~(uint32_t)2;
9292
            addr = tcg_temp_new_i32();
P
pbrook 已提交
9293
            tcg_gen_movi_i32(addr, val);
9294 9295
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
9296
            tcg_temp_free_i32(addr);
P
pbrook 已提交
9297
            store_reg(s, rd, tmp);
B
bellard 已提交
9298 9299 9300 9301 9302 9303 9304 9305 9306
            break;
        }
        if (insn & (1 << 10)) {
            /* data processing extended or blx */
            rd = (insn & 7) | ((insn >> 4) & 8);
            rm = (insn >> 3) & 0xf;
            op = (insn >> 8) & 3;
            switch (op) {
            case 0: /* add */
9307 9308 9309
                tmp = load_reg(s, rd);
                tmp2 = load_reg(s, rm);
                tcg_gen_add_i32(tmp, tmp, tmp2);
9310
                tcg_temp_free_i32(tmp2);
9311
                store_reg(s, rd, tmp);
B
bellard 已提交
9312 9313
                break;
            case 1: /* cmp */
9314 9315
                tmp = load_reg(s, rd);
                tmp2 = load_reg(s, rm);
9316
                gen_sub_CC(tmp, tmp, tmp2);
9317 9318
                tcg_temp_free_i32(tmp2);
                tcg_temp_free_i32(tmp);
B
bellard 已提交
9319 9320
                break;
            case 2: /* mov/cpy */
9321 9322
                tmp = load_reg(s, rm);
                store_reg(s, rd, tmp);
B
bellard 已提交
9323 9324
                break;
            case 3:/* branch [and link] exchange thumb register */
P
pbrook 已提交
9325
                tmp = load_reg(s, rm);
B
bellard 已提交
9326
                if (insn & (1 << 7)) {
9327
                    ARCH(5);
B
bellard 已提交
9328
                    val = (uint32_t)s->pc | 1;
9329
                    tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
9330 9331
                    tcg_gen_movi_i32(tmp2, val);
                    store_reg(s, 14, tmp2);
B
bellard 已提交
9332
                }
9333
                /* already thumb, no need to check */
P
pbrook 已提交
9334
                gen_bx(s, tmp);
B
bellard 已提交
9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353
                break;
            }
            break;
        }

        /* data processing register */
        rd = insn & 7;
        rm = (insn >> 3) & 7;
        op = (insn >> 6) & 0xf;
        if (op == 2 || op == 3 || op == 4 || op == 7) {
            /* the shift/rotate ops want the operands backwards */
            val = rm;
            rm = rd;
            rd = val;
            val = 1;
        } else {
            val = 0;
        }

9354
        if (op == 9) { /* neg */
9355
            tmp = tcg_temp_new_i32();
9356 9357 9358 9359
            tcg_gen_movi_i32(tmp, 0);
        } else if (op != 0xf) { /* mvn doesn't read its first operand */
            tmp = load_reg(s, rd);
        } else {
9360
            TCGV_UNUSED_I32(tmp);
9361
        }
B
bellard 已提交
9362

9363
        tmp2 = load_reg(s, rm);
B
bellard 已提交
9364
        switch (op) {
B
bellard 已提交
9365
        case 0x0: /* and */
9366
            tcg_gen_and_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9367
            if (!s->condexec_mask)
9368
                gen_logic_CC(tmp);
B
bellard 已提交
9369 9370
            break;
        case 0x1: /* eor */
9371
            tcg_gen_xor_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9372
            if (!s->condexec_mask)
9373
                gen_logic_CC(tmp);
B
bellard 已提交
9374 9375
            break;
        case 0x2: /* lsl */
P
pbrook 已提交
9376
            if (s->condexec_mask) {
9377
                gen_shl(tmp2, tmp2, tmp);
P
pbrook 已提交
9378
            } else {
9379
                gen_helper_shl_cc(tmp2, cpu_env, tmp2, tmp);
9380
                gen_logic_CC(tmp2);
P
pbrook 已提交
9381
            }
B
bellard 已提交
9382 9383
            break;
        case 0x3: /* lsr */
P
pbrook 已提交
9384
            if (s->condexec_mask) {
9385
                gen_shr(tmp2, tmp2, tmp);
P
pbrook 已提交
9386
            } else {
9387
                gen_helper_shr_cc(tmp2, cpu_env, tmp2, tmp);
9388
                gen_logic_CC(tmp2);
P
pbrook 已提交
9389
            }
B
bellard 已提交
9390 9391
            break;
        case 0x4: /* asr */
P
pbrook 已提交
9392
            if (s->condexec_mask) {
9393
                gen_sar(tmp2, tmp2, tmp);
P
pbrook 已提交
9394
            } else {
9395
                gen_helper_sar_cc(tmp2, cpu_env, tmp2, tmp);
9396
                gen_logic_CC(tmp2);
P
pbrook 已提交
9397
            }
B
bellard 已提交
9398 9399
            break;
        case 0x5: /* adc */
9400
            if (s->condexec_mask) {
9401
                gen_adc(tmp, tmp2);
9402 9403 9404
            } else {
                gen_adc_CC(tmp, tmp, tmp2);
            }
B
bellard 已提交
9405 9406
            break;
        case 0x6: /* sbc */
9407
            if (s->condexec_mask) {
9408
                gen_sub_carry(tmp, tmp, tmp2);
9409 9410 9411
            } else {
                gen_sbc_CC(tmp, tmp, tmp2);
            }
B
bellard 已提交
9412 9413
            break;
        case 0x7: /* ror */
P
pbrook 已提交
9414
            if (s->condexec_mask) {
9415 9416
                tcg_gen_andi_i32(tmp, tmp, 0x1f);
                tcg_gen_rotr_i32(tmp2, tmp2, tmp);
P
pbrook 已提交
9417
            } else {
9418
                gen_helper_ror_cc(tmp2, cpu_env, tmp2, tmp);
9419
                gen_logic_CC(tmp2);
P
pbrook 已提交
9420
            }
B
bellard 已提交
9421 9422
            break;
        case 0x8: /* tst */
9423 9424
            tcg_gen_and_i32(tmp, tmp, tmp2);
            gen_logic_CC(tmp);
B
bellard 已提交
9425
            rd = 16;
B
bellard 已提交
9426
            break;
B
bellard 已提交
9427
        case 0x9: /* neg */
P
pbrook 已提交
9428
            if (s->condexec_mask)
9429
                tcg_gen_neg_i32(tmp, tmp2);
P
pbrook 已提交
9430
            else
9431
                gen_sub_CC(tmp, tmp, tmp2);
B
bellard 已提交
9432 9433
            break;
        case 0xa: /* cmp */
9434
            gen_sub_CC(tmp, tmp, tmp2);
B
bellard 已提交
9435 9436 9437
            rd = 16;
            break;
        case 0xb: /* cmn */
9438
            gen_add_CC(tmp, tmp, tmp2);
B
bellard 已提交
9439 9440 9441
            rd = 16;
            break;
        case 0xc: /* orr */
9442
            tcg_gen_or_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9443
            if (!s->condexec_mask)
9444
                gen_logic_CC(tmp);
B
bellard 已提交
9445 9446
            break;
        case 0xd: /* mul */
9447
            tcg_gen_mul_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9448
            if (!s->condexec_mask)
9449
                gen_logic_CC(tmp);
B
bellard 已提交
9450 9451
            break;
        case 0xe: /* bic */
9452
            tcg_gen_andc_i32(tmp, tmp, tmp2);
P
pbrook 已提交
9453
            if (!s->condexec_mask)
9454
                gen_logic_CC(tmp);
B
bellard 已提交
9455 9456
            break;
        case 0xf: /* mvn */
9457
            tcg_gen_not_i32(tmp2, tmp2);
P
pbrook 已提交
9458
            if (!s->condexec_mask)
9459
                gen_logic_CC(tmp2);
B
bellard 已提交
9460
            val = 1;
B
bellard 已提交
9461
            rm = rd;
B
bellard 已提交
9462 9463 9464
            break;
        }
        if (rd != 16) {
9465 9466 9467
            if (val) {
                store_reg(s, rm, tmp2);
                if (op != 0xf)
9468
                    tcg_temp_free_i32(tmp);
9469 9470
            } else {
                store_reg(s, rd, tmp);
9471
                tcg_temp_free_i32(tmp2);
9472 9473
            }
        } else {
9474 9475
            tcg_temp_free_i32(tmp);
            tcg_temp_free_i32(tmp2);
B
bellard 已提交
9476 9477 9478 9479 9480 9481 9482 9483 9484
        }
        break;

    case 5:
        /* load/store register offset.  */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
        rm = (insn >> 6) & 7;
        op = (insn >> 9) & 7;
P
pbrook 已提交
9485
        addr = load_reg(s, rn);
P
pbrook 已提交
9486
        tmp = load_reg(s, rm);
P
pbrook 已提交
9487
        tcg_gen_add_i32(addr, addr, tmp);
9488
        tcg_temp_free_i32(tmp);
B
bellard 已提交
9489

9490
        if (op < 3) { /* store */
P
pbrook 已提交
9491
            tmp = load_reg(s, rd);
9492 9493 9494
        } else {
            tmp = tcg_temp_new_i32();
        }
B
bellard 已提交
9495 9496 9497

        switch (op) {
        case 0: /* str */
9498
            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
B
bellard 已提交
9499 9500
            break;
        case 1: /* strh */
9501
            tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
B
bellard 已提交
9502 9503
            break;
        case 2: /* strb */
9504
            tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
B
bellard 已提交
9505 9506
            break;
        case 3: /* ldrsb */
9507
            tcg_gen_qemu_ld8s(tmp, addr, IS_USER(s));
B
bellard 已提交
9508 9509
            break;
        case 4: /* ldr */
9510
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
B
bellard 已提交
9511 9512
            break;
        case 5: /* ldrh */
9513
            tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
B
bellard 已提交
9514 9515
            break;
        case 6: /* ldrb */
9516
            tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
B
bellard 已提交
9517 9518
            break;
        case 7: /* ldrsh */
9519
            tcg_gen_qemu_ld16s(tmp, addr, IS_USER(s));
B
bellard 已提交
9520 9521
            break;
        }
9522
        if (op >= 3) { /* load */
P
pbrook 已提交
9523
            store_reg(s, rd, tmp);
9524 9525 9526
        } else {
            tcg_temp_free_i32(tmp);
        }
9527
        tcg_temp_free_i32(addr);
B
bellard 已提交
9528 9529 9530 9531 9532 9533
        break;

    case 6:
        /* load/store word immediate offset */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
P
pbrook 已提交
9534
        addr = load_reg(s, rn);
B
bellard 已提交
9535
        val = (insn >> 4) & 0x7c;
P
pbrook 已提交
9536
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9537 9538 9539

        if (insn & (1 << 11)) {
            /* load */
9540 9541
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9542
            store_reg(s, rd, tmp);
B
bellard 已提交
9543 9544
        } else {
            /* store */
P
pbrook 已提交
9545
            tmp = load_reg(s, rd);
9546 9547
            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9548
        }
9549
        tcg_temp_free_i32(addr);
B
bellard 已提交
9550 9551 9552 9553 9554 9555
        break;

    case 7:
        /* load/store byte immediate offset */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
P
pbrook 已提交
9556
        addr = load_reg(s, rn);
B
bellard 已提交
9557
        val = (insn >> 6) & 0x1f;
P
pbrook 已提交
9558
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9559 9560 9561

        if (insn & (1 << 11)) {
            /* load */
9562 9563
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9564
            store_reg(s, rd, tmp);
B
bellard 已提交
9565 9566
        } else {
            /* store */
P
pbrook 已提交
9567
            tmp = load_reg(s, rd);
9568 9569
            tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9570
        }
9571
        tcg_temp_free_i32(addr);
B
bellard 已提交
9572 9573 9574 9575 9576 9577
        break;

    case 8:
        /* load/store halfword immediate offset */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
P
pbrook 已提交
9578
        addr = load_reg(s, rn);
B
bellard 已提交
9579
        val = (insn >> 5) & 0x3e;
P
pbrook 已提交
9580
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9581 9582 9583

        if (insn & (1 << 11)) {
            /* load */
9584 9585
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9586
            store_reg(s, rd, tmp);
B
bellard 已提交
9587 9588
        } else {
            /* store */
P
pbrook 已提交
9589
            tmp = load_reg(s, rd);
9590 9591
            tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9592
        }
9593
        tcg_temp_free_i32(addr);
B
bellard 已提交
9594 9595 9596 9597 9598
        break;

    case 9:
        /* load/store from stack */
        rd = (insn >> 8) & 7;
P
pbrook 已提交
9599
        addr = load_reg(s, 13);
B
bellard 已提交
9600
        val = (insn & 0xff) * 4;
P
pbrook 已提交
9601
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9602 9603 9604

        if (insn & (1 << 11)) {
            /* load */
9605 9606
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9607
            store_reg(s, rd, tmp);
B
bellard 已提交
9608 9609
        } else {
            /* store */
P
pbrook 已提交
9610
            tmp = load_reg(s, rd);
9611 9612
            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9613
        }
9614
        tcg_temp_free_i32(addr);
B
bellard 已提交
9615 9616 9617 9618 9619
        break;

    case 10:
        /* add to high reg */
        rd = (insn >> 8) & 7;
B
bellard 已提交
9620 9621
        if (insn & (1 << 11)) {
            /* SP */
P
pbrook 已提交
9622
            tmp = load_reg(s, 13);
B
bellard 已提交
9623 9624
        } else {
            /* PC. bit 1 is ignored.  */
9625
            tmp = tcg_temp_new_i32();
P
pbrook 已提交
9626
            tcg_gen_movi_i32(tmp, (s->pc + 2) & ~(uint32_t)2);
B
bellard 已提交
9627
        }
B
bellard 已提交
9628
        val = (insn & 0xff) * 4;
P
pbrook 已提交
9629 9630
        tcg_gen_addi_i32(tmp, tmp, val);
        store_reg(s, rd, tmp);
B
bellard 已提交
9631 9632 9633 9634 9635 9636 9637 9638
        break;

    case 11:
        /* misc */
        op = (insn >> 8) & 0xf;
        switch (op) {
        case 0:
            /* adjust stack pointer */
P
pbrook 已提交
9639
            tmp = load_reg(s, 13);
B
bellard 已提交
9640 9641
            val = (insn & 0x7f) * 4;
            if (insn & (1 << 7))
B
balrog 已提交
9642
                val = -(int32_t)val;
P
pbrook 已提交
9643 9644
            tcg_gen_addi_i32(tmp, tmp, val);
            store_reg(s, 13, tmp);
B
bellard 已提交
9645 9646
            break;

P
pbrook 已提交
9647 9648 9649 9650
        case 2: /* sign/zero extend.  */
            ARCH(6);
            rd = insn & 7;
            rm = (insn >> 3) & 7;
P
pbrook 已提交
9651
            tmp = load_reg(s, rm);
P
pbrook 已提交
9652
            switch ((insn >> 6) & 3) {
P
pbrook 已提交
9653 9654 9655 9656
            case 0: gen_sxth(tmp); break;
            case 1: gen_sxtb(tmp); break;
            case 2: gen_uxth(tmp); break;
            case 3: gen_uxtb(tmp); break;
P
pbrook 已提交
9657
            }
P
pbrook 已提交
9658
            store_reg(s, rd, tmp);
P
pbrook 已提交
9659
            break;
B
bellard 已提交
9660 9661
        case 4: case 5: case 0xc: case 0xd:
            /* push/pop */
P
pbrook 已提交
9662
            addr = load_reg(s, 13);
B
bellard 已提交
9663 9664
            if (insn & (1 << 8))
                offset = 4;
B
bellard 已提交
9665
            else
B
bellard 已提交
9666 9667 9668 9669 9670 9671
                offset = 0;
            for (i = 0; i < 8; i++) {
                if (insn & (1 << i))
                    offset += 4;
            }
            if ((insn & (1 << 11)) == 0) {
P
pbrook 已提交
9672
                tcg_gen_addi_i32(addr, addr, -offset);
B
bellard 已提交
9673
            }
B
bellard 已提交
9674 9675 9676 9677
            for (i = 0; i < 8; i++) {
                if (insn & (1 << i)) {
                    if (insn & (1 << 11)) {
                        /* pop */
9678 9679
                        tmp = tcg_temp_new_i32();
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9680
                        store_reg(s, i, tmp);
B
bellard 已提交
9681 9682
                    } else {
                        /* push */
P
pbrook 已提交
9683
                        tmp = load_reg(s, i);
9684 9685
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                        tcg_temp_free_i32(tmp);
B
bellard 已提交
9686
                    }
B
bellard 已提交
9687
                    /* advance to the next address.  */
P
pbrook 已提交
9688
                    tcg_gen_addi_i32(addr, addr, 4);
B
bellard 已提交
9689 9690
                }
            }
9691
            TCGV_UNUSED_I32(tmp);
B
bellard 已提交
9692 9693 9694
            if (insn & (1 << 8)) {
                if (insn & (1 << 11)) {
                    /* pop pc */
9695 9696
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
B
bellard 已提交
9697 9698 9699 9700
                    /* don't set the pc until the rest of the instruction
                       has completed */
                } else {
                    /* push lr */
P
pbrook 已提交
9701
                    tmp = load_reg(s, 14);
9702 9703
                    tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
9704
                }
P
pbrook 已提交
9705
                tcg_gen_addi_i32(addr, addr, 4);
B
bellard 已提交
9706
            }
B
bellard 已提交
9707
            if ((insn & (1 << 11)) == 0) {
P
pbrook 已提交
9708
                tcg_gen_addi_i32(addr, addr, -offset);
B
bellard 已提交
9709
            }
B
bellard 已提交
9710
            /* write back the new stack pointer */
P
pbrook 已提交
9711
            store_reg(s, 13, addr);
B
bellard 已提交
9712
            /* set the new PC value */
9713 9714 9715
            if ((insn & 0x0900) == 0x0900) {
                store_reg_from_load(env, s, 15, tmp);
            }
B
bellard 已提交
9716 9717
            break;

P
pbrook 已提交
9718 9719
        case 1: case 3: case 9: case 11: /* czb */
            rm = insn & 7;
P
pbrook 已提交
9720
            tmp = load_reg(s, rm);
P
pbrook 已提交
9721 9722 9723
            s->condlabel = gen_new_label();
            s->condjmp = 1;
            if (insn & (1 << 11))
P
pbrook 已提交
9724
                tcg_gen_brcondi_i32(TCG_COND_EQ, tmp, 0, s->condlabel);
P
pbrook 已提交
9725
            else
P
pbrook 已提交
9726
                tcg_gen_brcondi_i32(TCG_COND_NE, tmp, 0, s->condlabel);
9727
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744
            offset = ((insn & 0xf8) >> 2) | (insn & 0x200) >> 3;
            val = (uint32_t)s->pc + 2;
            val += offset;
            gen_jmp(s, val);
            break;

        case 15: /* IT, nop-hint.  */
            if ((insn & 0xf) == 0) {
                gen_nop_hint(s, (insn >> 4) & 0xf);
                break;
            }
            /* If Then.  */
            s->condexec_cond = (insn >> 4) & 0xe;
            s->condexec_mask = insn & 0x1f;
            /* No actual code generated for this insn, just setup state.  */
            break;

P
pbrook 已提交
9745
        case 0xe: /* bkpt */
9746
            ARCH(5);
9747
            gen_exception_insn(s, 2, EXCP_BKPT);
P
pbrook 已提交
9748 9749
            break;

P
pbrook 已提交
9750 9751 9752 9753
        case 0xa: /* rev */
            ARCH(6);
            rn = (insn >> 3) & 0x7;
            rd = insn & 0x7;
P
pbrook 已提交
9754
            tmp = load_reg(s, rn);
P
pbrook 已提交
9755
            switch ((insn >> 6) & 3) {
A
aurel32 已提交
9756
            case 0: tcg_gen_bswap32_i32(tmp, tmp); break;
P
pbrook 已提交
9757 9758
            case 1: gen_rev16(tmp); break;
            case 3: gen_revsh(tmp); break;
P
pbrook 已提交
9759 9760
            default: goto illegal_op;
            }
P
pbrook 已提交
9761
            store_reg(s, rd, tmp);
P
pbrook 已提交
9762 9763
            break;

9764 9765 9766 9767 9768
        case 6:
            switch ((insn >> 5) & 7) {
            case 2:
                /* setend */
                ARCH(6);
9769 9770
                if (((insn >> 3) & 1) != s->bswap_code) {
                    /* Dynamic endianness switching not implemented. */
9771 9772
                    goto illegal_op;
                }
P
pbrook 已提交
9773
                break;
9774 9775 9776 9777 9778
            case 3:
                /* cps */
                ARCH(6);
                if (IS_USER(s)) {
                    break;
P
pbrook 已提交
9779
                }
9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802
                if (IS_M(env)) {
                    tmp = tcg_const_i32((insn & (1 << 4)) != 0);
                    /* FAULTMASK */
                    if (insn & 1) {
                        addr = tcg_const_i32(19);
                        gen_helper_v7m_msr(cpu_env, addr, tmp);
                        tcg_temp_free_i32(addr);
                    }
                    /* PRIMASK */
                    if (insn & 2) {
                        addr = tcg_const_i32(16);
                        gen_helper_v7m_msr(cpu_env, addr, tmp);
                        tcg_temp_free_i32(addr);
                    }
                    tcg_temp_free_i32(tmp);
                    gen_lookup_tb(s);
                } else {
                    if (insn & (1 << 4)) {
                        shift = CPSR_A | CPSR_I | CPSR_F;
                    } else {
                        shift = 0;
                    }
                    gen_set_psr_im(s, ((insn & 7) << 6), 0, shift);
P
pbrook 已提交
9803
                }
9804 9805 9806
                break;
            default:
                goto undef;
P
pbrook 已提交
9807 9808 9809
            }
            break;

B
bellard 已提交
9810 9811 9812 9813 9814 9815
        default:
            goto undef;
        }
        break;

    case 12:
9816
    {
B
bellard 已提交
9817
        /* load/store multiple */
9818 9819
        TCGv_i32 loaded_var;
        TCGV_UNUSED_I32(loaded_var);
B
bellard 已提交
9820
        rn = (insn >> 8) & 0x7;
P
pbrook 已提交
9821
        addr = load_reg(s, rn);
B
bellard 已提交
9822 9823 9824 9825
        for (i = 0; i < 8; i++) {
            if (insn & (1 << i)) {
                if (insn & (1 << 11)) {
                    /* load */
9826 9827
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
9828 9829 9830 9831 9832
                    if (i == rn) {
                        loaded_var = tmp;
                    } else {
                        store_reg(s, i, tmp);
                    }
B
bellard 已提交
9833 9834
                } else {
                    /* store */
P
pbrook 已提交
9835
                    tmp = load_reg(s, i);
9836 9837
                    tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
9838
                }
B
bellard 已提交
9839
                /* advance to the next address */
P
pbrook 已提交
9840
                tcg_gen_addi_i32(addr, addr, 4);
B
bellard 已提交
9841 9842
            }
        }
P
pbrook 已提交
9843
        if ((insn & (1 << rn)) == 0) {
9844
            /* base reg not in list: base register writeback */
P
pbrook 已提交
9845 9846
            store_reg(s, rn, addr);
        } else {
9847 9848 9849 9850
            /* base reg in list: if load, complete it now */
            if (insn & (1 << 11)) {
                store_reg(s, rn, loaded_var);
            }
9851
            tcg_temp_free_i32(addr);
P
pbrook 已提交
9852
        }
B
bellard 已提交
9853
        break;
9854
    }
B
bellard 已提交
9855 9856 9857 9858 9859 9860 9861 9862
    case 13:
        /* conditional branch or swi */
        cond = (insn >> 8) & 0xf;
        if (cond == 0xe)
            goto undef;

        if (cond == 0xf) {
            /* swi */
9863
            gen_set_pc_im(s->pc);
P
pbrook 已提交
9864
            s->is_jmp = DISAS_SWI;
B
bellard 已提交
9865 9866 9867
            break;
        }
        /* generate a conditional jump to next instruction */
9868
        s->condlabel = gen_new_label();
P
pbrook 已提交
9869
        gen_test_cc(cond ^ 1, s->condlabel);
9870
        s->condjmp = 1;
B
bellard 已提交
9871 9872

        /* jump to the offset */
B
bellard 已提交
9873
        val = (uint32_t)s->pc + 2;
B
bellard 已提交
9874
        offset = ((int32_t)insn << 24) >> 24;
B
bellard 已提交
9875
        val += offset << 1;
B
bellard 已提交
9876
        gen_jmp(s, val);
B
bellard 已提交
9877 9878 9879
        break;

    case 14:
P
pbrook 已提交
9880
        if (insn & (1 << 11)) {
P
pbrook 已提交
9881 9882
            if (disas_thumb2_insn(env, s, insn))
              goto undef32;
P
pbrook 已提交
9883 9884
            break;
        }
P
pbrook 已提交
9885
        /* unconditional branch */
B
bellard 已提交
9886 9887 9888
        val = (uint32_t)s->pc;
        offset = ((int32_t)insn << 21) >> 21;
        val += (offset << 1) + 2;
B
bellard 已提交
9889
        gen_jmp(s, val);
B
bellard 已提交
9890 9891 9892
        break;

    case 15:
P
pbrook 已提交
9893
        if (disas_thumb2_insn(env, s, insn))
B
balrog 已提交
9894
            goto undef32;
P
pbrook 已提交
9895
        break;
B
bellard 已提交
9896 9897
    }
    return;
P
pbrook 已提交
9898
undef32:
9899
    gen_exception_insn(s, 4, EXCP_UDEF);
P
pbrook 已提交
9900 9901
    return;
illegal_op:
B
bellard 已提交
9902
undef:
9903
    gen_exception_insn(s, 2, EXCP_UDEF);
B
bellard 已提交
9904 9905
}

B
bellard 已提交
9906 9907 9908
/* generate intermediate code in gen_opc_buf and gen_opparam_buf for
   basic block 'tb'. If search_pc is TRUE, also generate PC
   information for each intermediate instruction. */
9909
static inline void gen_intermediate_code_internal(ARMCPU *cpu,
9910
                                                  TranslationBlock *tb,
9911
                                                  bool search_pc)
B
bellard 已提交
9912
{
9913
    CPUARMState *env = &cpu->env;
B
bellard 已提交
9914
    DisasContext dc1, *dc = &dc1;
9915
    CPUBreakpoint *bp;
B
bellard 已提交
9916 9917
    uint16_t *gen_opc_end;
    int j, lj;
B
bellard 已提交
9918
    target_ulong pc_start;
B
bellard 已提交
9919
    uint32_t next_page_start;
P
pbrook 已提交
9920 9921
    int num_insns;
    int max_insns;
9922

B
bellard 已提交
9923
    /* generate intermediate code */
B
bellard 已提交
9924
    pc_start = tb->pc;
9925

B
bellard 已提交
9926 9927
    dc->tb = tb;

9928
    gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE;
B
bellard 已提交
9929 9930 9931

    dc->is_jmp = DISAS_NEXT;
    dc->pc = pc_start;
B
bellard 已提交
9932
    dc->singlestep_enabled = env->singlestep_enabled;
9933
    dc->condjmp = 0;
9934
    dc->thumb = ARM_TBFLAG_THUMB(tb->flags);
P
Paul Brook 已提交
9935
    dc->bswap_code = ARM_TBFLAG_BSWAP_CODE(tb->flags);
9936 9937
    dc->condexec_mask = (ARM_TBFLAG_CONDEXEC(tb->flags) & 0xf) << 1;
    dc->condexec_cond = ARM_TBFLAG_CONDEXEC(tb->flags) >> 4;
B
bellard 已提交
9938
#if !defined(CONFIG_USER_ONLY)
9939
    dc->user = (ARM_TBFLAG_PRIV(tb->flags) == 0);
B
bellard 已提交
9940
#endif
9941
    dc->vfp_enabled = ARM_TBFLAG_VFPEN(tb->flags);
9942 9943
    dc->vec_len = ARM_TBFLAG_VECLEN(tb->flags);
    dc->vec_stride = ARM_TBFLAG_VECSTRIDE(tb->flags);
P
pbrook 已提交
9944 9945 9946 9947
    cpu_F0s = tcg_temp_new_i32();
    cpu_F1s = tcg_temp_new_i32();
    cpu_F0d = tcg_temp_new_i64();
    cpu_F1d = tcg_temp_new_i64();
P
pbrook 已提交
9948 9949
    cpu_V0 = cpu_F0d;
    cpu_V1 = cpu_F1d;
P
pbrook 已提交
9950
    /* FIXME: cpu_M0 can probably be the same as cpu_V0.  */
P
pbrook 已提交
9951
    cpu_M0 = tcg_temp_new_i64();
B
bellard 已提交
9952
    next_page_start = (pc_start & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE;
B
bellard 已提交
9953
    lj = -1;
P
pbrook 已提交
9954 9955 9956 9957 9958
    num_insns = 0;
    max_insns = tb->cflags & CF_COUNT_MASK;
    if (max_insns == 0)
        max_insns = CF_COUNT_MASK;

9959
    gen_tb_start();
9960

9961 9962
    tcg_clear_temp_count();

9963 9964 9965
    /* A note on handling of the condexec (IT) bits:
     *
     * We want to avoid the overhead of having to write the updated condexec
9966
     * bits back to the CPUARMState for every instruction in an IT block. So:
9967
     * (1) if the condexec bits are not already zero then we write
9968
     * zero back into the CPUARMState now. This avoids complications trying
9969 9970 9971 9972 9973
     * to do it at the end of the block. (For example if we don't do this
     * it's hard to identify whether we can safely skip writing condexec
     * at the end of the TB, which we definitely want to do for the case
     * where a TB doesn't do anything with the IT state at all.)
     * (2) if we are going to leave the TB then we call gen_set_condexec()
9974
     * which will write the correct value into CPUARMState if zero is wrong.
9975 9976 9977 9978 9979 9980
     * This is done both for leaving the TB at the end, and for leaving
     * it because of an exception we know will happen, which is done in
     * gen_exception_insn(). The latter is necessary because we need to
     * leave the TB with the PC/IT state just prior to execution of the
     * instruction which caused the exception.
     * (3) if we leave the TB unexpectedly (eg a data abort on a load)
9981
     * then the CPUARMState will be wrong and we need to reset it.
9982 9983 9984
     * This is handled in the same way as restoration of the
     * PC in these situations: we will be called again with search_pc=1
     * and generate a mapping of the condexec bits for each PC in
9985 9986
     * gen_opc_condexec_bits[]. restore_state_to_opc() then uses
     * this to restore the condexec bits.
9987 9988 9989
     *
     * Note that there are no instructions which can read the condexec
     * bits, and none which can write non-static values to them, so
9990
     * we don't need to care about whether CPUARMState is correct in the
9991 9992 9993
     * middle of a TB.
     */

P
pbrook 已提交
9994 9995
    /* Reset the conditional execution bits immediately. This avoids
       complications trying to do it at the end of the block.  */
9996
    if (dc->condexec_mask || dc->condexec_cond)
P
pbrook 已提交
9997
      {
9998
        TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
9999
        tcg_gen_movi_i32(tmp, 0);
P
pbrook 已提交
10000
        store_cpu_field(tmp, condexec_bits);
P
pbrook 已提交
10001
      }
B
bellard 已提交
10002
    do {
10003 10004 10005 10006 10007 10008 10009 10010 10011 10012
#ifdef CONFIG_USER_ONLY
        /* Intercept jump to the magic kernel page.  */
        if (dc->pc >= 0xffff0000) {
            /* We always get here via a jump, so know we are not in a
               conditional execution block.  */
            gen_exception(EXCP_KERNEL_TRAP);
            dc->is_jmp = DISAS_UPDATE;
            break;
        }
#else
P
pbrook 已提交
10013 10014 10015
        if (dc->pc >= 0xfffffff0 && IS_M(env)) {
            /* We always get here via a jump, so know we are not in a
               conditional execution block.  */
P
pbrook 已提交
10016
            gen_exception(EXCP_EXCEPTION_EXIT);
10017 10018
            dc->is_jmp = DISAS_UPDATE;
            break;
P
pbrook 已提交
10019 10020 10021
        }
#endif

B
Blue Swirl 已提交
10022 10023
        if (unlikely(!QTAILQ_EMPTY(&env->breakpoints))) {
            QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
10024
                if (bp->pc == dc->pc) {
10025
                    gen_exception_insn(dc, 0, EXCP_DEBUG);
P
pbrook 已提交
10026 10027 10028 10029
                    /* Advance PC so that clearing the breakpoint will
                       invalidate this TB.  */
                    dc->pc += 2;
                    goto done_generating;
B
bellard 已提交
10030 10031 10032
                }
            }
        }
B
bellard 已提交
10033
        if (search_pc) {
10034
            j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
B
bellard 已提交
10035 10036 10037
            if (lj < j) {
                lj++;
                while (lj < j)
10038
                    tcg_ctx.gen_opc_instr_start[lj++] = 0;
B
bellard 已提交
10039
            }
10040
            tcg_ctx.gen_opc_pc[lj] = dc->pc;
10041
            gen_opc_condexec_bits[lj] = (dc->condexec_cond << 4) | (dc->condexec_mask >> 1);
10042
            tcg_ctx.gen_opc_instr_start[lj] = 1;
10043
            tcg_ctx.gen_opc_icount[lj] = num_insns;
B
bellard 已提交
10044
        }
10045

P
pbrook 已提交
10046 10047 10048
        if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
            gen_io_start();

10049
        if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) {
10050 10051 10052
            tcg_gen_debug_insn_start(dc->pc);
        }

10053
        if (dc->thumb) {
P
pbrook 已提交
10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065
            disas_thumb_insn(env, dc);
            if (dc->condexec_mask) {
                dc->condexec_cond = (dc->condexec_cond & 0xe)
                                   | ((dc->condexec_mask >> 4) & 1);
                dc->condexec_mask = (dc->condexec_mask << 1) & 0x1f;
                if (dc->condexec_mask == 0) {
                    dc->condexec_cond = 0;
                }
            }
        } else {
            disas_arm_insn(env, dc);
        }
10066 10067 10068 10069 10070

        if (dc->condjmp && !dc->is_jmp) {
            gen_set_label(dc->condlabel);
            dc->condjmp = 0;
        }
10071 10072 10073 10074 10075

        if (tcg_check_temp_count()) {
            fprintf(stderr, "TCG temporary leak before %08x\n", dc->pc);
        }

B
balrog 已提交
10076
        /* Translation stops when a conditional branch is encountered.
10077
         * Otherwise the subsequent code could get translated several times.
B
bellard 已提交
10078
         * Also stop translation when a page boundary is reached.  This
T
ths 已提交
10079
         * ensures prefetch aborts occur at the right place.  */
P
pbrook 已提交
10080
        num_insns ++;
10081
    } while (!dc->is_jmp && tcg_ctx.gen_opc_ptr < gen_opc_end &&
B
bellard 已提交
10082
             !env->singlestep_enabled &&
10083
             !singlestep &&
P
pbrook 已提交
10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094
             dc->pc < next_page_start &&
             num_insns < max_insns);

    if (tb->cflags & CF_LAST_IO) {
        if (dc->condjmp) {
            /* FIXME:  This can theoretically happen with self-modifying
               code.  */
            cpu_abort(env, "IO on conditional branch instruction");
        }
        gen_io_end();
    }
P
pbrook 已提交
10095

B
bellard 已提交
10096
    /* At this stage dc->condjmp will only be set when the skipped
P
pbrook 已提交
10097 10098
       instruction was a conditional branch or trap, and the PC has
       already been written.  */
10099
    if (unlikely(env->singlestep_enabled)) {
B
bellard 已提交
10100
        /* Make sure the pc is updated, and raise a debug exception.  */
10101
        if (dc->condjmp) {
P
pbrook 已提交
10102 10103
            gen_set_condexec(dc);
            if (dc->is_jmp == DISAS_SWI) {
P
pbrook 已提交
10104
                gen_exception(EXCP_SWI);
P
pbrook 已提交
10105
            } else {
P
pbrook 已提交
10106
                gen_exception(EXCP_DEBUG);
P
pbrook 已提交
10107
            }
10108 10109 10110
            gen_set_label(dc->condlabel);
        }
        if (dc->condjmp || !dc->is_jmp) {
P
pbrook 已提交
10111
            gen_set_pc_im(dc->pc);
10112
            dc->condjmp = 0;
B
bellard 已提交
10113
        }
P
pbrook 已提交
10114 10115
        gen_set_condexec(dc);
        if (dc->is_jmp == DISAS_SWI && !dc->condjmp) {
P
pbrook 已提交
10116
            gen_exception(EXCP_SWI);
P
pbrook 已提交
10117 10118 10119
        } else {
            /* FIXME: Single stepping a WFI insn will not halt
               the CPU.  */
P
pbrook 已提交
10120
            gen_exception(EXCP_DEBUG);
P
pbrook 已提交
10121
        }
B
bellard 已提交
10122
    } else {
P
pbrook 已提交
10123 10124
        /* While branches must always occur at the end of an IT block,
           there are a few other things that can cause us to terminate
10125
           the TB in the middle of an IT block:
P
pbrook 已提交
10126 10127 10128 10129 10130 10131
            - Exception generating instructions (bkpt, swi, undefined).
            - Page boundaries.
            - Hardware watchpoints.
           Hardware breakpoints have already been handled and skip this code.
         */
        gen_set_condexec(dc);
B
bellard 已提交
10132 10133
        switch(dc->is_jmp) {
        case DISAS_NEXT:
10134
            gen_goto_tb(dc, 1, dc->pc);
B
bellard 已提交
10135 10136 10137 10138 10139
            break;
        default:
        case DISAS_JUMP:
        case DISAS_UPDATE:
            /* indicate that the hash table must be used to find the next TB */
B
bellard 已提交
10140
            tcg_gen_exit_tb(0);
B
bellard 已提交
10141 10142 10143 10144
            break;
        case DISAS_TB_JUMP:
            /* nothing more to generate */
            break;
P
pbrook 已提交
10145
        case DISAS_WFI:
B
Blue Swirl 已提交
10146
            gen_helper_wfi(cpu_env);
P
pbrook 已提交
10147 10148
            break;
        case DISAS_SWI:
P
pbrook 已提交
10149
            gen_exception(EXCP_SWI);
P
pbrook 已提交
10150
            break;
B
bellard 已提交
10151
        }
10152 10153
        if (dc->condjmp) {
            gen_set_label(dc->condlabel);
P
pbrook 已提交
10154
            gen_set_condexec(dc);
10155
            gen_goto_tb(dc, 1, dc->pc);
10156 10157
            dc->condjmp = 0;
        }
B
bellard 已提交
10158
    }
P
pbrook 已提交
10159

P
pbrook 已提交
10160
done_generating:
10161
    gen_tb_end(tb, num_insns);
10162
    *tcg_ctx.gen_opc_ptr = INDEX_op_end;
B
bellard 已提交
10163 10164

#ifdef DEBUG_DISAS
10165
    if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
10166 10167
        qemu_log("----------------\n");
        qemu_log("IN: %s\n", lookup_symbol(pc_start));
B
Blue Swirl 已提交
10168
        log_target_disas(env, pc_start, dc->pc - pc_start,
P
Paul Brook 已提交
10169
                         dc->thumb | (dc->bswap_code << 1));
10170
        qemu_log("\n");
B
bellard 已提交
10171 10172
    }
#endif
B
bellard 已提交
10173
    if (search_pc) {
10174
        j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
B
bellard 已提交
10175 10176
        lj++;
        while (lj <= j)
10177
            tcg_ctx.gen_opc_instr_start[lj++] = 0;
B
bellard 已提交
10178
    } else {
B
bellard 已提交
10179
        tb->size = dc->pc - pc_start;
P
pbrook 已提交
10180
        tb->icount = num_insns;
B
bellard 已提交
10181
    }
B
bellard 已提交
10182 10183
}

10184
void gen_intermediate_code(CPUARMState *env, TranslationBlock *tb)
B
bellard 已提交
10185
{
10186
    gen_intermediate_code_internal(arm_env_get_cpu(env), tb, false);
B
bellard 已提交
10187 10188
}

10189
void gen_intermediate_code_pc(CPUARMState *env, TranslationBlock *tb)
B
bellard 已提交
10190
{
10191
    gen_intermediate_code_internal(arm_env_get_cpu(env), tb, true);
B
bellard 已提交
10192 10193
}

B
bellard 已提交
10194 10195 10196 10197
static const char *cpu_mode_names[16] = {
  "usr", "fiq", "irq", "svc", "???", "???", "???", "abt",
  "???", "???", "???", "und", "???", "???", "???", "sys"
};
P
pbrook 已提交
10198

10199 10200
void arm_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
                        int flags)
B
bellard 已提交
10201
{
10202 10203
    ARMCPU *cpu = ARM_CPU(cs);
    CPUARMState *env = &cpu->env;
B
bellard 已提交
10204
    int i;
B
bellard 已提交
10205
    uint32_t psr;
B
bellard 已提交
10206 10207

    for(i=0;i<16;i++) {
B
bellard 已提交
10208
        cpu_fprintf(f, "R%02d=%08x", i, env->regs[i]);
B
bellard 已提交
10209
        if ((i % 4) == 3)
B
bellard 已提交
10210
            cpu_fprintf(f, "\n");
B
bellard 已提交
10211
        else
B
bellard 已提交
10212
            cpu_fprintf(f, " ");
B
bellard 已提交
10213
    }
B
bellard 已提交
10214
    psr = cpsr_read(env);
10215 10216
    cpu_fprintf(f, "PSR=%08x %c%c%c%c %c %s%d\n",
                psr,
B
bellard 已提交
10217 10218 10219 10220
                psr & (1 << 31) ? 'N' : '-',
                psr & (1 << 30) ? 'Z' : '-',
                psr & (1 << 29) ? 'C' : '-',
                psr & (1 << 28) ? 'V' : '-',
10221
                psr & CPSR_T ? 'T' : 'A',
B
bellard 已提交
10222
                cpu_mode_names[psr & 0xf], (psr & 0x10) ? 32 : 26);
B
bellard 已提交
10223

10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239
    if (flags & CPU_DUMP_FPU) {
        int numvfpregs = 0;
        if (arm_feature(env, ARM_FEATURE_VFP)) {
            numvfpregs += 16;
        }
        if (arm_feature(env, ARM_FEATURE_VFP3)) {
            numvfpregs += 16;
        }
        for (i = 0; i < numvfpregs; i++) {
            uint64_t v = float64_val(env->vfp.regs[i]);
            cpu_fprintf(f, "s%02d=%08x s%02d=%08x d%02d=%016" PRIx64 "\n",
                        i * 2, (uint32_t)v,
                        i * 2 + 1, (uint32_t)(v >> 32),
                        i, v);
        }
        cpu_fprintf(f, "FPSCR: %08x\n", (int)env->vfp.xregs[ARM_VFP_FPSCR]);
B
bellard 已提交
10240
    }
B
bellard 已提交
10241
}
B
bellard 已提交
10242

10243
void restore_state_to_opc(CPUARMState *env, TranslationBlock *tb, int pc_pos)
A
aurel32 已提交
10244
{
10245
    env->regs[15] = tcg_ctx.gen_opc_pc[pc_pos];
10246
    env->condexec_bits = gen_opc_condexec_bits[pc_pos];
A
aurel32 已提交
10247
}