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

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

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

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

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

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

72 73
static uint32_t gen_opc_condexec_bits[OPC_BUF_SIZE];

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

P
pbrook 已提交
205

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

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

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

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

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

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

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

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

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

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

    tcg_temp_free_i64(tmp64);
    return a;
}

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

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

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

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

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

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

    return ret;
P
pbrook 已提交
326 327
}

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

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

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

    return ret;
P
pbrook 已提交
344 345
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#undef VFP_OP2

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1164 1165
#define ARM_CP_RW_BIT	(1 << 20)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

IWMMXT_OP(msadb)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    return 0;
}

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

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

        if (acc != 0)
            return 1;

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

        gen_op_iwmmxt_movq_wRn_M0(acc);
        return 0;
    }

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

        if (acc != 0)
            return 1;

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

    return 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

P
pbrook 已提交
3495 3496 3497 3498
static void gen_nop_hint(DisasContext *s, int val)
{
    switch (val) {
    case 3: /* wfi */
P
pbrook 已提交
3499
        gen_set_pc_im(s->pc);
P
pbrook 已提交
3500 3501 3502 3503
        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. */
P
pbrook 已提交
6718 6719 6720 6721 6722 6723 6724
                goto illegal_op;
            }
            return;
        } else if ((insn & 0x0fffff00) == 0x057ff000) {
            switch ((insn >> 4) & 0xf) {
            case 1: /* clrex */
                ARCH(6K);
P
Paul Brook 已提交
6725
                gen_clrex(s);
P
pbrook 已提交
6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737
                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 */
6738
            if (IS_USER(s)) {
P
pbrook 已提交
6739 6740
                goto illegal_op;
            }
6741 6742
            ARCH(6);
            gen_srs(s, (insn & 0x1f), (insn >> 23) & 3, insn & (1 << 21));
6743
            return;
6744
        } else if ((insn & 0x0e50ffe0) == 0x08100a00) {
P
pbrook 已提交
6745
            /* rfe */
6746
            int32_t offset;
P
pbrook 已提交
6747 6748 6749 6750
            if (IS_USER(s))
                goto illegal_op;
            ARCH(6);
            rn = (insn >> 16) & 0xf;
P
pbrook 已提交
6751
            addr = load_reg(s, rn);
P
pbrook 已提交
6752 6753
            i = (insn >> 23) & 3;
            switch (i) {
P
pbrook 已提交
6754
            case 0: offset = -4; break; /* DA */
6755 6756
            case 1: offset = 0; break; /* IA */
            case 2: offset = -8; break; /* DB */
P
pbrook 已提交
6757
            case 3: offset = 4; break; /* IB */
P
pbrook 已提交
6758 6759 6760
            default: abort();
            }
            if (offset)
P
pbrook 已提交
6761 6762
                tcg_gen_addi_i32(addr, addr, offset);
            /* Load PC into tmp and CPSR into tmp2.  */
6763 6764
            tmp = tcg_temp_new_i32();
            tcg_gen_qemu_ld32u(tmp, addr, 0);
P
pbrook 已提交
6765
            tcg_gen_addi_i32(addr, addr, 4);
6766
            tmp2 = tcg_temp_new_i32();
P
Peter Chubb 已提交
6767
            tcg_gen_qemu_ld32u(tmp2, addr, 0);
P
pbrook 已提交
6768 6769 6770
            if (insn & (1 << 21)) {
                /* Base writeback.  */
                switch (i) {
P
pbrook 已提交
6771
                case 0: offset = -8; break;
6772 6773
                case 1: offset = 4; break;
                case 2: offset = -4; break;
P
pbrook 已提交
6774
                case 3: offset = 0; break;
P
pbrook 已提交
6775 6776 6777
                default: abort();
                }
                if (offset)
P
pbrook 已提交
6778 6779 6780
                    tcg_gen_addi_i32(addr, addr, offset);
                store_reg(s, rn, addr);
            } else {
6781
                tcg_temp_free_i32(addr);
P
pbrook 已提交
6782
            }
P
pbrook 已提交
6783
            gen_rfe(s, tmp, tmp2);
6784
            return;
P
pbrook 已提交
6785 6786 6787 6788 6789
        } else if ((insn & 0x0e000000) == 0x0a000000) {
            /* branch link and change to thumb (blx <offset>) */
            int32_t offset;

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

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

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

7312
                        addr = tcg_temp_local_new_i32();
7313
                        load_reg_var(s, addr, rn);
7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353

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

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

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

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

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

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

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

8096
            tmp2 = tcg_temp_new_i32();
P
pbrook 已提交
8097
            tcg_gen_movi_i32(tmp2, s->pc | 1);
P
pbrook 已提交
8098 8099
            store_reg(s, 14, tmp2);
            gen_bx(s, tmp);
P
pbrook 已提交
8100 8101 8102 8103 8104
            return 0;
        }
        if (insn & (1 << 11)) {
            /* Second half of bl.  */
            offset = ((insn & 0x7ff) << 1) | 1;
P
pbrook 已提交
8105
            tmp = load_reg(s, 14);
B
balrog 已提交
8106
            tcg_gen_addi_i32(tmp, tmp, offset);
P
pbrook 已提交
8107

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

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

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

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

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

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

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

9213
    insn = arm_lduw_code(env, s->pc, s->bswap_code);
B
bellard 已提交
9214
    s->pc += 2;
B
bellard 已提交
9215

B
bellard 已提交
9216 9217
    switch (insn >> 12) {
    case 0: case 1:
9218

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

B
bellard 已提交
9821 9822 9823 9824 9825 9826
        default:
            goto undef;
        }
        break;

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

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

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

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

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

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

B
bellard 已提交
9935
    /* generate intermediate code */
B
bellard 已提交
9936
    pc_start = tb->pc;
9937

B
bellard 已提交
9938 9939
    dc->tb = tb;

9940
    gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE;
B
bellard 已提交
9941 9942 9943

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

9971
    gen_tb_start();
9972

9973 9974
    tcg_clear_temp_count();

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

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

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

P
pbrook 已提交
10058 10059 10060
        if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
            gen_io_start();

10061
        if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) {
10062 10063 10064
            tcg_gen_debug_insn_start(dc->pc);
        }

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

        if (dc->condjmp && !dc->is_jmp) {
            gen_set_label(dc->condlabel);
            dc->condjmp = 0;
        }
10083 10084 10085 10086 10087

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

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

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

P
pbrook 已提交
10172
done_generating:
10173
    gen_tb_end(tb, num_insns);
10174
    *tcg_ctx.gen_opc_ptr = INDEX_op_end;
B
bellard 已提交
10175 10176

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

10196
void gen_intermediate_code(CPUARMState *env, TranslationBlock *tb)
B
bellard 已提交
10197
{
10198
    gen_intermediate_code_internal(arm_env_get_cpu(env), tb, false);
B
bellard 已提交
10199 10200
}

10201
void gen_intermediate_code_pc(CPUARMState *env, TranslationBlock *tb)
B
bellard 已提交
10202
{
10203
    gen_intermediate_code_internal(arm_env_get_cpu(env), tb, true);
B
bellard 已提交
10204 10205
}

B
bellard 已提交
10206 10207 10208 10209
static const char *cpu_mode_names[16] = {
  "usr", "fiq", "irq", "svc", "???", "???", "???", "abt",
  "???", "???", "???", "und", "???", "???", "???", "sys"
};
P
pbrook 已提交
10210

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

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

10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251
    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 已提交
10252
    }
B
bellard 已提交
10253
}
B
bellard 已提交
10254

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