translate.c 355.5 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((uintptr_t)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
        s->is_jmp = DISAS_WFI;
        break;
    case 2: /* wfe */
    case 4: /* sev */
3504 3505
    case 5: /* sevl */
        /* TODO: Implement SEV, SEVL and WFE.  May help SMP performance.  */
P
pbrook 已提交
3506 3507 3508 3509
    default: /* nop */
        break;
    }
}
B
bellard 已提交
3510

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

3513
static inline void gen_neon_add(int size, TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
3514 3515
{
    switch (size) {
3516 3517 3518
    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;
3519
    default: abort();
P
pbrook 已提交
3520 3521 3522
    }
}

3523
static inline void gen_neon_rsb(int size, TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
3524 3525
{
    switch (size) {
3526 3527 3528
    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 已提交
3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541
    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: \
3542
        gen_helper_neon_##name##_s8(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3543 3544
        break; \
    case 1: \
3545
        gen_helper_neon_##name##_u8(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3546 3547
        break; \
    case 2: \
3548
        gen_helper_neon_##name##_s16(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3549 3550
        break; \
    case 3: \
3551
        gen_helper_neon_##name##_u16(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3552 3553
        break; \
    case 4: \
3554
        gen_helper_neon_##name##_s32(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3555 3556
        break; \
    case 5: \
3557
        gen_helper_neon_##name##_u32(tmp, cpu_env, tmp, tmp2); \
P
pbrook 已提交
3558 3559 3560
        break; \
    default: return 1; \
    }} while (0)
P
pbrook 已提交
3561 3562 3563

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

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

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

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

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

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

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

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

    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);

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

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

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

    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);

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


P
pbrook 已提交
3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753
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.  */
3754
static int disas_neon_ls_insn(CPUARMState * env, DisasContext *s, uint32_t insn)
P
pbrook 已提交
3755 3756 3757 3758 3759
{
    int rd, rn, rm;
    int op;
    int nregs;
    int interleave;
3760
    int spacing;
P
pbrook 已提交
3761 3762 3763 3764 3765 3766 3767
    int stride;
    int size;
    int reg;
    int pass;
    int load;
    int shift;
    int n;
3768 3769 3770
    TCGv_i32 addr;
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
3771
    TCGv_i64 tmp64;
P
pbrook 已提交
3772

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

            if (size == 3) {
                if (nregs != 4 || a == 0) {
P
pbrook 已提交
3914
                    return 1;
B
bellard 已提交
3915
                }
3916 3917 3918 3919 3920 3921 3922 3923 3924
                /* 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;
            }
3925
            addr = tcg_temp_new_i32();
3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947
            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 已提交
3948
            }
3949
            tcg_temp_free_i32(addr);
P
pbrook 已提交
3950 3951 3952
            stride = (1 << size) * nregs;
        } else {
            /* Single element.  */
3953
            int idx = (insn >> 4) & 0xf;
P
pbrook 已提交
3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971
            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;
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 4004
            /* 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;
            }
4005
            addr = tcg_temp_new_i32();
4006
            load_reg_var(s, addr, rn);
P
pbrook 已提交
4007 4008
            for (reg = 0; reg < nregs; reg++) {
                if (load) {
4009
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
4010 4011
                    switch (size) {
                    case 0:
4012
                        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
pbrook 已提交
4013 4014
                        break;
                    case 1:
4015
                        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
4016 4017
                        break;
                    case 2:
4018
                        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
4019
                        break;
P
pbrook 已提交
4020 4021
                    default: /* Avoid compiler warnings.  */
                        abort();
P
pbrook 已提交
4022 4023
                    }
                    if (size != 2) {
P
pbrook 已提交
4024
                        tmp2 = neon_load_reg(rd, pass);
4025 4026
                        tcg_gen_deposit_i32(tmp, tmp2, tmp,
                                            shift, size ? 16 : 8);
4027
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
4028
                    }
P
pbrook 已提交
4029
                    neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
4030
                } else { /* Store */
P
pbrook 已提交
4031 4032 4033
                    tmp = neon_load_reg(rd, pass);
                    if (shift)
                        tcg_gen_shri_i32(tmp, tmp, shift);
P
pbrook 已提交
4034 4035
                    switch (size) {
                    case 0:
4036
                        tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
P
pbrook 已提交
4037 4038
                        break;
                    case 1:
4039
                        tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
P
pbrook 已提交
4040 4041
                        break;
                    case 2:
4042
                        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
P
pbrook 已提交
4043
                        break;
B
bellard 已提交
4044
                    }
4045
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
4046
                }
P
pbrook 已提交
4047
                rd += stride;
4048
                tcg_gen_addi_i32(addr, addr, 1 << size);
B
bellard 已提交
4049
            }
4050
            tcg_temp_free_i32(addr);
P
pbrook 已提交
4051
            stride = nregs * (1 << size);
B
bellard 已提交
4052
        }
P
pbrook 已提交
4053 4054
    }
    if (rm != 15) {
4055
        TCGv_i32 base;
P
pbrook 已提交
4056 4057

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

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

4079
static inline void gen_neon_narrow(int size, TCGv_i32 dest, TCGv_i64 src)
P
pbrook 已提交
4080 4081 4082 4083 4084 4085 4086 4087 4088
{
    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();
    }
}

4089
static inline void gen_neon_narrow_sats(int size, TCGv_i32 dest, TCGv_i64 src)
P
pbrook 已提交
4090 4091
{
    switch (size) {
4092 4093 4094
    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 已提交
4095 4096 4097 4098
    default: abort();
    }
}

4099
static inline void gen_neon_narrow_satu(int size, TCGv_i32 dest, TCGv_i64 src)
P
pbrook 已提交
4100 4101
{
    switch (size) {
4102 4103 4104
    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 已提交
4105 4106 4107 4108
    default: abort();
    }
}

4109
static inline void gen_neon_unarrow_sats(int size, TCGv_i32 dest, TCGv_i64 src)
4110 4111
{
    switch (size) {
4112 4113 4114
    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;
4115 4116 4117 4118
    default: abort();
    }
}

4119
static inline void gen_neon_shift_narrow(int size, TCGv_i32 var, TCGv_i32 shift,
P
pbrook 已提交
4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138
                                         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) {
4139 4140
            case 1: gen_helper_neon_shl_u16(var, var, shift); break;
            case 2: gen_helper_neon_shl_u32(var, var, shift); break;
P
pbrook 已提交
4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152
            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();
            }
        }
    }
}

4153
static inline void gen_neon_widen(TCGv_i64 dest, TCGv_i32 src, int size, int u)
P
pbrook 已提交
4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169
{
    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();
        }
    }
4170
    tcg_temp_free_i32(src);
P
pbrook 已提交
4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192
}

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

P
pbrook 已提交
4205
static inline void gen_neon_addl_saturate(TCGv_i64 op0, TCGv_i64 op1, int size)
P
pbrook 已提交
4206 4207
{
    switch (size) {
4208 4209
    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 已提交
4210 4211 4212 4213
    default: abort();
    }
}

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

    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);
4227
        tcg_temp_free_i64(tmp);
P
pbrook 已提交
4228 4229 4230 4231
        break;
    case 5:
        tmp = gen_mulu_i64_i32(a, b);
        tcg_gen_mov_i64(dest, tmp);
4232
        tcg_temp_free_i64(tmp);
P
pbrook 已提交
4233 4234 4235
        break;
    default: abort();
    }
4236 4237 4238 4239

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

4245 4246
static void gen_neon_narrow_op(int op, int u, int size,
                               TCGv_i32 dest, TCGv_i64 src)
4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262
{
    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);
        }
    }
}

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 4290
/* 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
4291
#define NEON_3R_VFM 25 /* VFMA, VFMS : float fused multiply-add */
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 4323
#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,
4324
    [NEON_3R_VFM] = 0x5, /* size bit 1 encodes op */
4325 4326 4327 4328 4329 4330 4331 4332
    [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 */
};

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 4439
/* 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 已提交
4440 4441
/* Translate a NEON data processing instruction.  Return nonzero if the
   instruction is invalid.
P
pbrook 已提交
4442 4443
   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 已提交
4444

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

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

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

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

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

P
pbrook 已提交
4906 4907 4908 4909
        /* 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) {
4910
            neon_store_scratch(pass, tmp);
P
pbrook 已提交
4911
        } else {
4912
            neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
4913 4914 4915 4916 4917
        }

        } /* for pass */
        if (pairwise && rd == rm) {
            for (pass = 0; pass < (q ? 4 : 2); pass++) {
4918 4919
                tmp = neon_load_scratch(pass);
                neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
4920 4921
            }
        }
P
pbrook 已提交
4922
        /* End of 3 register same size operations.  */
P
pbrook 已提交
4923 4924 4925 4926 4927
    } else if (insn & (1 << 4)) {
        if ((insn & 0x00380080) != 0) {
            /* Two registers and shift.  */
            op = (insn >> 8) & 0xf;
            if (insn & (1 << 7)) {
4928 4929 4930 4931
                /* 64-bit shift. */
                if (op > 7) {
                    return 1;
                }
P
pbrook 已提交
4932 4933 4934 4935 4936 4937 4938
                size = 3;
            } else {
                size = 2;
                while ((insn & (1 << (size + 19))) == 0)
                    size--;
            }
            shift = (insn >> 16) & ((1 << (3 + size)) - 1);
4939
            /* To avoid excessive duplication of ops we implement shift
P
pbrook 已提交
4940 4941 4942 4943
               by immediate using the variable shift operations.  */
            if (op < 8) {
                /* Shift by immediate:
                   VSHR, VSRA, VRSHR, VRSRA, VSRI, VSHL, VQSHL, VQSHLU.  */
4944 4945 4946 4947 4948 4949
                if (q && ((rd | rm) & 1)) {
                    return 1;
                }
                if (!u && (op == 4 || op == 6)) {
                    return 1;
                }
P
pbrook 已提交
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 4977
                /* 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 已提交
4978 4979 4980 4981 4982 4983 4984 4985
                    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 已提交
4986
                            else
P
pbrook 已提交
4987
                                gen_helper_neon_shl_s64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4988
                            break;
P
pbrook 已提交
4989 4990 4991 4992
                        case 2: /* VRSHR */
                        case 3: /* VRSRA */
                            if (u)
                                gen_helper_neon_rshl_u64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4993
                            else
P
pbrook 已提交
4994
                                gen_helper_neon_rshl_s64(cpu_V0, cpu_V0, cpu_V1);
P
pbrook 已提交
4995
                            break;
P
pbrook 已提交
4996 4997 4998 4999
                        case 4: /* VSRI */
                        case 5: /* VSHL, VSLI */
                            gen_helper_neon_shl_u64(cpu_V0, cpu_V0, cpu_V1);
                            break;
5000
                        case 6: /* VQSHLU */
5001 5002
                            gen_helper_neon_qshlu_s64(cpu_V0, cpu_env,
                                                      cpu_V0, cpu_V1);
P
pbrook 已提交
5003
                            break;
5004 5005
                        case 7: /* VQSHL */
                            if (u) {
5006
                                gen_helper_neon_qshl_u64(cpu_V0, cpu_env,
5007 5008
                                                         cpu_V0, cpu_V1);
                            } else {
5009
                                gen_helper_neon_qshl_s64(cpu_V0, cpu_env,
5010 5011
                                                         cpu_V0, cpu_V1);
                            }
P
pbrook 已提交
5012 5013
                            break;
                        }
P
pbrook 已提交
5014 5015
                        if (op == 1 || op == 3) {
                            /* Accumulate.  */
5016
                            neon_load_reg64(cpu_V1, rd + pass);
P
pbrook 已提交
5017 5018 5019
                            tcg_gen_add_i64(cpu_V0, cpu_V0, cpu_V1);
                        } else if (op == 4 || (op == 5 && u)) {
                            /* Insert */
5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032
                            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 已提交
5033 5034 5035 5036
                        }
                        neon_store_reg64(cpu_V0, rd + pass);
                    } else { /* size < 3 */
                        /* Operands in T0 and T1.  */
5037
                        tmp = neon_load_reg(rm, pass);
5038
                        tmp2 = tcg_temp_new_i32();
5039
                        tcg_gen_movi_i32(tmp2, imm);
P
pbrook 已提交
5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051
                        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) {
5052 5053 5054
                            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;
5055
                            default: abort();
P
pbrook 已提交
5056 5057
                            }
                            break;
5058
                        case 6: /* VQSHLU */
P
pbrook 已提交
5059
                            switch (size) {
5060
                            case 0:
5061 5062
                                gen_helper_neon_qshlu_s8(tmp, cpu_env,
                                                         tmp, tmp2);
5063 5064
                                break;
                            case 1:
5065 5066
                                gen_helper_neon_qshlu_s16(tmp, cpu_env,
                                                          tmp, tmp2);
5067 5068
                                break;
                            case 2:
5069 5070
                                gen_helper_neon_qshlu_s32(tmp, cpu_env,
                                                          tmp, tmp2);
5071 5072
                                break;
                            default:
5073
                                abort();
P
pbrook 已提交
5074 5075
                            }
                            break;
5076
                        case 7: /* VQSHL */
5077
                            GEN_NEON_INTEGER_OP_ENV(qshl);
5078
                            break;
P
pbrook 已提交
5079
                        }
5080
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
5081 5082 5083

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

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

                    if (shift != 0) {
                        /* The shift is less than the width of the source
P
pbrook 已提交
5215 5216
                           type, so we can just shift the whole register.  */
                        tcg_gen_shli_i64(cpu_V0, cpu_V0, shift);
5217 5218 5219 5220 5221
                        /* 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 已提交
5222 5223 5224 5225 5226
                        if (size < 2 || !u) {
                            uint64_t imm64;
                            if (size == 0) {
                                imm = (0xffu >> (8 - shift));
                                imm |= imm << 16;
5227
                            } else if (size == 1) {
P
pbrook 已提交
5228
                                imm = 0xffff >> (16 - shift);
5229 5230 5231 5232 5233 5234 5235 5236
                            } else {
                                /* size == 2 */
                                imm = 0xffffffff >> (32 - shift);
                            }
                            if (size < 2) {
                                imm64 = imm | (((uint64_t)imm) << 32);
                            } else {
                                imm64 = imm;
P
pbrook 已提交
5237
                            }
5238
                            tcg_gen_andi_i64(cpu_V0, cpu_V0, ~imm64);
P
pbrook 已提交
5239 5240
                        }
                    }
P
pbrook 已提交
5241
                    neon_store_reg64(cpu_V0, rd + pass);
P
pbrook 已提交
5242
                }
5243
            } else if (op >= 14) {
P
pbrook 已提交
5244
                /* VCVT fixed-point.  */
5245 5246 5247
                if (!(insn & (1 << 21)) || (q && ((rd | rm) & 1))) {
                    return 1;
                }
5248 5249 5250 5251
                /* 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 已提交
5252
                for (pass = 0; pass < (q ? 4 : 2); pass++) {
P
pbrook 已提交
5253
                    tcg_gen_ld_f32(cpu_F0s, cpu_env, neon_reg_offset(rm, pass));
5254
                    if (!(op & 1)) {
P
pbrook 已提交
5255
                        if (u)
5256
                            gen_vfp_ulto(0, shift, 1);
P
pbrook 已提交
5257
                        else
5258
                            gen_vfp_slto(0, shift, 1);
P
pbrook 已提交
5259 5260
                    } else {
                        if (u)
5261
                            gen_vfp_toul(0, shift, 1);
P
pbrook 已提交
5262
                        else
5263
                            gen_vfp_tosl(0, shift, 1);
B
bellard 已提交
5264
                    }
P
pbrook 已提交
5265
                    tcg_gen_st_f32(cpu_F0s, cpu_env, neon_reg_offset(rd, pass));
B
bellard 已提交
5266 5267
                }
            } else {
P
pbrook 已提交
5268 5269 5270 5271
                return 1;
            }
        } else { /* (insn & 0x00380080) == 0 */
            int invert;
5272 5273 5274
            if (q && (rd & 1)) {
                return 1;
            }
P
pbrook 已提交
5275 5276 5277 5278 5279

            op = (insn >> 8) & 0xf;
            /* One register and immediate.  */
            imm = (u << 7) | ((insn >> 12) & 0x70) | (insn & 0xf);
            invert = (insn & (1 << 5)) != 0;
5280 5281 5282 5283
            /* 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 已提交
5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303
            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:
5304
                imm = (imm << 8) | 0xff;
P
pbrook 已提交
5305 5306 5307 5308 5309 5310 5311 5312 5313 5314
                break;
            case 13:
                imm = (imm << 16) | 0xffff;
                break;
            case 14:
                imm |= (imm << 8) | (imm << 16) | (imm << 24);
                if (invert)
                    imm = ~imm;
                break;
            case 15:
5315 5316 5317
                if (invert) {
                    return 1;
                }
P
pbrook 已提交
5318 5319 5320 5321 5322 5323 5324 5325 5326
                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 已提交
5327
                    tmp = neon_load_reg(rd, pass);
P
pbrook 已提交
5328 5329 5330
                    if (invert) {
                        /* The immediate value has already been inverted, so
                           BIC becomes AND.  */
P
pbrook 已提交
5331
                        tcg_gen_andi_i32(tmp, tmp, imm);
P
pbrook 已提交
5332
                    } else {
P
pbrook 已提交
5333
                        tcg_gen_ori_i32(tmp, tmp, imm);
P
pbrook 已提交
5334 5335
                    }
                } else {
P
pbrook 已提交
5336
                    /* VMOV, VMVN.  */
5337
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
5338
                    if (op == 14 && invert) {
5339
                        int n;
P
pbrook 已提交
5340 5341
                        uint32_t val;
                        val = 0;
P
pbrook 已提交
5342 5343
                        for (n = 0; n < 4; n++) {
                            if (imm & (1 << (n + (pass & 1) * 4)))
P
pbrook 已提交
5344
                                val |= 0xff << (n * 8);
P
pbrook 已提交
5345
                        }
P
pbrook 已提交
5346 5347 5348
                        tcg_gen_movi_i32(tmp, val);
                    } else {
                        tcg_gen_movi_i32(tmp, imm);
P
pbrook 已提交
5349 5350
                    }
                }
P
pbrook 已提交
5351
                neon_store_reg(rd, pass, tmp);
P
pbrook 已提交
5352 5353
            }
        }
P
pbrook 已提交
5354
    } else { /* (insn & 0x00800010 == 0x00800000) */
P
pbrook 已提交
5355 5356 5357 5358 5359 5360 5361
        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;
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385
                /* 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 已提交
5386 5387 5388 5389 5390
                };

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

5393 5394 5395 5396 5397 5398 5399 5400
                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 已提交
5401
                    return 1;
5402
                }
P
pbrook 已提交
5403

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

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


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

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

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

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

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

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

6221
    /* First check for coprocessor space used for actual instructions */
P
pbrook 已提交
6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233
    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);
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 6277
    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 已提交
6278
            return 0;
6279 6280 6281 6282
        default:
            break;
        }

6283 6284 6285 6286
        if (use_icount && (ri->type & ARM_CP_IO)) {
            gen_io_start();
        }

6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308
        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);
6309
                tmp = tcg_temp_new_i32();
6310
                tcg_gen_trunc_i64_i32(tmp, tmp64);
6311
                tcg_temp_free_i64(tmp64);
6312 6313
                store_reg(s, rt2, tmp);
            } else {
6314
                TCGv_i32 tmp;
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 6340 6341 6342 6343 6344
                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) {
6345
                TCGv_i32 tmplo, tmphi;
6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362
                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) {
6363
                    TCGv_i32 tmp;
6364 6365 6366 6367 6368 6369 6370 6371
                    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 {
6372
                    TCGv_i32 tmp = load_reg(s, rt);
6373 6374 6375
                    store_cpu_offset(tmp, ri->fieldoffset);
                }
            }
6376 6377 6378 6379 6380 6381 6382
        }

        if (use_icount && (ri->type & ARM_CP_IO)) {
            /* I/O operations must end the TB here (whether read or write) */
            gen_io_end();
            gen_lookup_tb(s);
        } else if (!isread && !(ri->type & ARM_CP_SUPPRESS_TB_END)) {
6383 6384 6385 6386
            /* 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).
             */
6387
            gen_lookup_tb(s);
6388
        }
6389

6390 6391 6392
        return 0;
    }

6393
    return 1;
P
pbrook 已提交
6394 6395
}

P
pbrook 已提交
6396 6397

/* Store a 64-bit value to a register pair.  Clobbers val.  */
P
pbrook 已提交
6398
static void gen_storeq_reg(DisasContext *s, int rlow, int rhigh, TCGv_i64 val)
P
pbrook 已提交
6399
{
6400
    TCGv_i32 tmp;
6401
    tmp = tcg_temp_new_i32();
P
pbrook 已提交
6402 6403
    tcg_gen_trunc_i64_i32(tmp, val);
    store_reg(s, rlow, tmp);
6404
    tmp = tcg_temp_new_i32();
P
pbrook 已提交
6405 6406 6407 6408 6409 6410
    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 已提交
6411
static void gen_addq_lo(DisasContext *s, TCGv_i64 val, int rlow)
P
pbrook 已提交
6412
{
P
pbrook 已提交
6413
    TCGv_i64 tmp;
6414
    TCGv_i32 tmp2;
P
pbrook 已提交
6415

P
pbrook 已提交
6416
    /* Load value and extend to 64 bits.  */
P
pbrook 已提交
6417
    tmp = tcg_temp_new_i64();
P
pbrook 已提交
6418 6419
    tmp2 = load_reg(s, rlow);
    tcg_gen_extu_i32_i64(tmp, tmp2);
6420
    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6421
    tcg_gen_add_i64(val, val, tmp);
6422
    tcg_temp_free_i64(tmp);
P
pbrook 已提交
6423 6424 6425
}

/* load and add a 64-bit value from a register pair.  */
P
pbrook 已提交
6426
static void gen_addq(DisasContext *s, TCGv_i64 val, int rlow, int rhigh)
P
pbrook 已提交
6427
{
P
pbrook 已提交
6428
    TCGv_i64 tmp;
6429 6430
    TCGv_i32 tmpl;
    TCGv_i32 tmph;
P
pbrook 已提交
6431 6432

    /* Load 64-bit value rd:rn.  */
P
pbrook 已提交
6433 6434
    tmpl = load_reg(s, rlow);
    tmph = load_reg(s, rhigh);
P
pbrook 已提交
6435
    tmp = tcg_temp_new_i64();
P
pbrook 已提交
6436
    tcg_gen_concat_i32_i64(tmp, tmpl, tmph);
6437 6438
    tcg_temp_free_i32(tmpl);
    tcg_temp_free_i32(tmph);
P
pbrook 已提交
6439
    tcg_gen_add_i64(val, val, tmp);
6440
    tcg_temp_free_i64(tmp);
P
pbrook 已提交
6441 6442
}

6443
/* Set N and Z flags from hi|lo.  */
6444
static void gen_logicq_cc(TCGv_i32 lo, TCGv_i32 hi)
P
pbrook 已提交
6445
{
6446 6447
    tcg_gen_mov_i32(cpu_NF, hi);
    tcg_gen_or_i32(cpu_ZF, lo, hi);
P
pbrook 已提交
6448 6449
}

P
Paul Brook 已提交
6450 6451
/* Load/Store exclusive instructions are implemented by remembering
   the value/address loaded, and seeing if these are the same
6452
   when the store is performed. This should be sufficient to implement
P
Paul Brook 已提交
6453 6454 6455 6456 6457 6458 6459
   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,
6460
                               TCGv_i32 addr, int size)
P
Paul Brook 已提交
6461
{
6462
    TCGv_i32 tmp = tcg_temp_new_i32();
P
Paul Brook 已提交
6463 6464 6465

    switch (size) {
    case 0:
6466
        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6467 6468
        break;
    case 1:
6469
        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6470 6471 6472
        break;
    case 2:
    case 3:
6473
        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6474 6475 6476 6477 6478 6479 6480
        break;
    default:
        abort();
    }
    tcg_gen_mov_i32(cpu_exclusive_val, tmp);
    store_reg(s, rt, tmp);
    if (size == 3) {
6481
        TCGv_i32 tmp2 = tcg_temp_new_i32();
P
Peter Maydell 已提交
6482
        tcg_gen_addi_i32(tmp2, addr, 4);
6483 6484
        tmp = tcg_temp_new_i32();
        tcg_gen_qemu_ld32u(tmp, tmp2, IS_USER(s));
6485
        tcg_temp_free_i32(tmp2);
P
Paul Brook 已提交
6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498
        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,
6499
                                TCGv_i32 addr, int size)
P
Paul Brook 已提交
6500 6501 6502 6503
{
    tcg_gen_mov_i32(cpu_exclusive_test, addr);
    tcg_gen_movi_i32(cpu_exclusive_info,
                     size | (rd << 4) | (rt << 8) | (rt2 << 12));
6504
    gen_exception_insn(s, 4, EXCP_STREX);
P
Paul Brook 已提交
6505 6506 6507
}
#else
static void gen_store_exclusive(DisasContext *s, int rd, int rt, int rt2,
6508
                                TCGv_i32 addr, int size)
P
Paul Brook 已提交
6509
{
6510
    TCGv_i32 tmp;
P
Paul Brook 已提交
6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522
    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);
6523
    tmp = tcg_temp_new_i32();
P
Paul Brook 已提交
6524 6525
    switch (size) {
    case 0:
6526
        tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6527 6528
        break;
    case 1:
6529
        tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6530 6531 6532
        break;
    case 2:
    case 3:
6533
        tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6534 6535 6536 6537 6538
        break;
    default:
        abort();
    }
    tcg_gen_brcond_i32(TCG_COND_NE, tmp, cpu_exclusive_val, fail_label);
6539
    tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6540
    if (size == 3) {
6541
        TCGv_i32 tmp2 = tcg_temp_new_i32();
P
Paul Brook 已提交
6542
        tcg_gen_addi_i32(tmp2, addr, 4);
6543 6544
        tmp = tcg_temp_new_i32();
        tcg_gen_qemu_ld32u(tmp, tmp2, IS_USER(s));
6545
        tcg_temp_free_i32(tmp2);
P
Paul Brook 已提交
6546
        tcg_gen_brcond_i32(TCG_COND_NE, tmp, cpu_exclusive_high, fail_label);
6547
        tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6548 6549 6550 6551
    }
    tmp = load_reg(s, rt);
    switch (size) {
    case 0:
6552
        tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6553 6554
        break;
    case 1:
6555
        tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6556 6557 6558
        break;
    case 2:
    case 3:
6559
        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
P
Paul Brook 已提交
6560 6561 6562 6563
        break;
    default:
        abort();
    }
6564
    tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6565 6566 6567
    if (size == 3) {
        tcg_gen_addi_i32(addr, addr, 4);
        tmp = load_reg(s, rt2);
6568 6569
        tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
        tcg_temp_free_i32(tmp);
P
Paul Brook 已提交
6570 6571 6572 6573 6574 6575 6576 6577 6578 6579
    }
    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

6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614
/* 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);
6615 6616
    tcg_gen_qemu_st32(tmp, addr, 0);
    tcg_temp_free_i32(tmp);
6617 6618
    tmp = load_cpu_field(spsr);
    tcg_gen_addi_i32(addr, addr, 4);
6619 6620
    tcg_gen_qemu_st32(tmp, addr, 0);
    tcg_temp_free_i32(tmp);
6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645
    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);
}

6646
static void disas_arm_insn(CPUARMState * env, DisasContext *s)
P
pbrook 已提交
6647 6648
{
    unsigned int cond, insn, val, op1, i, shift, rm, rs, rn, rd, sh;
6649 6650 6651 6652
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
    TCGv_i32 tmp3;
    TCGv_i32 addr;
P
pbrook 已提交
6653
    TCGv_i64 tmp64;
P
pbrook 已提交
6654

6655
    insn = arm_ldl_code(env, s->pc, s->bswap_code);
P
pbrook 已提交
6656 6657 6658 6659 6660 6661 6662
    s->pc += 4;

    /* M variants do not implement ARM mode.  */
    if (IS_M(env))
        goto illegal_op;
    cond = insn >> 28;
    if (cond == 0xf){
6663 6664 6665 6666 6667 6668
        /* 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 已提交
6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687
        /* 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;
        }
6688 6689 6690 6691 6692 6693 6694 6695 6696
        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+ */
6697
            ARCH(5TE);
6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713
            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 已提交
6714 6715
            ARCH(6);
            /* setend */
6716 6717
            if (((insn >> 9) & 1) != s->bswap_code) {
                /* Dynamic endianness switching not implemented. */
6718
                qemu_log_mask(LOG_UNIMP, "arm: unimplemented setend\n");
P
pbrook 已提交
6719 6720 6721 6722 6723 6724 6725
                goto illegal_op;
            }
            return;
        } else if ((insn & 0x0fffff00) == 0x057ff000) {
            switch ((insn >> 4) & 0xf) {
            case 1: /* clrex */
                ARCH(6K);
P
Paul Brook 已提交
6726
                gen_clrex(s);
P
pbrook 已提交
6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738
                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 */
6739
            if (IS_USER(s)) {
P
pbrook 已提交
6740 6741
                goto illegal_op;
            }
6742 6743
            ARCH(6);
            gen_srs(s, (insn & 0x1f), (insn >> 23) & 3, insn & (1 << 21));
6744
            return;
6745
        } else if ((insn & 0x0e50ffe0) == 0x08100a00) {
P
pbrook 已提交
6746
            /* rfe */
6747
            int32_t offset;
P
pbrook 已提交
6748 6749 6750 6751
            if (IS_USER(s))
                goto illegal_op;
            ARCH(6);
            rn = (insn >> 16) & 0xf;
P
pbrook 已提交
6752
            addr = load_reg(s, rn);
P
pbrook 已提交
6753 6754
            i = (insn >> 23) & 3;
            switch (i) {
P
pbrook 已提交
6755
            case 0: offset = -4; break; /* DA */
6756 6757
            case 1: offset = 0; break; /* IA */
            case 2: offset = -8; break; /* DB */
P
pbrook 已提交
6758
            case 3: offset = 4; break; /* IB */
P
pbrook 已提交
6759 6760 6761
            default: abort();
            }
            if (offset)
P
pbrook 已提交
6762 6763
                tcg_gen_addi_i32(addr, addr, offset);
            /* Load PC into tmp and CPSR into tmp2.  */
6764 6765
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, 0);
P
pbrook 已提交
6766
            tcg_gen_addi_i32(addr, addr, 4);
6767
            tmp2 = tcg_temp_new_i32();
P
Peter Chubb 已提交
6768
            tcg_gen_qemu_ld32u(tmp2, addr, 0);
P
pbrook 已提交
6769 6770 6771
            if (insn & (1 << 21)) {
                /* Base writeback.  */
                switch (i) {
P
pbrook 已提交
6772
                case 0: offset = -8; break;
6773 6774
                case 1: offset = 4; break;
                case 2: offset = -4; break;
P
pbrook 已提交
6775
                case 3: offset = 0; break;
P
pbrook 已提交
6776 6777 6778
                default: abort();
                }
                if (offset)
P
pbrook 已提交
6779 6780 6781
                    tcg_gen_addi_i32(addr, addr, offset);
                store_reg(s, rn, addr);
            } else {
6782
                tcg_temp_free_i32(addr);
P
pbrook 已提交
6783
            }
P
pbrook 已提交
6784
            gen_rfe(s, tmp, tmp2);
6785
            return;
P
pbrook 已提交
6786 6787 6788 6789 6790
        } else if ((insn & 0x0e000000) == 0x0a000000) {
            /* branch link and change to thumb (blx <offset>) */
            int32_t offset;

            val = (uint32_t)s->pc;
6791
            tmp = tcg_temp_new_i32();
P
pbrook 已提交
6792 6793
            tcg_gen_movi_i32(tmp, val);
            store_reg(s, 14, tmp);
P
pbrook 已提交
6794 6795 6796 6797 6798 6799
            /* 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;
6800
            /* protected by ARCH(5); above, near the start of uncond block */
P
pbrook 已提交
6801
            gen_bx_im(s, val);
P
pbrook 已提交
6802 6803 6804 6805 6806 6807 6808 6809 6810 6811
            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.  */
6812
            ARCH(5TE);
P
pbrook 已提交
6813 6814
        } else if ((insn & 0x0f000010) == 0x0e000010) {
            /* Additional coprocessor register transfer.  */
B
balrog 已提交
6815
        } else if ((insn & 0x0ff10020) == 0x01000000) {
P
pbrook 已提交
6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831
            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 已提交
6832
            if (insn & (1 << 17)) {
P
pbrook 已提交
6833 6834 6835 6836
                mask |= CPSR_M;
                val |= (insn & 0x1f);
            }
            if (mask) {
6837
                gen_set_psr_im(s, mask, 0, val);
P
pbrook 已提交
6838 6839 6840 6841 6842 6843 6844 6845 6846
            }
            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 已提交
6847
        gen_test_cc(cond ^ 1, s->condlabel);
P
pbrook 已提交
6848 6849 6850 6851 6852 6853 6854 6855 6856
        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 */
6857
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
6858
                tcg_gen_movi_i32(tmp, val);
P
pbrook 已提交
6859 6860
            } else {
                /* MOVT */
P
pbrook 已提交
6861
                tmp = load_reg(s, rd);
P
pbrook 已提交
6862
                tcg_gen_ext16u_i32(tmp, tmp);
P
pbrook 已提交
6863
                tcg_gen_ori_i32(tmp, tmp, val << 16);
P
pbrook 已提交
6864
            }
P
pbrook 已提交
6865
            store_reg(s, rd, tmp);
P
pbrook 已提交
6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877
        } 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);
6878
                if (gen_set_psr_im(s, msr_mask(env, s, (insn >> 16) & 0xf, i), i, val))
P
pbrook 已提交
6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891
                    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 */
6892
                tmp = load_reg(s, rm);
P
pbrook 已提交
6893
                i = ((op1 & 2) != 0);
6894
                if (gen_set_psr(s, msr_mask(env, s, (insn >> 16) & 0xf, i), i, tmp))
P
pbrook 已提交
6895 6896 6897 6898 6899 6900 6901
                    goto illegal_op;
            } else {
                /* reg = PSR */
                rd = (insn >> 12) & 0xf;
                if (op1 & 2) {
                    if (IS_USER(s))
                        goto illegal_op;
P
pbrook 已提交
6902
                    tmp = load_cpu_field(spsr);
P
pbrook 已提交
6903
                } else {
6904
                    tmp = tcg_temp_new_i32();
6905
                    gen_helper_cpsr_read(tmp, cpu_env);
P
pbrook 已提交
6906
                }
P
pbrook 已提交
6907
                store_reg(s, rd, tmp);
P
pbrook 已提交
6908 6909 6910 6911 6912
            }
            break;
        case 0x1:
            if (op1 == 1) {
                /* branch/exchange thumb (bx).  */
6913
                ARCH(4T);
P
pbrook 已提交
6914 6915
                tmp = load_reg(s, rm);
                gen_bx(s, tmp);
P
pbrook 已提交
6916 6917
            } else if (op1 == 3) {
                /* clz */
6918
                ARCH(5);
P
pbrook 已提交
6919
                rd = (insn >> 12) & 0xf;
P
pbrook 已提交
6920 6921 6922
                tmp = load_reg(s, rm);
                gen_helper_clz(tmp, tmp);
                store_reg(s, rd, tmp);
P
pbrook 已提交
6923 6924 6925 6926 6927 6928 6929 6930
            } else {
                goto illegal_op;
            }
            break;
        case 0x2:
            if (op1 == 1) {
                ARCH(5J); /* bxj */
                /* Trivial implementation equivalent to bx.  */
P
pbrook 已提交
6931 6932
                tmp = load_reg(s, rm);
                gen_bx(s, tmp);
P
pbrook 已提交
6933 6934 6935 6936 6937 6938 6939 6940
            } else {
                goto illegal_op;
            }
            break;
        case 0x3:
            if (op1 != 1)
              goto illegal_op;

6941
            ARCH(5);
P
pbrook 已提交
6942
            /* branch link/exchange thumb (blx) */
P
pbrook 已提交
6943
            tmp = load_reg(s, rm);
6944
            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
6945 6946 6947
            tcg_gen_movi_i32(tmp2, s->pc);
            store_reg(s, 14, tmp2);
            gen_bx(s, tmp);
P
pbrook 已提交
6948 6949
            break;
        case 0x5: /* saturating add/subtract */
6950
            ARCH(5TE);
P
pbrook 已提交
6951 6952
            rd = (insn >> 12) & 0xf;
            rn = (insn >> 16) & 0xf;
6953
            tmp = load_reg(s, rm);
P
pbrook 已提交
6954
            tmp2 = load_reg(s, rn);
P
pbrook 已提交
6955
            if (op1 & 2)
6956
                gen_helper_double_saturate(tmp2, cpu_env, tmp2);
P
pbrook 已提交
6957
            if (op1 & 1)
6958
                gen_helper_sub_saturate(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
6959
            else
6960
                gen_helper_add_saturate(tmp, cpu_env, tmp, tmp2);
6961
            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
6962
            store_reg(s, rd, tmp);
P
pbrook 已提交
6963
            break;
6964 6965 6966 6967 6968 6969 6970 6971
        case 7:
            /* SMC instruction (op1 == 3)
               and undefined instructions (op1 == 0 || op1 == 2)
               will trap */
            if (op1 != 1) {
                goto illegal_op;
            }
            /* bkpt */
6972
            ARCH(5);
6973
            gen_exception_insn(s, 4, EXCP_BKPT);
P
pbrook 已提交
6974 6975 6976 6977 6978
            break;
        case 0x8: /* signed multiply */
        case 0xa:
        case 0xc:
        case 0xe:
6979
            ARCH(5TE);
P
pbrook 已提交
6980 6981 6982 6983 6984
            rs = (insn >> 8) & 0xf;
            rn = (insn >> 12) & 0xf;
            rd = (insn >> 16) & 0xf;
            if (op1 == 1) {
                /* (32 * 16) >> 16 */
P
pbrook 已提交
6985 6986
                tmp = load_reg(s, rm);
                tmp2 = load_reg(s, rs);
P
pbrook 已提交
6987
                if (sh & 4)
P
pbrook 已提交
6988
                    tcg_gen_sari_i32(tmp2, tmp2, 16);
P
pbrook 已提交
6989
                else
P
pbrook 已提交
6990
                    gen_sxth(tmp2);
P
pbrook 已提交
6991 6992
                tmp64 = gen_muls_i64_i32(tmp, tmp2);
                tcg_gen_shri_i64(tmp64, tmp64, 16);
6993
                tmp = tcg_temp_new_i32();
P
pbrook 已提交
6994
                tcg_gen_trunc_i64_i32(tmp, tmp64);
6995
                tcg_temp_free_i64(tmp64);
P
pbrook 已提交
6996
                if ((sh & 2) == 0) {
P
pbrook 已提交
6997
                    tmp2 = load_reg(s, rn);
6998
                    gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
6999
                    tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7000
                }
P
pbrook 已提交
7001
                store_reg(s, rd, tmp);
P
pbrook 已提交
7002 7003
            } else {
                /* 16 * 16 */
P
pbrook 已提交
7004 7005 7006
                tmp = load_reg(s, rm);
                tmp2 = load_reg(s, rs);
                gen_mulxy(tmp, tmp2, sh & 2, sh & 4);
7007
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7008
                if (op1 == 2) {
P
pbrook 已提交
7009 7010
                    tmp64 = tcg_temp_new_i64();
                    tcg_gen_ext_i32_i64(tmp64, tmp);
7011
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
7012 7013
                    gen_addq(s, tmp64, rn, rd);
                    gen_storeq_reg(s, rn, rd, tmp64);
7014
                    tcg_temp_free_i64(tmp64);
P
pbrook 已提交
7015 7016
                } else {
                    if (op1 == 0) {
P
pbrook 已提交
7017
                        tmp2 = load_reg(s, rn);
7018
                        gen_helper_add_setq(tmp, cpu_env, tmp, tmp2);
7019
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7020
                    }
P
pbrook 已提交
7021
                    store_reg(s, rd, tmp);
P
pbrook 已提交
7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041
                }
            }
            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;
7042
            if (shift) {
P
pbrook 已提交
7043
                val = (val >> shift) | (val << (32 - shift));
7044
            }
7045
            tmp2 = tcg_temp_new_i32();
7046 7047 7048 7049
            tcg_gen_movi_i32(tmp2, val);
            if (logic_cc && shift) {
                gen_set_CF_bit31(tmp2);
            }
P
pbrook 已提交
7050 7051 7052
        } else {
            /* register */
            rm = (insn) & 0xf;
7053
            tmp2 = load_reg(s, rm);
P
pbrook 已提交
7054 7055 7056
            shiftop = (insn >> 5) & 3;
            if (!(insn & (1 << 4))) {
                shift = (insn >> 7) & 0x1f;
7057
                gen_arm_shift_im(tmp2, shiftop, shift, logic_cc);
P
pbrook 已提交
7058 7059
            } else {
                rs = (insn >> 8) & 0xf;
P
pbrook 已提交
7060
                tmp = load_reg(s, rs);
7061
                gen_arm_shift_reg(tmp2, shiftop, tmp, logic_cc);
P
pbrook 已提交
7062 7063 7064 7065
            }
        }
        if (op1 != 0x0f && op1 != 0x0d) {
            rn = (insn >> 16) & 0xf;
7066 7067
            tmp = load_reg(s, rn);
        } else {
7068
            TCGV_UNUSED_I32(tmp);
P
pbrook 已提交
7069 7070 7071 7072
        }
        rd = (insn >> 12) & 0xf;
        switch(op1) {
        case 0x00:
7073 7074 7075 7076
            tcg_gen_and_i32(tmp, tmp, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7077
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7078 7079
            break;
        case 0x01:
7080 7081 7082 7083
            tcg_gen_xor_i32(tmp, tmp, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7084
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7085 7086 7087 7088
            break;
        case 0x02:
            if (set_cc && rd == 15) {
                /* SUBS r15, ... is used for exception return.  */
7089
                if (IS_USER(s)) {
P
pbrook 已提交
7090
                    goto illegal_op;
7091
                }
7092
                gen_sub_CC(tmp, tmp, tmp2);
7093
                gen_exception_return(s, tmp);
P
pbrook 已提交
7094
            } else {
7095
                if (set_cc) {
7096
                    gen_sub_CC(tmp, tmp, tmp2);
7097 7098 7099
                } else {
                    tcg_gen_sub_i32(tmp, tmp, tmp2);
                }
7100
                store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7101 7102 7103
            }
            break;
        case 0x03:
7104
            if (set_cc) {
7105
                gen_sub_CC(tmp, tmp2, tmp);
7106 7107 7108
            } else {
                tcg_gen_sub_i32(tmp, tmp2, tmp);
            }
7109
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7110 7111
            break;
        case 0x04:
7112
            if (set_cc) {
7113
                gen_add_CC(tmp, tmp, tmp2);
7114 7115 7116
            } else {
                tcg_gen_add_i32(tmp, tmp, tmp2);
            }
7117
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7118 7119
            break;
        case 0x05:
7120
            if (set_cc) {
7121
                gen_adc_CC(tmp, tmp, tmp2);
7122 7123 7124
            } else {
                gen_add_carry(tmp, tmp, tmp2);
            }
7125
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7126 7127
            break;
        case 0x06:
7128
            if (set_cc) {
7129
                gen_sbc_CC(tmp, tmp, tmp2);
7130 7131 7132
            } else {
                gen_sub_carry(tmp, tmp, tmp2);
            }
7133
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7134 7135
            break;
        case 0x07:
7136
            if (set_cc) {
7137
                gen_sbc_CC(tmp, tmp2, tmp);
7138 7139 7140
            } else {
                gen_sub_carry(tmp, tmp2, tmp);
            }
7141
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7142 7143 7144
            break;
        case 0x08:
            if (set_cc) {
7145 7146
                tcg_gen_and_i32(tmp, tmp, tmp2);
                gen_logic_CC(tmp);
P
pbrook 已提交
7147
            }
7148
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7149 7150 7151
            break;
        case 0x09:
            if (set_cc) {
7152 7153
                tcg_gen_xor_i32(tmp, tmp, tmp2);
                gen_logic_CC(tmp);
P
pbrook 已提交
7154
            }
7155
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7156 7157 7158
            break;
        case 0x0a:
            if (set_cc) {
7159
                gen_sub_CC(tmp, tmp, tmp2);
P
pbrook 已提交
7160
            }
7161
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7162 7163 7164
            break;
        case 0x0b:
            if (set_cc) {
7165
                gen_add_CC(tmp, tmp, tmp2);
P
pbrook 已提交
7166
            }
7167
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7168 7169
            break;
        case 0x0c:
7170 7171 7172 7173
            tcg_gen_or_i32(tmp, tmp, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7174
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7175 7176 7177 7178
            break;
        case 0x0d:
            if (logic_cc && rd == 15) {
                /* MOVS r15, ... is used for exception return.  */
7179
                if (IS_USER(s)) {
P
pbrook 已提交
7180
                    goto illegal_op;
7181 7182
                }
                gen_exception_return(s, tmp2);
P
pbrook 已提交
7183
            } else {
7184 7185 7186
                if (logic_cc) {
                    gen_logic_CC(tmp2);
                }
7187
                store_reg_bx(env, s, rd, tmp2);
P
pbrook 已提交
7188 7189 7190
            }
            break;
        case 0x0e:
7191
            tcg_gen_andc_i32(tmp, tmp, tmp2);
7192 7193 7194
            if (logic_cc) {
                gen_logic_CC(tmp);
            }
7195
            store_reg_bx(env, s, rd, tmp);
P
pbrook 已提交
7196 7197 7198
            break;
        default:
        case 0x0f:
7199 7200 7201 7202
            tcg_gen_not_i32(tmp2, tmp2);
            if (logic_cc) {
                gen_logic_CC(tmp2);
            }
7203
            store_reg_bx(env, s, rd, tmp2);
P
pbrook 已提交
7204 7205
            break;
        }
7206
        if (op1 != 0x0f && op1 != 0x0d) {
7207
            tcg_temp_free_i32(tmp2);
7208
        }
P
pbrook 已提交
7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226
    } 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 已提交
7227 7228 7229
                        tmp = load_reg(s, rs);
                        tmp2 = load_reg(s, rm);
                        tcg_gen_mul_i32(tmp, tmp, tmp2);
7230
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7231 7232 7233
                        if (insn & (1 << 22)) {
                            /* Subtract (mls) */
                            ARCH(6T2);
P
pbrook 已提交
7234 7235
                            tmp2 = load_reg(s, rn);
                            tcg_gen_sub_i32(tmp, tmp2, tmp);
7236
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7237 7238
                        } else if (insn & (1 << 21)) {
                            /* Add */
P
pbrook 已提交
7239 7240
                            tmp2 = load_reg(s, rn);
                            tcg_gen_add_i32(tmp, tmp, tmp2);
7241
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7242 7243
                        }
                        if (insn & (1 << 20))
P
pbrook 已提交
7244 7245
                            gen_logic_CC(tmp);
                        store_reg(s, rd, tmp);
P
pbrook 已提交
7246
                        break;
A
Aurelien Jarno 已提交
7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260
                    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 已提交
7261 7262
                        tmp = load_reg(s, rs);
                        tmp2 = load_reg(s, rm);
A
Aurelien Jarno 已提交
7263
                        if (insn & (1 << 22)) {
7264
                            tcg_gen_muls2_i32(tmp, tmp2, tmp, tmp2);
A
Aurelien Jarno 已提交
7265
                        } else {
7266
                            tcg_gen_mulu2_i32(tmp, tmp2, tmp, tmp2);
A
Aurelien Jarno 已提交
7267 7268
                        }
                        if (insn & (1 << 21)) { /* mult accumulate */
7269 7270
                            TCGv_i32 al = load_reg(s, rn);
                            TCGv_i32 ah = load_reg(s, rd);
7271
                            tcg_gen_add2_i32(tmp, tmp2, tmp, tmp2, al, ah);
7272 7273
                            tcg_temp_free_i32(al);
                            tcg_temp_free_i32(ah);
P
pbrook 已提交
7274
                        }
A
Aurelien Jarno 已提交
7275
                        if (insn & (1 << 20)) {
7276
                            gen_logicq_cc(tmp, tmp2);
A
Aurelien Jarno 已提交
7277
                        }
7278 7279
                        store_reg(s, rn, tmp);
                        store_reg(s, rd, tmp2);
P
pbrook 已提交
7280
                        break;
A
Aurelien Jarno 已提交
7281 7282
                    default:
                        goto illegal_op;
P
pbrook 已提交
7283 7284 7285 7286 7287 7288
                    }
                } else {
                    rn = (insn >> 16) & 0xf;
                    rd = (insn >> 12) & 0xf;
                    if (insn & (1 << 23)) {
                        /* load/store exclusive */
7289
                        int op2 = (insn >> 8) & 3;
P
pbrook 已提交
7290
                        op1 = (insn >> 21) & 0x3;
7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312

                        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;
                        }

7313
                        addr = tcg_temp_local_new_i32();
7314
                        load_reg_var(s, addr, rn);
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 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354

                        /* 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 已提交
7355 7356
                            switch (op1) {
                            case 0: /* ldrex */
P
Paul Brook 已提交
7357
                                gen_load_exclusive(s, rd, 15, addr, 2);
P
pbrook 已提交
7358 7359
                                break;
                            case 1: /* ldrexd */
P
Paul Brook 已提交
7360
                                gen_load_exclusive(s, rd, rd + 1, addr, 3);
P
pbrook 已提交
7361 7362
                                break;
                            case 2: /* ldrexb */
P
Paul Brook 已提交
7363
                                gen_load_exclusive(s, rd, 15, addr, 0);
P
pbrook 已提交
7364 7365
                                break;
                            case 3: /* ldrexh */
P
Paul Brook 已提交
7366
                                gen_load_exclusive(s, rd, 15, addr, 1);
P
pbrook 已提交
7367 7368 7369 7370
                                break;
                            default:
                                abort();
                            }
P
pbrook 已提交
7371 7372
                        } else {
                            rm = insn & 0xf;
P
pbrook 已提交
7373 7374
                            switch (op1) {
                            case 0:  /*  strex */
P
Paul Brook 已提交
7375
                                gen_store_exclusive(s, rd, rm, 15, addr, 2);
P
pbrook 已提交
7376 7377
                                break;
                            case 1: /*  strexd */
A
Aurelien Jarno 已提交
7378
                                gen_store_exclusive(s, rd, rm, rm + 1, addr, 3);
P
pbrook 已提交
7379 7380
                                break;
                            case 2: /*  strexb */
P
Paul Brook 已提交
7381
                                gen_store_exclusive(s, rd, rm, 15, addr, 0);
P
pbrook 已提交
7382 7383
                                break;
                            case 3: /* strexh */
P
Paul Brook 已提交
7384
                                gen_store_exclusive(s, rd, rm, 15, addr, 1);
P
pbrook 已提交
7385 7386 7387 7388
                                break;
                            default:
                                abort();
                            }
P
pbrook 已提交
7389
                        }
7390
                        tcg_temp_free_i32(addr);
P
pbrook 已提交
7391 7392 7393 7394
                    } else {
                        /* SWP instruction */
                        rm = (insn) & 0xf;

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

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

                /* compute total size */
                loaded_base = 0;
7847
                TCGV_UNUSED_I32(loaded_var);
P
pbrook 已提交
7848 7849 7850 7851 7852 7853 7854 7855 7856
                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 已提交
7857
                        tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
7858 7859 7860 7861 7862 7863
                    } else {
                        /* post increment */
                    }
                } else {
                    if (insn & (1 << 24)) {
                        /* pre decrement */
P
pbrook 已提交
7864
                        tcg_gen_addi_i32(addr, addr, -(n * 4));
P
pbrook 已提交
7865 7866 7867
                    } else {
                        /* post decrement */
                        if (n != 1)
P
pbrook 已提交
7868
                        tcg_gen_addi_i32(addr, addr, -((n - 1) * 4));
P
pbrook 已提交
7869 7870 7871 7872 7873 7874 7875
                    }
                }
                j = 0;
                for(i=0;i<16;i++) {
                    if (insn & (1 << i)) {
                        if (insn & (1 << 20)) {
                            /* load */
7876 7877
                            tmp = tcg_temp_new_i32();
                            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
7878
                            if (user) {
7879
                                tmp2 = tcg_const_i32(i);
B
Blue Swirl 已提交
7880
                                gen_helper_set_user_reg(cpu_env, tmp2, tmp);
7881
                                tcg_temp_free_i32(tmp2);
7882
                                tcg_temp_free_i32(tmp);
P
pbrook 已提交
7883
                            } else if (i == rn) {
P
pbrook 已提交
7884
                                loaded_var = tmp;
P
pbrook 已提交
7885 7886
                                loaded_base = 1;
                            } else {
7887
                                store_reg_from_load(env, s, i, tmp);
P
pbrook 已提交
7888 7889 7890 7891 7892 7893
                            }
                        } else {
                            /* store */
                            if (i == 15) {
                                /* special case: r15 = PC + 8 */
                                val = (long)s->pc + 4;
7894
                                tmp = tcg_temp_new_i32();
P
pbrook 已提交
7895
                                tcg_gen_movi_i32(tmp, val);
P
pbrook 已提交
7896
                            } else if (user) {
7897
                                tmp = tcg_temp_new_i32();
7898
                                tmp2 = tcg_const_i32(i);
7899
                                gen_helper_get_user_reg(tmp, cpu_env, tmp2);
7900
                                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
7901
                            } else {
P
pbrook 已提交
7902
                                tmp = load_reg(s, i);
P
pbrook 已提交
7903
                            }
7904 7905
                            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                            tcg_temp_free_i32(tmp);
P
pbrook 已提交
7906 7907 7908 7909
                        }
                        j++;
                        /* no need to add after the last transfer */
                        if (j != n)
P
pbrook 已提交
7910
                            tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
7911 7912 7913 7914 7915 7916 7917 7918 7919
                    }
                }
                if (insn & (1 << 21)) {
                    /* write back */
                    if (insn & (1 << 23)) {
                        if (insn & (1 << 24)) {
                            /* pre increment */
                        } else {
                            /* post increment */
P
pbrook 已提交
7920
                            tcg_gen_addi_i32(addr, addr, 4);
P
pbrook 已提交
7921 7922 7923 7924 7925
                        }
                    } else {
                        if (insn & (1 << 24)) {
                            /* pre decrement */
                            if (n != 1)
P
pbrook 已提交
7926
                                tcg_gen_addi_i32(addr, addr, -((n - 1) * 4));
P
pbrook 已提交
7927 7928
                        } else {
                            /* post decrement */
P
pbrook 已提交
7929
                            tcg_gen_addi_i32(addr, addr, -(n * 4));
P
pbrook 已提交
7930 7931
                        }
                    }
P
pbrook 已提交
7932 7933
                    store_reg(s, rn, addr);
                } else {
7934
                    tcg_temp_free_i32(addr);
P
pbrook 已提交
7935 7936
                }
                if (loaded_base) {
P
pbrook 已提交
7937
                    store_reg(s, rn, loaded_var);
P
pbrook 已提交
7938 7939 7940
                }
                if ((insn & (1 << 22)) && !user) {
                    /* Restore CPSR from SPSR.  */
P
pbrook 已提交
7941 7942
                    tmp = load_cpu_field(spsr);
                    gen_set_cpsr(tmp, 0xffffffff);
7943
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955
                    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)) {
7956
                    tmp = tcg_temp_new_i32();
P
pbrook 已提交
7957 7958
                    tcg_gen_movi_i32(tmp, val);
                    store_reg(s, 14, tmp);
P
pbrook 已提交
7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973
                }
                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 已提交
7974
            gen_set_pc_im(s->pc);
P
pbrook 已提交
7975 7976 7977 7978
            s->is_jmp = DISAS_SWI;
            break;
        default:
        illegal_op:
7979
            gen_exception_insn(s, 4, EXCP_UDEF);
P
pbrook 已提交
7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998
            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
7999 8000
gen_thumb2_data_op(DisasContext *s, int op, int conds, uint32_t shifter_out,
                   TCGv_i32 t0, TCGv_i32 t1)
P
pbrook 已提交
8001 8002 8003 8004 8005 8006
{
    int logic_cc;

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

/* Translate a 32-bit thumb instruction.  Returns nonzero if the instruction
   is not legal.  */
8070
static int disas_thumb2_insn(CPUARMState *env, DisasContext *s, uint16_t insn_hw1)
P
pbrook 已提交
8071
{
P
pbrook 已提交
8072
    uint32_t insn, imm, shift, offset;
P
pbrook 已提交
8073
    uint32_t rd, rn, rm, rs;
8074 8075 8076 8077
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
    TCGv_i32 tmp3;
    TCGv_i32 addr;
P
pbrook 已提交
8078
    TCGv_i64 tmp64;
P
pbrook 已提交
8079 8080 8081 8082 8083 8084 8085
    int op;
    int shiftop;
    int conds;
    int logic_cc;

    if (!(arm_feature(env, ARM_FEATURE_THUMB2)
          || arm_feature (env, ARM_FEATURE_M))) {
8086
        /* Thumb-1 cores may need to treat bl and blx as a pair of
P
pbrook 已提交
8087 8088 8089
           16-bit instructions to get correct prefetch abort behavior.  */
        insn = insn_hw1;
        if ((insn & (1 << 12)) == 0) {
8090
            ARCH(5);
P
pbrook 已提交
8091 8092
            /* Second half of blx.  */
            offset = ((insn & 0x7ff) << 1);
P
pbrook 已提交
8093 8094 8095
            tmp = load_reg(s, 14);
            tcg_gen_addi_i32(tmp, tmp, offset);
            tcg_gen_andi_i32(tmp, tmp, 0xfffffffc);
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
            return 0;
        }
        if (insn & (1 << 11)) {
            /* Second half of bl.  */
            offset = ((insn & 0x7ff) << 1) | 1;
P
pbrook 已提交
8106
            tmp = load_reg(s, 14);
B
balrog 已提交
8107
            tcg_gen_addi_i32(tmp, tmp, offset);
P
pbrook 已提交
8108

8109
            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
8110
            tcg_gen_movi_i32(tmp2, s->pc | 1);
P
pbrook 已提交
8111 8112
            store_reg(s, 14, tmp2);
            gen_bx(s, tmp);
P
pbrook 已提交
8113 8114 8115 8116 8117 8118 8119
            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;
8120
            tcg_gen_movi_i32(cpu_R[14], s->pc + 2 + offset);
P
pbrook 已提交
8121 8122 8123 8124 8125
            return 0;
        }
        /* Fall through to 32-bit decode.  */
    }

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

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

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

P
pbrook 已提交
8727
                offset += s->pc;
P
pbrook 已提交
8728 8729
                if (insn & (1 << 12)) {
                    /* b/bl */
P
pbrook 已提交
8730
                    gen_jmp(s, offset);
P
pbrook 已提交
8731 8732
                } else {
                    /* blx */
P
pbrook 已提交
8733
                    offset &= ~(uint32_t)2;
8734
                    /* thumb2 bx, no need to check */
P
pbrook 已提交
8735
                    gen_bx_im(s, offset);
B
bellard 已提交
8736
                }
P
pbrook 已提交
8737 8738 8739 8740 8741 8742 8743
            } else if (((insn >> 23) & 7) == 7) {
                /* Misc control */
                if (insn & (1 << 13))
                    goto illegal_op;

                if (insn & (1 << 26)) {
                    /* Secure monitor call (v6Z) */
8744 8745
                    qemu_log_mask(LOG_UNIMP,
                                  "arm: unimplemented secure monitor call\n");
P
pbrook 已提交
8746
                    goto illegal_op; /* not implemented.  */
B
bellard 已提交
8747
                } else {
P
pbrook 已提交
8748 8749 8750 8751
                    op = (insn >> 20) & 7;
                    switch (op) {
                    case 0: /* msr cpsr.  */
                        if (IS_M(env)) {
P
pbrook 已提交
8752 8753 8754
                            tmp = load_reg(s, rn);
                            addr = tcg_const_i32(insn & 0xff);
                            gen_helper_v7m_msr(cpu_env, addr, tmp);
8755
                            tcg_temp_free_i32(addr);
8756
                            tcg_temp_free_i32(tmp);
P
pbrook 已提交
8757 8758 8759 8760 8761 8762 8763
                            gen_lookup_tb(s);
                            break;
                        }
                        /* fall through */
                    case 1: /* msr spsr.  */
                        if (IS_M(env))
                            goto illegal_op;
8764 8765
                        tmp = load_reg(s, rn);
                        if (gen_set_psr(s,
P
pbrook 已提交
8766
                              msr_mask(env, s, (insn >> 8) & 0xf, op == 1),
8767
                              op == 1, tmp))
P
pbrook 已提交
8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793
                            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) {
8794
                            gen_set_psr_im(s, offset, 0, imm);
P
pbrook 已提交
8795 8796 8797
                        }
                        break;
                    case 3: /* Special control operations.  */
P
Paul Brook 已提交
8798
                        ARCH(7);
P
pbrook 已提交
8799 8800 8801
                        op = (insn >> 4) & 0xf;
                        switch (op) {
                        case 2: /* clrex */
P
Paul Brook 已提交
8802
                            gen_clrex(s);
P
pbrook 已提交
8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814
                            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 已提交
8815 8816
                        tmp = load_reg(s, rn);
                        gen_bx(s, tmp);
P
pbrook 已提交
8817 8818
                        break;
                    case 5: /* Exception return.  */
8819 8820 8821 8822 8823 8824 8825 8826 8827 8828
                        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 已提交
8829
                    case 6: /* mrs cpsr.  */
8830
                        tmp = tcg_temp_new_i32();
P
pbrook 已提交
8831
                        if (IS_M(env)) {
P
pbrook 已提交
8832 8833
                            addr = tcg_const_i32(insn & 0xff);
                            gen_helper_v7m_mrs(tmp, cpu_env, addr);
8834
                            tcg_temp_free_i32(addr);
P
pbrook 已提交
8835
                        } else {
8836
                            gen_helper_cpsr_read(tmp, cpu_env);
P
pbrook 已提交
8837
                        }
P
pbrook 已提交
8838
                        store_reg(s, rd, tmp);
P
pbrook 已提交
8839 8840 8841 8842 8843
                        break;
                    case 7: /* mrs spsr.  */
                        /* Not accessible in user mode.  */
                        if (IS_USER(s) || IS_M(env))
                            goto illegal_op;
P
pbrook 已提交
8844 8845
                        tmp = load_cpu_field(spsr);
                        store_reg(s, rd, tmp);
P
pbrook 已提交
8846
                        break;
B
bellard 已提交
8847 8848
                    }
                }
P
pbrook 已提交
8849 8850 8851 8852 8853
            } else {
                /* Conditional branch.  */
                op = (insn >> 22) & 0xf;
                /* Generate a conditional jump to next instruction.  */
                s->condlabel = gen_new_label();
P
pbrook 已提交
8854
                gen_test_cc(op ^ 1, s->condlabel);
P
pbrook 已提交
8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868
                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 已提交
8869
                gen_jmp(s, s->pc + offset);
P
pbrook 已提交
8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880
            }
        } 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 已提交
8881
                    if (rn == 15) {
8882
                        tmp = tcg_temp_new_i32();
P
pbrook 已提交
8883 8884 8885 8886
                        tcg_gen_movi_i32(tmp, 0);
                    } else {
                        tmp = load_reg(s, rn);
                    }
P
pbrook 已提交
8887 8888 8889 8890 8891 8892
                    switch (op) {
                    case 2: /* Signed bitfield extract.  */
                        imm++;
                        if (shift + imm > 32)
                            goto illegal_op;
                        if (imm < 32)
P
pbrook 已提交
8893
                            gen_sbfx(tmp, shift, imm);
P
pbrook 已提交
8894 8895 8896 8897 8898 8899
                        break;
                    case 6: /* Unsigned bitfield extract.  */
                        imm++;
                        if (shift + imm > 32)
                            goto illegal_op;
                        if (imm < 32)
P
pbrook 已提交
8900
                            gen_ubfx(tmp, shift, (1u << imm) - 1);
P
pbrook 已提交
8901 8902 8903 8904 8905 8906
                        break;
                    case 3: /* Bitfield insert/clear.  */
                        if (imm < shift)
                            goto illegal_op;
                        imm = imm + 1 - shift;
                        if (imm != 32) {
P
pbrook 已提交
8907
                            tmp2 = load_reg(s, rd);
8908
                            tcg_gen_deposit_i32(tmp, tmp2, tmp, shift, imm);
8909
                            tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8910 8911 8912 8913 8914 8915 8916
                        }
                        break;
                    case 7:
                        goto illegal_op;
                    default: /* Saturate.  */
                        if (shift) {
                            if (op & 1)
P
pbrook 已提交
8917
                                tcg_gen_sari_i32(tmp, tmp, shift);
P
pbrook 已提交
8918
                            else
P
pbrook 已提交
8919
                                tcg_gen_shli_i32(tmp, tmp, shift);
P
pbrook 已提交
8920
                        }
P
pbrook 已提交
8921
                        tmp2 = tcg_const_i32(imm);
P
pbrook 已提交
8922 8923 8924
                        if (op & 4) {
                            /* Unsigned.  */
                            if ((op & 1) && shift == 0)
8925
                                gen_helper_usat16(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
8926
                            else
8927
                                gen_helper_usat(tmp, cpu_env, tmp, tmp2);
B
bellard 已提交
8928
                        } else {
P
pbrook 已提交
8929 8930
                            /* Signed.  */
                            if ((op & 1) && shift == 0)
8931
                                gen_helper_ssat16(tmp, cpu_env, tmp, tmp2);
P
pbrook 已提交
8932
                            else
8933
                                gen_helper_ssat(tmp, cpu_env, tmp, tmp2);
B
bellard 已提交
8934
                        }
8935
                        tcg_temp_free_i32(tmp2);
P
pbrook 已提交
8936
                        break;
B
bellard 已提交
8937
                    }
P
pbrook 已提交
8938
                    store_reg(s, rd, tmp);
P
pbrook 已提交
8939 8940 8941 8942 8943 8944 8945 8946
                } 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 已提交
8947
                            tmp = load_reg(s, rd);
P
pbrook 已提交
8948
                            tcg_gen_ext16u_i32(tmp, tmp);
P
pbrook 已提交
8949
                            tcg_gen_ori_i32(tmp, tmp, imm << 16);
B
bellard 已提交
8950
                        } else {
P
pbrook 已提交
8951
                            /* movw */
8952
                            tmp = tcg_temp_new_i32();
P
pbrook 已提交
8953
                            tcg_gen_movi_i32(tmp, imm);
B
bellard 已提交
8954 8955
                        }
                    } else {
P
pbrook 已提交
8956 8957
                        /* Add/sub 12-bit immediate.  */
                        if (rn == 15) {
P
pbrook 已提交
8958
                            offset = s->pc & ~(uint32_t)3;
P
pbrook 已提交
8959
                            if (insn & (1 << 23))
P
pbrook 已提交
8960
                                offset -= imm;
P
pbrook 已提交
8961
                            else
P
pbrook 已提交
8962
                                offset += imm;
8963
                            tmp = tcg_temp_new_i32();
P
pbrook 已提交
8964
                            tcg_gen_movi_i32(tmp, offset);
B
bellard 已提交
8965
                        } else {
P
pbrook 已提交
8966
                            tmp = load_reg(s, rn);
P
pbrook 已提交
8967
                            if (insn & (1 << 23))
P
pbrook 已提交
8968
                                tcg_gen_subi_i32(tmp, tmp, imm);
P
pbrook 已提交
8969
                            else
P
pbrook 已提交
8970
                                tcg_gen_addi_i32(tmp, tmp, imm);
B
bellard 已提交
8971
                        }
P
pbrook 已提交
8972
                    }
P
pbrook 已提交
8973
                    store_reg(s, rd, tmp);
P
pbrook 已提交
8974
                }
P
pbrook 已提交
8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000
            } 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 已提交
9001
                }
9002
                tmp2 = tcg_temp_new_i32();
9003
                tcg_gen_movi_i32(tmp2, imm);
P
pbrook 已提交
9004
                rn = (insn >> 16) & 0xf;
9005
                if (rn == 15) {
9006
                    tmp = tcg_temp_new_i32();
9007 9008 9009 9010
                    tcg_gen_movi_i32(tmp, 0);
                } else {
                    tmp = load_reg(s, rn);
                }
P
pbrook 已提交
9011 9012
                op = (insn >> 21) & 0xf;
                if (gen_thumb2_data_op(s, op, (insn & (1 << 20)) != 0,
9013
                                       shifter_out, tmp, tmp2))
P
pbrook 已提交
9014
                    goto illegal_op;
9015
                tcg_temp_free_i32(tmp2);
P
pbrook 已提交
9016 9017
                rd = (insn >> 8) & 0xf;
                if (rd != 15) {
9018 9019
                    store_reg(s, rd, tmp);
                } else {
9020
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
9021 9022
                }
            }
P
pbrook 已提交
9023 9024 9025 9026 9027 9028
        }
        break;
    case 12: /* Load/store single data item.  */
        {
        int postinc = 0;
        int writeback = 0;
P
pbrook 已提交
9029
        int user;
P
pbrook 已提交
9030 9031
        if ((insn & 0x01100000) == 0x01000000) {
            if (disas_neon_ls_insn(env, s, insn))
9032
                goto illegal_op;
P
pbrook 已提交
9033 9034
            break;
        }
9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057
        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) {
9058 9059 9060
                    /* UNPREDICTABLE, unallocated hint or
                     * PLD/PLDW/PLI (literal)
                     */
9061 9062 9063
                    return 0;
                }
                if (op1 & 1) {
9064
                    return 0; /* PLD/PLDW/PLI or unallocated hint */
9065 9066
                }
                if ((op2 == 0) || ((op2 & 0x3c) == 0x30)) {
9067
                    return 0; /* PLD/PLDW/PLI or unallocated hint */
9068 9069 9070 9071 9072
                }
                /* UNDEF space, or an UNPREDICTABLE */
                return 1;
            }
        }
P
pbrook 已提交
9073
        user = IS_USER(s);
P
pbrook 已提交
9074
        if (rn == 15) {
9075
            addr = tcg_temp_new_i32();
P
pbrook 已提交
9076 9077 9078 9079 9080 9081 9082
            /* 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 已提交
9083
            tcg_gen_movi_i32(addr, imm);
P
pbrook 已提交
9084
        } else {
P
pbrook 已提交
9085
            addr = load_reg(s, rn);
P
pbrook 已提交
9086 9087 9088
            if (insn & (1 << 23)) {
                /* Positive offset.  */
                imm = insn & 0xfff;
P
pbrook 已提交
9089
                tcg_gen_addi_i32(addr, addr, imm);
P
pbrook 已提交
9090 9091
            } else {
                imm = insn & 0xff;
9092 9093
                switch ((insn >> 8) & 0xf) {
                case 0x0: /* Shifted Register.  */
P
pbrook 已提交
9094
                    shift = (insn >> 4) & 0xf;
9095 9096
                    if (shift > 3) {
                        tcg_temp_free_i32(addr);
9097
                        goto illegal_op;
9098
                    }
P
pbrook 已提交
9099
                    tmp = load_reg(s, rm);
P
pbrook 已提交
9100
                    if (shift)
P
pbrook 已提交
9101
                        tcg_gen_shli_i32(tmp, tmp, shift);
P
pbrook 已提交
9102
                    tcg_gen_add_i32(addr, addr, tmp);
9103
                    tcg_temp_free_i32(tmp);
P
pbrook 已提交
9104
                    break;
9105
                case 0xc: /* Negative offset.  */
P
pbrook 已提交
9106
                    tcg_gen_addi_i32(addr, addr, -imm);
P
pbrook 已提交
9107
                    break;
9108
                case 0xe: /* User privilege.  */
P
pbrook 已提交
9109 9110
                    tcg_gen_addi_i32(addr, addr, imm);
                    user = 1;
P
pbrook 已提交
9111
                    break;
9112
                case 0x9: /* Post-decrement.  */
P
pbrook 已提交
9113 9114
                    imm = -imm;
                    /* Fall through.  */
9115
                case 0xb: /* Post-increment.  */
P
pbrook 已提交
9116 9117 9118
                    postinc = 1;
                    writeback = 1;
                    break;
9119
                case 0xd: /* Pre-decrement.  */
P
pbrook 已提交
9120 9121
                    imm = -imm;
                    /* Fall through.  */
9122
                case 0xf: /* Pre-increment.  */
P
pbrook 已提交
9123
                    tcg_gen_addi_i32(addr, addr, imm);
P
pbrook 已提交
9124 9125 9126
                    writeback = 1;
                    break;
                default:
9127
                    tcg_temp_free_i32(addr);
B
bellard 已提交
9128
                    goto illegal_op;
P
pbrook 已提交
9129 9130 9131 9132 9133
                }
            }
        }
        if (insn & (1 << 20)) {
            /* Load.  */
9134
            tmp = tcg_temp_new_i32();
9135
            switch (op) {
9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150
            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;
9151
            default:
9152
                tcg_temp_free_i32(tmp);
9153 9154
                tcg_temp_free_i32(addr);
                goto illegal_op;
9155 9156 9157
            }
            if (rs == 15) {
                gen_bx(s, tmp);
P
pbrook 已提交
9158
            } else {
9159
                store_reg(s, rs, tmp);
P
pbrook 已提交
9160 9161 9162
            }
        } else {
            /* Store.  */
P
pbrook 已提交
9163
            tmp = load_reg(s, rs);
P
pbrook 已提交
9164
            switch (op) {
9165 9166 9167 9168 9169 9170 9171 9172 9173
            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;
9174
            default:
9175
                tcg_temp_free_i32(tmp);
9176 9177
                tcg_temp_free_i32(addr);
                goto illegal_op;
B
bellard 已提交
9178
            }
9179
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9180
        }
P
pbrook 已提交
9181
        if (postinc)
P
pbrook 已提交
9182 9183 9184 9185
            tcg_gen_addi_i32(addr, addr, imm);
        if (writeback) {
            store_reg(s, rn, addr);
        } else {
9186
            tcg_temp_free_i32(addr);
P
pbrook 已提交
9187
        }
P
pbrook 已提交
9188 9189 9190 9191
        }
        break;
    default:
        goto illegal_op;
B
bellard 已提交
9192
    }
P
pbrook 已提交
9193 9194 9195
    return 0;
illegal_op:
    return 1;
B
bellard 已提交
9196 9197
}

9198
static void disas_thumb_insn(CPUARMState *env, DisasContext *s)
B
bellard 已提交
9199 9200 9201 9202
{
    uint32_t val, insn, op, rm, rn, rd, shift, cond;
    int32_t offset;
    int i;
9203 9204 9205
    TCGv_i32 tmp;
    TCGv_i32 tmp2;
    TCGv_i32 addr;
B
bellard 已提交
9206

P
pbrook 已提交
9207 9208
    if (s->condexec_mask) {
        cond = s->condexec_cond;
9209 9210 9211 9212 9213
        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 已提交
9214 9215
    }

9216
    insn = arm_lduw_code(env, s->pc, s->bswap_code);
B
bellard 已提交
9217
    s->pc += 2;
B
bellard 已提交
9218

B
bellard 已提交
9219 9220
    switch (insn >> 12) {
    case 0: case 1:
9221

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

9368
        if (op == 9) { /* neg */
9369
            tmp = tcg_temp_new_i32();
9370 9371 9372 9373
            tcg_gen_movi_i32(tmp, 0);
        } else if (op != 0xf) { /* mvn doesn't read its first operand */
            tmp = load_reg(s, rd);
        } else {
9374
            TCGV_UNUSED_I32(tmp);
9375
        }
B
bellard 已提交
9376

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

    case 5:
        /* load/store register offset.  */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
        rm = (insn >> 6) & 7;
        op = (insn >> 9) & 7;
P
pbrook 已提交
9499
        addr = load_reg(s, rn);
P
pbrook 已提交
9500
        tmp = load_reg(s, rm);
P
pbrook 已提交
9501
        tcg_gen_add_i32(addr, addr, tmp);
9502
        tcg_temp_free_i32(tmp);
B
bellard 已提交
9503

9504
        if (op < 3) { /* store */
P
pbrook 已提交
9505
            tmp = load_reg(s, rd);
9506 9507 9508
        } else {
            tmp = tcg_temp_new_i32();
        }
B
bellard 已提交
9509 9510 9511

        switch (op) {
        case 0: /* str */
9512
            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
B
bellard 已提交
9513 9514
            break;
        case 1: /* strh */
9515
            tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
B
bellard 已提交
9516 9517
            break;
        case 2: /* strb */
9518
            tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
B
bellard 已提交
9519 9520
            break;
        case 3: /* ldrsb */
9521
            tcg_gen_qemu_ld8s(tmp, addr, IS_USER(s));
B
bellard 已提交
9522 9523
            break;
        case 4: /* ldr */
9524
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
B
bellard 已提交
9525 9526
            break;
        case 5: /* ldrh */
9527
            tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
B
bellard 已提交
9528 9529
            break;
        case 6: /* ldrb */
9530
            tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
B
bellard 已提交
9531 9532
            break;
        case 7: /* ldrsh */
9533
            tcg_gen_qemu_ld16s(tmp, addr, IS_USER(s));
B
bellard 已提交
9534 9535
            break;
        }
9536
        if (op >= 3) { /* load */
P
pbrook 已提交
9537
            store_reg(s, rd, tmp);
9538 9539 9540
        } else {
            tcg_temp_free_i32(tmp);
        }
9541
        tcg_temp_free_i32(addr);
B
bellard 已提交
9542 9543 9544 9545 9546 9547
        break;

    case 6:
        /* load/store word immediate offset */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
P
pbrook 已提交
9548
        addr = load_reg(s, rn);
B
bellard 已提交
9549
        val = (insn >> 4) & 0x7c;
P
pbrook 已提交
9550
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9551 9552 9553

        if (insn & (1 << 11)) {
            /* load */
9554 9555
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9556
            store_reg(s, rd, tmp);
B
bellard 已提交
9557 9558
        } else {
            /* store */
P
pbrook 已提交
9559
            tmp = load_reg(s, rd);
9560 9561
            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9562
        }
9563
        tcg_temp_free_i32(addr);
B
bellard 已提交
9564 9565 9566 9567 9568 9569
        break;

    case 7:
        /* load/store byte immediate offset */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
P
pbrook 已提交
9570
        addr = load_reg(s, rn);
B
bellard 已提交
9571
        val = (insn >> 6) & 0x1f;
P
pbrook 已提交
9572
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9573 9574 9575

        if (insn & (1 << 11)) {
            /* load */
9576 9577
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld8u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9578
            store_reg(s, rd, tmp);
B
bellard 已提交
9579 9580
        } else {
            /* store */
P
pbrook 已提交
9581
            tmp = load_reg(s, rd);
9582 9583
            tcg_gen_qemu_st8(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9584
        }
9585
        tcg_temp_free_i32(addr);
B
bellard 已提交
9586 9587 9588 9589 9590 9591
        break;

    case 8:
        /* load/store halfword immediate offset */
        rd = insn & 7;
        rn = (insn >> 3) & 7;
P
pbrook 已提交
9592
        addr = load_reg(s, rn);
B
bellard 已提交
9593
        val = (insn >> 5) & 0x3e;
P
pbrook 已提交
9594
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9595 9596 9597

        if (insn & (1 << 11)) {
            /* load */
9598 9599
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld16u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9600
            store_reg(s, rd, tmp);
B
bellard 已提交
9601 9602
        } else {
            /* store */
P
pbrook 已提交
9603
            tmp = load_reg(s, rd);
9604 9605
            tcg_gen_qemu_st16(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9606
        }
9607
        tcg_temp_free_i32(addr);
B
bellard 已提交
9608 9609 9610 9611 9612
        break;

    case 9:
        /* load/store from stack */
        rd = (insn >> 8) & 7;
P
pbrook 已提交
9613
        addr = load_reg(s, 13);
B
bellard 已提交
9614
        val = (insn & 0xff) * 4;
P
pbrook 已提交
9615
        tcg_gen_addi_i32(addr, addr, val);
B
bellard 已提交
9616 9617 9618

        if (insn & (1 << 11)) {
            /* load */
9619 9620
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
P
pbrook 已提交
9621
            store_reg(s, rd, tmp);
B
bellard 已提交
9622 9623
        } else {
            /* store */
P
pbrook 已提交
9624
            tmp = load_reg(s, rd);
9625 9626
            tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
            tcg_temp_free_i32(tmp);
B
bellard 已提交
9627
        }
9628
        tcg_temp_free_i32(addr);
B
bellard 已提交
9629 9630 9631 9632 9633
        break;

    case 10:
        /* add to high reg */
        rd = (insn >> 8) & 7;
B
bellard 已提交
9634 9635
        if (insn & (1 << 11)) {
            /* SP */
P
pbrook 已提交
9636
            tmp = load_reg(s, 13);
B
bellard 已提交
9637 9638
        } else {
            /* PC. bit 1 is ignored.  */
9639
            tmp = tcg_temp_new_i32();
P
pbrook 已提交
9640
            tcg_gen_movi_i32(tmp, (s->pc + 2) & ~(uint32_t)2);
B
bellard 已提交
9641
        }
B
bellard 已提交
9642
        val = (insn & 0xff) * 4;
P
pbrook 已提交
9643 9644
        tcg_gen_addi_i32(tmp, tmp, val);
        store_reg(s, rd, tmp);
B
bellard 已提交
9645 9646 9647 9648 9649 9650 9651 9652
        break;

    case 11:
        /* misc */
        op = (insn >> 8) & 0xf;
        switch (op) {
        case 0:
            /* adjust stack pointer */
P
pbrook 已提交
9653
            tmp = load_reg(s, 13);
B
bellard 已提交
9654 9655
            val = (insn & 0x7f) * 4;
            if (insn & (1 << 7))
B
balrog 已提交
9656
                val = -(int32_t)val;
P
pbrook 已提交
9657 9658
            tcg_gen_addi_i32(tmp, tmp, val);
            store_reg(s, 13, tmp);
B
bellard 已提交
9659 9660
            break;

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

P
pbrook 已提交
9732 9733
        case 1: case 3: case 9: case 11: /* czb */
            rm = insn & 7;
P
pbrook 已提交
9734
            tmp = load_reg(s, rm);
P
pbrook 已提交
9735 9736 9737
            s->condlabel = gen_new_label();
            s->condjmp = 1;
            if (insn & (1 << 11))
P
pbrook 已提交
9738
                tcg_gen_brcondi_i32(TCG_COND_EQ, tmp, 0, s->condlabel);
P
pbrook 已提交
9739
            else
P
pbrook 已提交
9740
                tcg_gen_brcondi_i32(TCG_COND_NE, tmp, 0, s->condlabel);
9741
            tcg_temp_free_i32(tmp);
P
pbrook 已提交
9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758
            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 已提交
9759
        case 0xe: /* bkpt */
9760
            ARCH(5);
9761
            gen_exception_insn(s, 2, EXCP_BKPT);
P
pbrook 已提交
9762 9763
            break;

P
pbrook 已提交
9764 9765 9766 9767
        case 0xa: /* rev */
            ARCH(6);
            rn = (insn >> 3) & 0x7;
            rd = insn & 0x7;
P
pbrook 已提交
9768
            tmp = load_reg(s, rn);
P
pbrook 已提交
9769
            switch ((insn >> 6) & 3) {
A
aurel32 已提交
9770
            case 0: tcg_gen_bswap32_i32(tmp, tmp); break;
P
pbrook 已提交
9771 9772
            case 1: gen_rev16(tmp); break;
            case 3: gen_revsh(tmp); break;
P
pbrook 已提交
9773 9774
            default: goto illegal_op;
            }
P
pbrook 已提交
9775
            store_reg(s, rd, tmp);
P
pbrook 已提交
9776 9777
            break;

9778 9779 9780 9781 9782
        case 6:
            switch ((insn >> 5) & 7) {
            case 2:
                /* setend */
                ARCH(6);
9783 9784
                if (((insn >> 3) & 1) != s->bswap_code) {
                    /* Dynamic endianness switching not implemented. */
9785
                    qemu_log_mask(LOG_UNIMP, "arm: unimplemented setend\n");
9786 9787
                    goto illegal_op;
                }
P
pbrook 已提交
9788
                break;
9789 9790 9791 9792 9793
            case 3:
                /* cps */
                ARCH(6);
                if (IS_USER(s)) {
                    break;
P
pbrook 已提交
9794
                }
9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817
                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 已提交
9818
                }
9819 9820 9821
                break;
            default:
                goto undef;
P
pbrook 已提交
9822 9823 9824
            }
            break;

B
bellard 已提交
9825 9826 9827 9828 9829 9830
        default:
            goto undef;
        }
        break;

    case 12:
9831
    {
B
bellard 已提交
9832
        /* load/store multiple */
9833 9834
        TCGv_i32 loaded_var;
        TCGV_UNUSED_I32(loaded_var);
B
bellard 已提交
9835
        rn = (insn >> 8) & 0x7;
P
pbrook 已提交
9836
        addr = load_reg(s, rn);
B
bellard 已提交
9837 9838 9839 9840
        for (i = 0; i < 8; i++) {
            if (insn & (1 << i)) {
                if (insn & (1 << 11)) {
                    /* load */
9841 9842
                    tmp = tcg_temp_new_i32();
                    tcg_gen_qemu_ld32u(tmp, addr, IS_USER(s));
9843 9844 9845 9846 9847
                    if (i == rn) {
                        loaded_var = tmp;
                    } else {
                        store_reg(s, i, tmp);
                    }
B
bellard 已提交
9848 9849
                } else {
                    /* store */
P
pbrook 已提交
9850
                    tmp = load_reg(s, i);
9851 9852
                    tcg_gen_qemu_st32(tmp, addr, IS_USER(s));
                    tcg_temp_free_i32(tmp);
B
bellard 已提交
9853
                }
B
bellard 已提交
9854
                /* advance to the next address */
P
pbrook 已提交
9855
                tcg_gen_addi_i32(addr, addr, 4);
B
bellard 已提交
9856 9857
            }
        }
P
pbrook 已提交
9858
        if ((insn & (1 << rn)) == 0) {
9859
            /* base reg not in list: base register writeback */
P
pbrook 已提交
9860 9861
            store_reg(s, rn, addr);
        } else {
9862 9863 9864 9865
            /* base reg in list: if load, complete it now */
            if (insn & (1 << 11)) {
                store_reg(s, rn, loaded_var);
            }
9866
            tcg_temp_free_i32(addr);
P
pbrook 已提交
9867
        }
B
bellard 已提交
9868
        break;
9869
    }
B
bellard 已提交
9870 9871 9872 9873 9874 9875 9876 9877
    case 13:
        /* conditional branch or swi */
        cond = (insn >> 8) & 0xf;
        if (cond == 0xe)
            goto undef;

        if (cond == 0xf) {
            /* swi */
9878
            gen_set_pc_im(s->pc);
P
pbrook 已提交
9879
            s->is_jmp = DISAS_SWI;
B
bellard 已提交
9880 9881 9882
            break;
        }
        /* generate a conditional jump to next instruction */
9883
        s->condlabel = gen_new_label();
P
pbrook 已提交
9884
        gen_test_cc(cond ^ 1, s->condlabel);
9885
        s->condjmp = 1;
B
bellard 已提交
9886 9887

        /* jump to the offset */
B
bellard 已提交
9888
        val = (uint32_t)s->pc + 2;
B
bellard 已提交
9889
        offset = ((int32_t)insn << 24) >> 24;
B
bellard 已提交
9890
        val += offset << 1;
B
bellard 已提交
9891
        gen_jmp(s, val);
B
bellard 已提交
9892 9893 9894
        break;

    case 14:
P
pbrook 已提交
9895
        if (insn & (1 << 11)) {
P
pbrook 已提交
9896 9897
            if (disas_thumb2_insn(env, s, insn))
              goto undef32;
P
pbrook 已提交
9898 9899
            break;
        }
P
pbrook 已提交
9900
        /* unconditional branch */
B
bellard 已提交
9901 9902 9903
        val = (uint32_t)s->pc;
        offset = ((int32_t)insn << 21) >> 21;
        val += (offset << 1) + 2;
B
bellard 已提交
9904
        gen_jmp(s, val);
B
bellard 已提交
9905 9906 9907
        break;

    case 15:
P
pbrook 已提交
9908
        if (disas_thumb2_insn(env, s, insn))
B
balrog 已提交
9909
            goto undef32;
P
pbrook 已提交
9910
        break;
B
bellard 已提交
9911 9912
    }
    return;
P
pbrook 已提交
9913
undef32:
9914
    gen_exception_insn(s, 4, EXCP_UDEF);
P
pbrook 已提交
9915 9916
    return;
illegal_op:
B
bellard 已提交
9917
undef:
9918
    gen_exception_insn(s, 2, EXCP_UDEF);
B
bellard 已提交
9919 9920
}

B
bellard 已提交
9921 9922 9923
/* 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. */
9924
static inline void gen_intermediate_code_internal(ARMCPU *cpu,
9925
                                                  TranslationBlock *tb,
9926
                                                  bool search_pc)
B
bellard 已提交
9927
{
9928
    CPUState *cs = CPU(cpu);
9929
    CPUARMState *env = &cpu->env;
B
bellard 已提交
9930
    DisasContext dc1, *dc = &dc1;
9931
    CPUBreakpoint *bp;
B
bellard 已提交
9932 9933
    uint16_t *gen_opc_end;
    int j, lj;
B
bellard 已提交
9934
    target_ulong pc_start;
B
bellard 已提交
9935
    uint32_t next_page_start;
P
pbrook 已提交
9936 9937
    int num_insns;
    int max_insns;
9938

B
bellard 已提交
9939
    /* generate intermediate code */
B
bellard 已提交
9940
    pc_start = tb->pc;
9941

B
bellard 已提交
9942 9943
    dc->tb = tb;

9944
    gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE;
B
bellard 已提交
9945 9946 9947

    dc->is_jmp = DISAS_NEXT;
    dc->pc = pc_start;
9948
    dc->singlestep_enabled = cs->singlestep_enabled;
9949
    dc->condjmp = 0;
9950
    dc->thumb = ARM_TBFLAG_THUMB(tb->flags);
P
Paul Brook 已提交
9951
    dc->bswap_code = ARM_TBFLAG_BSWAP_CODE(tb->flags);
9952 9953
    dc->condexec_mask = (ARM_TBFLAG_CONDEXEC(tb->flags) & 0xf) << 1;
    dc->condexec_cond = ARM_TBFLAG_CONDEXEC(tb->flags) >> 4;
B
bellard 已提交
9954
#if !defined(CONFIG_USER_ONLY)
9955
    dc->user = (ARM_TBFLAG_PRIV(tb->flags) == 0);
B
bellard 已提交
9956
#endif
9957
    dc->vfp_enabled = ARM_TBFLAG_VFPEN(tb->flags);
9958 9959
    dc->vec_len = ARM_TBFLAG_VECLEN(tb->flags);
    dc->vec_stride = ARM_TBFLAG_VECSTRIDE(tb->flags);
P
pbrook 已提交
9960 9961 9962 9963
    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 已提交
9964 9965
    cpu_V0 = cpu_F0d;
    cpu_V1 = cpu_F1d;
P
pbrook 已提交
9966
    /* FIXME: cpu_M0 can probably be the same as cpu_V0.  */
P
pbrook 已提交
9967
    cpu_M0 = tcg_temp_new_i64();
B
bellard 已提交
9968
    next_page_start = (pc_start & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE;
B
bellard 已提交
9969
    lj = -1;
P
pbrook 已提交
9970 9971 9972 9973 9974
    num_insns = 0;
    max_insns = tb->cflags & CF_COUNT_MASK;
    if (max_insns == 0)
        max_insns = CF_COUNT_MASK;

9975
    gen_tb_start();
9976

9977 9978
    tcg_clear_temp_count();

9979 9980 9981
    /* A note on handling of the condexec (IT) bits:
     *
     * We want to avoid the overhead of having to write the updated condexec
9982
     * bits back to the CPUARMState for every instruction in an IT block. So:
9983
     * (1) if the condexec bits are not already zero then we write
9984
     * zero back into the CPUARMState now. This avoids complications trying
9985 9986 9987 9988 9989
     * 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()
9990
     * which will write the correct value into CPUARMState if zero is wrong.
9991 9992 9993 9994 9995 9996
     * 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)
9997
     * then the CPUARMState will be wrong and we need to reset it.
9998 9999 10000
     * 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
10001 10002
     * gen_opc_condexec_bits[]. restore_state_to_opc() then uses
     * this to restore the condexec bits.
10003 10004 10005
     *
     * Note that there are no instructions which can read the condexec
     * bits, and none which can write non-static values to them, so
10006
     * we don't need to care about whether CPUARMState is correct in the
10007 10008 10009
     * middle of a TB.
     */

P
pbrook 已提交
10010 10011
    /* Reset the conditional execution bits immediately. This avoids
       complications trying to do it at the end of the block.  */
10012
    if (dc->condexec_mask || dc->condexec_cond)
P
pbrook 已提交
10013
      {
10014
        TCGv_i32 tmp = tcg_temp_new_i32();
P
pbrook 已提交
10015
        tcg_gen_movi_i32(tmp, 0);
P
pbrook 已提交
10016
        store_cpu_field(tmp, condexec_bits);
P
pbrook 已提交
10017
      }
B
bellard 已提交
10018
    do {
10019 10020 10021 10022 10023 10024 10025 10026 10027 10028
#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 已提交
10029 10030 10031
        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 已提交
10032
            gen_exception(EXCP_EXCEPTION_EXIT);
10033 10034
            dc->is_jmp = DISAS_UPDATE;
            break;
P
pbrook 已提交
10035 10036 10037
        }
#endif

B
Blue Swirl 已提交
10038 10039
        if (unlikely(!QTAILQ_EMPTY(&env->breakpoints))) {
            QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
10040
                if (bp->pc == dc->pc) {
10041
                    gen_exception_insn(dc, 0, EXCP_DEBUG);
P
pbrook 已提交
10042 10043 10044 10045
                    /* Advance PC so that clearing the breakpoint will
                       invalidate this TB.  */
                    dc->pc += 2;
                    goto done_generating;
B
bellard 已提交
10046 10047 10048
                }
            }
        }
B
bellard 已提交
10049
        if (search_pc) {
10050
            j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
B
bellard 已提交
10051 10052 10053
            if (lj < j) {
                lj++;
                while (lj < j)
10054
                    tcg_ctx.gen_opc_instr_start[lj++] = 0;
B
bellard 已提交
10055
            }
10056
            tcg_ctx.gen_opc_pc[lj] = dc->pc;
10057
            gen_opc_condexec_bits[lj] = (dc->condexec_cond << 4) | (dc->condexec_mask >> 1);
10058
            tcg_ctx.gen_opc_instr_start[lj] = 1;
10059
            tcg_ctx.gen_opc_icount[lj] = num_insns;
B
bellard 已提交
10060
        }
10061

P
pbrook 已提交
10062 10063 10064
        if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
            gen_io_start();

10065
        if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) {
10066 10067 10068
            tcg_gen_debug_insn_start(dc->pc);
        }

10069
        if (dc->thumb) {
P
pbrook 已提交
10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081
            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);
        }
10082 10083 10084 10085 10086

        if (dc->condjmp && !dc->is_jmp) {
            gen_set_label(dc->condlabel);
            dc->condjmp = 0;
        }
10087 10088 10089 10090 10091

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

B
balrog 已提交
10092
        /* Translation stops when a conditional branch is encountered.
10093
         * Otherwise the subsequent code could get translated several times.
B
bellard 已提交
10094
         * Also stop translation when a page boundary is reached.  This
T
ths 已提交
10095
         * ensures prefetch aborts occur at the right place.  */
P
pbrook 已提交
10096
        num_insns ++;
10097
    } while (!dc->is_jmp && tcg_ctx.gen_opc_ptr < gen_opc_end &&
10098
             !cs->singlestep_enabled &&
10099
             !singlestep &&
P
pbrook 已提交
10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110
             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 已提交
10111

B
bellard 已提交
10112
    /* At this stage dc->condjmp will only be set when the skipped
P
pbrook 已提交
10113 10114
       instruction was a conditional branch or trap, and the PC has
       already been written.  */
10115
    if (unlikely(cs->singlestep_enabled)) {
B
bellard 已提交
10116
        /* Make sure the pc is updated, and raise a debug exception.  */
10117
        if (dc->condjmp) {
P
pbrook 已提交
10118 10119
            gen_set_condexec(dc);
            if (dc->is_jmp == DISAS_SWI) {
P
pbrook 已提交
10120
                gen_exception(EXCP_SWI);
P
pbrook 已提交
10121
            } else {
P
pbrook 已提交
10122
                gen_exception(EXCP_DEBUG);
P
pbrook 已提交
10123
            }
10124 10125 10126
            gen_set_label(dc->condlabel);
        }
        if (dc->condjmp || !dc->is_jmp) {
P
pbrook 已提交
10127
            gen_set_pc_im(dc->pc);
10128
            dc->condjmp = 0;
B
bellard 已提交
10129
        }
P
pbrook 已提交
10130 10131
        gen_set_condexec(dc);
        if (dc->is_jmp == DISAS_SWI && !dc->condjmp) {
P
pbrook 已提交
10132
            gen_exception(EXCP_SWI);
P
pbrook 已提交
10133 10134 10135
        } else {
            /* FIXME: Single stepping a WFI insn will not halt
               the CPU.  */
P
pbrook 已提交
10136
            gen_exception(EXCP_DEBUG);
P
pbrook 已提交
10137
        }
B
bellard 已提交
10138
    } else {
P
pbrook 已提交
10139 10140
        /* While branches must always occur at the end of an IT block,
           there are a few other things that can cause us to terminate
10141
           the TB in the middle of an IT block:
P
pbrook 已提交
10142 10143 10144 10145 10146 10147
            - 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 已提交
10148 10149
        switch(dc->is_jmp) {
        case DISAS_NEXT:
10150
            gen_goto_tb(dc, 1, dc->pc);
B
bellard 已提交
10151 10152 10153 10154 10155
            break;
        default:
        case DISAS_JUMP:
        case DISAS_UPDATE:
            /* indicate that the hash table must be used to find the next TB */
B
bellard 已提交
10156
            tcg_gen_exit_tb(0);
B
bellard 已提交
10157 10158 10159 10160
            break;
        case DISAS_TB_JUMP:
            /* nothing more to generate */
            break;
P
pbrook 已提交
10161
        case DISAS_WFI:
B
Blue Swirl 已提交
10162
            gen_helper_wfi(cpu_env);
P
pbrook 已提交
10163 10164
            break;
        case DISAS_SWI:
P
pbrook 已提交
10165
            gen_exception(EXCP_SWI);
P
pbrook 已提交
10166
            break;
B
bellard 已提交
10167
        }
10168 10169
        if (dc->condjmp) {
            gen_set_label(dc->condlabel);
P
pbrook 已提交
10170
            gen_set_condexec(dc);
10171
            gen_goto_tb(dc, 1, dc->pc);
10172 10173
            dc->condjmp = 0;
        }
B
bellard 已提交
10174
    }
P
pbrook 已提交
10175

P
pbrook 已提交
10176
done_generating:
10177
    gen_tb_end(tb, num_insns);
10178
    *tcg_ctx.gen_opc_ptr = INDEX_op_end;
B
bellard 已提交
10179 10180

#ifdef DEBUG_DISAS
10181
    if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
10182 10183
        qemu_log("----------------\n");
        qemu_log("IN: %s\n", lookup_symbol(pc_start));
B
Blue Swirl 已提交
10184
        log_target_disas(env, pc_start, dc->pc - pc_start,
P
Paul Brook 已提交
10185
                         dc->thumb | (dc->bswap_code << 1));
10186
        qemu_log("\n");
B
bellard 已提交
10187 10188
    }
#endif
B
bellard 已提交
10189
    if (search_pc) {
10190
        j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
B
bellard 已提交
10191 10192
        lj++;
        while (lj <= j)
10193
            tcg_ctx.gen_opc_instr_start[lj++] = 0;
B
bellard 已提交
10194
    } else {
B
bellard 已提交
10195
        tb->size = dc->pc - pc_start;
P
pbrook 已提交
10196
        tb->icount = num_insns;
B
bellard 已提交
10197
    }
B
bellard 已提交
10198 10199
}

10200
void gen_intermediate_code(CPUARMState *env, TranslationBlock *tb)
B
bellard 已提交
10201
{
10202
    gen_intermediate_code_internal(arm_env_get_cpu(env), tb, false);
B
bellard 已提交
10203 10204
}

10205
void gen_intermediate_code_pc(CPUARMState *env, TranslationBlock *tb)
B
bellard 已提交
10206
{
10207
    gen_intermediate_code_internal(arm_env_get_cpu(env), tb, true);
B
bellard 已提交
10208 10209
}

B
bellard 已提交
10210 10211 10212 10213
static const char *cpu_mode_names[16] = {
  "usr", "fiq", "irq", "svc", "???", "???", "???", "abt",
  "???", "???", "???", "und", "???", "???", "???", "sys"
};
P
pbrook 已提交
10214

10215 10216
void arm_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
                        int flags)
B
bellard 已提交
10217
{
10218 10219
    ARMCPU *cpu = ARM_CPU(cs);
    CPUARMState *env = &cpu->env;
B
bellard 已提交
10220
    int i;
B
bellard 已提交
10221
    uint32_t psr;
B
bellard 已提交
10222 10223

    for(i=0;i<16;i++) {
B
bellard 已提交
10224
        cpu_fprintf(f, "R%02d=%08x", i, env->regs[i]);
B
bellard 已提交
10225
        if ((i % 4) == 3)
B
bellard 已提交
10226
            cpu_fprintf(f, "\n");
B
bellard 已提交
10227
        else
B
bellard 已提交
10228
            cpu_fprintf(f, " ");
B
bellard 已提交
10229
    }
B
bellard 已提交
10230
    psr = cpsr_read(env);
10231 10232
    cpu_fprintf(f, "PSR=%08x %c%c%c%c %c %s%d\n",
                psr,
B
bellard 已提交
10233 10234 10235 10236
                psr & (1 << 31) ? 'N' : '-',
                psr & (1 << 30) ? 'Z' : '-',
                psr & (1 << 29) ? 'C' : '-',
                psr & (1 << 28) ? 'V' : '-',
10237
                psr & CPSR_T ? 'T' : 'A',
B
bellard 已提交
10238
                cpu_mode_names[psr & 0xf], (psr & 0x10) ? 32 : 26);
B
bellard 已提交
10239

10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255
    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 已提交
10256
    }
B
bellard 已提交
10257
}
B
bellard 已提交
10258

10259
void restore_state_to_opc(CPUARMState *env, TranslationBlock *tb, int pc_pos)
A
aurel32 已提交
10260
{
10261
    env->regs[15] = tcg_ctx.gen_opc_pc[pc_pos];
10262
    env->condexec_bits = gen_opc_condexec_bits[pc_pos];
A
aurel32 已提交
10263
}