translate.c 72.9 KB
Newer Older
J
j_mayer 已提交
1 2
/*
 *  Alpha emulation cpu translation for qemu.
3
 *
J
j_mayer 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *  Copyright (c) 2007 Jocelyn Mayer
 *
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>

#include "cpu.h"
#include "exec-all.h"
#include "disas.h"
28
#include "host-utils.h"
A
aurel32 已提交
29
#include "helper.h"
B
bellard 已提交
30
#include "tcg-op.h"
31
#include "qemu-common.h"
J
j_mayer 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

#define DO_SINGLE_STEP
#define GENERATE_NOP
#define ALPHA_DEBUG_DISAS
#define DO_TB_FLUSH

typedef struct DisasContext DisasContext;
struct DisasContext {
    uint64_t pc;
    int mem_idx;
#if !defined (CONFIG_USER_ONLY)
    int pal_mode;
#endif
    uint32_t amask;
};

A
aurel32 已提交
48
/* global register indexes */
P
pbrook 已提交
49
static TCGv cpu_env;
A
aurel32 已提交
50 51 52
static TCGv cpu_ir[31];
static TCGv cpu_pc;

A
aurel32 已提交
53 54 55 56
/* dyngen register indexes */
static TCGv cpu_T[3];

/* register names */
A
aurel32 已提交
57
static char cpu_reg_names[10*4+21*5];
P
pbrook 已提交
58 59 60

#include "gen-icount.h"

61
static void alpha_translate_init(void)
P
pbrook 已提交
62
{
A
aurel32 已提交
63 64
    int i;
    char *p;
P
pbrook 已提交
65
    static int done_init = 0;
A
aurel32 已提交
66

P
pbrook 已提交
67 68
    if (done_init)
        return;
A
aurel32 已提交
69

P
pbrook 已提交
70
    cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env");
A
aurel32 已提交
71

A
aurel32 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84
#if TARGET_LONG_BITS > HOST_LONG_BITS
    cpu_T[0] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
                                  offsetof(CPUState, t0), "T0");
    cpu_T[1] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
                                  offsetof(CPUState, t1), "T1");
    cpu_T[2] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
                                  offsetof(CPUState, t2), "T2");
#else
    cpu_T[0] = tcg_global_reg_new(TCG_TYPE_I64, TCG_AREG1, "T0");
    cpu_T[1] = tcg_global_reg_new(TCG_TYPE_I64, TCG_AREG2, "T1");
    cpu_T[2] = tcg_global_reg_new(TCG_TYPE_I64, TCG_AREG3, "T2");
#endif

A
aurel32 已提交
85 86 87 88 89
    p = cpu_reg_names;
    for (i = 0; i < 31; i++) {
        sprintf(p, "ir%d", i);
        cpu_ir[i] = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
                                       offsetof(CPUState, ir[i]), p);
A
aurel32 已提交
90
        p += (i < 10) ? 4 : 5;
A
aurel32 已提交
91 92 93 94 95 96 97 98 99 100
    }

    cpu_pc = tcg_global_mem_new(TCG_TYPE_I64, TCG_AREG0,
                                offsetof(CPUState, pc), "pc");

    /* register helpers */
#undef DEF_HELPER
#define DEF_HELPER(ret, name, params) tcg_register_helper(name, #name);
#include "helper.h"

P
pbrook 已提交
101 102 103
    done_init = 1;
}

J
j_mayer 已提交
104
static always_inline void gen_op_nop (void)
J
j_mayer 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
{
#if defined(GENERATE_NOP)
    gen_op_no_op();
#endif
}

#define GEN32(func, NAME) \
static GenOpFunc *NAME ## _table [32] = {                                     \
NAME ## 0, NAME ## 1, NAME ## 2, NAME ## 3,                                   \
NAME ## 4, NAME ## 5, NAME ## 6, NAME ## 7,                                   \
NAME ## 8, NAME ## 9, NAME ## 10, NAME ## 11,                                 \
NAME ## 12, NAME ## 13, NAME ## 14, NAME ## 15,                               \
NAME ## 16, NAME ## 17, NAME ## 18, NAME ## 19,                               \
NAME ## 20, NAME ## 21, NAME ## 22, NAME ## 23,                               \
NAME ## 24, NAME ## 25, NAME ## 26, NAME ## 27,                               \
NAME ## 28, NAME ## 29, NAME ## 30, NAME ## 31,                               \
};                                                                            \
J
j_mayer 已提交
122
static always_inline void func (int n)                                        \
J
j_mayer 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
{                                                                             \
    NAME ## _table[n]();                                                      \
}

/* FIR moves */
/* Special hacks for fir31 */
#define gen_op_load_FT0_fir31 gen_op_reset_FT0
#define gen_op_load_FT1_fir31 gen_op_reset_FT1
#define gen_op_load_FT2_fir31 gen_op_reset_FT2
#define gen_op_store_FT0_fir31 gen_op_nop
#define gen_op_store_FT1_fir31 gen_op_nop
#define gen_op_store_FT2_fir31 gen_op_nop
#define gen_op_cmov_fir31 gen_op_nop
GEN32(gen_op_load_FT0_fir, gen_op_load_FT0_fir);
GEN32(gen_op_load_FT1_fir, gen_op_load_FT1_fir);
GEN32(gen_op_load_FT2_fir, gen_op_load_FT2_fir);
GEN32(gen_op_store_FT0_fir, gen_op_store_FT0_fir);
GEN32(gen_op_store_FT1_fir, gen_op_store_FT1_fir);
GEN32(gen_op_store_FT2_fir, gen_op_store_FT2_fir);
GEN32(gen_op_cmov_fir, gen_op_cmov_fir);

J
j_mayer 已提交
144
static always_inline void gen_load_fir (DisasContext *ctx, int firn, int Tn)
J
j_mayer 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158
{
    switch (Tn) {
    case 0:
        gen_op_load_FT0_fir(firn);
        break;
    case 1:
        gen_op_load_FT1_fir(firn);
        break;
    case 2:
        gen_op_load_FT2_fir(firn);
        break;
    }
}

J
j_mayer 已提交
159
static always_inline void gen_store_fir (DisasContext *ctx, int firn, int Tn)
J
j_mayer 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
{
    switch (Tn) {
    case 0:
        gen_op_store_FT0_fir(firn);
        break;
    case 1:
        gen_op_store_FT1_fir(firn);
        break;
    case 2:
        gen_op_store_FT2_fir(firn);
        break;
    }
}

/* Memory moves */
#if defined(CONFIG_USER_ONLY)
#define OP_LD_TABLE(width)                                                    \
static GenOpFunc *gen_op_ld##width[] = {                                      \
    &gen_op_ld##width##_raw,                                                  \
}
#define OP_ST_TABLE(width)                                                    \
static GenOpFunc *gen_op_st##width[] = {                                      \
    &gen_op_st##width##_raw,                                                  \
}
#else
#define OP_LD_TABLE(width)                                                    \
static GenOpFunc *gen_op_ld##width[] = {                                      \
    &gen_op_ld##width##_kernel,                                               \
188 189 190
    &gen_op_ld##width##_executive,                                            \
    &gen_op_ld##width##_supervisor,                                           \
    &gen_op_ld##width##_user,                                                 \
J
j_mayer 已提交
191 192 193 194
}
#define OP_ST_TABLE(width)                                                    \
static GenOpFunc *gen_op_st##width[] = {                                      \
    &gen_op_st##width##_kernel,                                               \
195 196 197
    &gen_op_st##width##_executive,                                            \
    &gen_op_st##width##_supervisor,                                           \
    &gen_op_st##width##_user,                                                 \
J
j_mayer 已提交
198 199 200 201 202
}
#endif

#define GEN_LD(width)                                                         \
OP_LD_TABLE(width);                                                           \
J
j_mayer 已提交
203
static always_inline void gen_ld##width (DisasContext *ctx)                   \
J
j_mayer 已提交
204 205 206 207 208 209
{                                                                             \
    (*gen_op_ld##width[ctx->mem_idx])();                                      \
}

#define GEN_ST(width)                                                         \
OP_ST_TABLE(width);                                                           \
J
j_mayer 已提交
210
static always_inline void gen_st##width (DisasContext *ctx)                   \
J
j_mayer 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
{                                                                             \
    (*gen_op_st##width[ctx->mem_idx])();                                      \
}

GEN_LD(bu);
GEN_ST(b);
GEN_LD(wu);
GEN_ST(w);
GEN_LD(l);
GEN_ST(l);
GEN_LD(q);
GEN_ST(q);
GEN_LD(q_u);
GEN_ST(q_u);
GEN_LD(l_l);
GEN_ST(l_c);
GEN_LD(q_l);
GEN_ST(q_c);

T
ths 已提交
230
#if 0 /* currently unused */
J
j_mayer 已提交
231 232 233 234
GEN_LD(f);
GEN_ST(f);
GEN_LD(g);
GEN_ST(g);
T
ths 已提交
235
#endif /* 0 */
J
j_mayer 已提交
236 237 238 239 240
GEN_LD(s);
GEN_ST(s);
GEN_LD(t);
GEN_ST(t);

J
j_mayer 已提交
241
static always_inline void _gen_op_bcond (DisasContext *ctx)
J
j_mayer 已提交
242 243 244 245 246 247 248 249
{
#if 0 // Qemu does not know how to do this...
    gen_op_bcond(ctx->pc);
#else
    gen_op_bcond(ctx->pc >> 32, ctx->pc);
#endif
}

J
j_mayer 已提交
250 251
static always_inline void gen_excp (DisasContext *ctx,
                                    int exception, int error_code)
J
j_mayer 已提交
252
{
253 254
    TCGv tmp1, tmp2;

A
aurel32 已提交
255
    tcg_gen_movi_i64(cpu_pc, ctx->pc);
256 257 258 259 260
    tmp1 = tcg_const_i32(exception);
    tmp2 = tcg_const_i32(error_code);
    tcg_gen_helper_0_2(helper_excp, tmp1, tmp2);
    tcg_temp_free(tmp2);
    tcg_temp_free(tmp1);
J
j_mayer 已提交
261 262
}

J
j_mayer 已提交
263
static always_inline void gen_invalid (DisasContext *ctx)
J
j_mayer 已提交
264 265 266 267
{
    gen_excp(ctx, EXCP_OPCDEC, 0);
}

J
j_mayer 已提交
268 269 270 271
static always_inline void gen_load_mem (DisasContext *ctx,
                                        void (*gen_load_op)(DisasContext *ctx),
                                        int ra, int rb, int32_t disp16,
                                        int clear)
J
j_mayer 已提交
272 273 274 275 276
{
    if (ra == 31 && disp16 == 0) {
        /* UNOP */
        gen_op_nop();
    } else {
A
aurel32 已提交
277
        if (rb != 31)
278
            tcg_gen_addi_i64(cpu_T[0], cpu_ir[rb], disp16);
A
aurel32 已提交
279
        else
280
            tcg_gen_movi_i64(cpu_T[0], disp16);
J
j_mayer 已提交
281
        if (clear)
282
            tcg_gen_andi_i64(cpu_T[0], cpu_T[0], ~0x7);
J
j_mayer 已提交
283
        (*gen_load_op)(ctx);
A
aurel32 已提交
284 285
        if (ra != 31)
            tcg_gen_mov_i64(cpu_ir[ra], cpu_T[1]);
J
j_mayer 已提交
286 287 288
    }
}

J
j_mayer 已提交
289 290 291 292
static always_inline void gen_store_mem (DisasContext *ctx,
                                         void (*gen_store_op)(DisasContext *ctx),
                                         int ra, int rb, int32_t disp16,
                                         int clear)
J
j_mayer 已提交
293
{
A
aurel32 已提交
294
    if (rb != 31)
295
        tcg_gen_addi_i64(cpu_T[0], cpu_ir[rb], disp16);
A
aurel32 已提交
296
    else
297
        tcg_gen_movi_i64(cpu_T[0], disp16);
J
j_mayer 已提交
298
    if (clear)
299
        tcg_gen_andi_i64(cpu_T[0], cpu_T[0], ~0x7);
A
aurel32 已提交
300 301 302 303
    if (ra != 31)
        tcg_gen_mov_i64(cpu_T[1], cpu_ir[ra]);
    else
        tcg_gen_movi_i64(cpu_T[1], 0);
J
j_mayer 已提交
304 305 306
    (*gen_store_op)(ctx);
}

J
j_mayer 已提交
307 308 309
static always_inline void gen_load_fmem (DisasContext *ctx,
                                         void (*gen_load_fop)(DisasContext *ctx),
                                         int ra, int rb, int32_t disp16)
J
j_mayer 已提交
310
{
A
aurel32 已提交
311
    if (rb != 31)
312
        tcg_gen_addi_i64(cpu_T[0], cpu_ir[rb], disp16);
A
aurel32 已提交
313
    else
314
        tcg_gen_movi_i64(cpu_T[0], disp16);
J
j_mayer 已提交
315 316 317 318
    (*gen_load_fop)(ctx);
    gen_store_fir(ctx, ra, 1);
}

J
j_mayer 已提交
319 320 321
static always_inline void gen_store_fmem (DisasContext *ctx,
                                          void (*gen_store_fop)(DisasContext *ctx),
                                          int ra, int rb, int32_t disp16)
J
j_mayer 已提交
322
{
A
aurel32 已提交
323
    if (rb != 31)
324
        tcg_gen_addi_i64(cpu_T[0], cpu_ir[rb], disp16);
A
aurel32 已提交
325
    else
326
        tcg_gen_movi_i64(cpu_T[0], disp16);
J
j_mayer 已提交
327 328 329 330
    gen_load_fir(ctx, ra, 1);
    (*gen_store_fop)(ctx);
}

J
j_mayer 已提交
331
static always_inline void gen_bcond (DisasContext *ctx,
A
aurel32 已提交
332 333
                                     TCGCond cond,
                                     int ra, int32_t disp16, int mask)
J
j_mayer 已提交
334
{
A
aurel32 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
    int l1, l2;

    l1 = gen_new_label();
    l2 = gen_new_label();
    if (likely(ra != 31)) {
        if (mask) {
            TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
            tcg_gen_andi_i64(tmp, cpu_ir[ra], 1);
            tcg_gen_brcondi_i64(cond, tmp, 0, l1);
            tcg_temp_free(tmp);
        } else
            tcg_gen_brcondi_i64(cond, cpu_ir[ra], 0, l1);
    } else {
        /* Very uncommon case - Do not bother to optimize.  */
        TCGv tmp = tcg_const_i64(0);
        tcg_gen_brcondi_i64(cond, tmp, 0, l1);
        tcg_temp_free(tmp);
    }
    tcg_gen_movi_i64(cpu_pc, ctx->pc);
    tcg_gen_br(l2);
    gen_set_label(l1);
    tcg_gen_movi_i64(cpu_pc, ctx->pc + (int64_t)(disp16 << 2));
    gen_set_label(l2);
J
j_mayer 已提交
358 359
}

J
j_mayer 已提交
360 361 362
static always_inline void gen_fbcond (DisasContext *ctx,
                                      void (*gen_test_op)(void),
                                      int ra, int32_t disp16)
J
j_mayer 已提交
363
{
364
    tcg_gen_movi_i64(cpu_T[1], ctx->pc + (int64_t)(disp16 << 2));
J
j_mayer 已提交
365 366 367 368 369
    gen_load_fir(ctx, ra, 0);
    (*gen_test_op)();
    _gen_op_bcond(ctx);
}

J
j_mayer 已提交
370 371 372
static always_inline void gen_arith3 (DisasContext *ctx,
                                      void (*gen_arith_op)(void),
                                      int ra, int rb, int rc,
A
aurel32 已提交
373
                                      int islit, uint8_t lit)
J
j_mayer 已提交
374
{
A
aurel32 已提交
375 376 377 378
    if (ra != 31)
        tcg_gen_mov_i64(cpu_T[0], cpu_ir[ra]);
    else
        tcg_gen_movi_i64(cpu_T[0], 0);
J
j_mayer 已提交
379
    if (islit)
A
aurel32 已提交
380
        tcg_gen_movi_i64(cpu_T[1], lit);
J
j_mayer 已提交
381
    else
382
        tcg_gen_mov_i64(cpu_T[1], cpu_ir[rb]);
J
j_mayer 已提交
383
    (*gen_arith_op)();
A
aurel32 已提交
384 385
    if (rc != 31)
        tcg_gen_mov_i64(cpu_ir[rc], cpu_T[0]);
J
j_mayer 已提交
386 387
}

J
j_mayer 已提交
388
static always_inline void gen_cmov (DisasContext *ctx,
A
aurel32 已提交
389
                                    TCGCond inv_cond,
J
j_mayer 已提交
390
                                    int ra, int rb, int rc,
391
                                    int islit, uint8_t lit, int mask)
J
j_mayer 已提交
392
{
A
aurel32 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
    int l1;

    if (unlikely(rc == 31))
        return;

    l1 = gen_new_label();

    if (ra != 31) {
        if (mask) {
            TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
            tcg_gen_andi_i64(tmp, cpu_ir[ra], 1);
            tcg_gen_brcondi_i64(inv_cond, tmp, 0, l1);
            tcg_temp_free(tmp);
        } else
            tcg_gen_brcondi_i64(inv_cond, cpu_ir[ra], 0, l1);
    } else {
        /* Very uncommon case - Do not bother to optimize.  */
        TCGv tmp = tcg_const_i64(0);
        tcg_gen_brcondi_i64(inv_cond, tmp, 0, l1);
        tcg_temp_free(tmp);
    }

J
j_mayer 已提交
415
    if (islit)
A
aurel32 已提交
416
        tcg_gen_movi_i64(cpu_ir[rc], lit);
J
j_mayer 已提交
417
    else
418
        tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[rb]);
A
aurel32 已提交
419
    gen_set_label(l1);
J
j_mayer 已提交
420 421
}

J
j_mayer 已提交
422 423 424
static always_inline void gen_farith2 (DisasContext *ctx,
                                       void (*gen_arith_fop)(void),
                                       int rb, int rc)
J
j_mayer 已提交
425 426 427 428 429 430
{
    gen_load_fir(ctx, rb, 0);
    (*gen_arith_fop)();
    gen_store_fir(ctx, rc, 0);
}

J
j_mayer 已提交
431 432 433
static always_inline void gen_farith3 (DisasContext *ctx,
                                       void (*gen_arith_fop)(void),
                                       int ra, int rb, int rc)
J
j_mayer 已提交
434 435 436 437 438 439 440
{
    gen_load_fir(ctx, ra, 0);
    gen_load_fir(ctx, rb, 1);
    (*gen_arith_fop)();
    gen_store_fir(ctx, rc, 0);
}

J
j_mayer 已提交
441 442 443
static always_inline void gen_fcmov (DisasContext *ctx,
                                     void (*gen_test_fop)(void),
                                     int ra, int rb, int rc)
J
j_mayer 已提交
444 445 446 447 448 449 450
{
    gen_load_fir(ctx, ra, 0);
    gen_load_fir(ctx, rb, 1);
    (*gen_test_fop)();
    gen_op_cmov_fir(rc);
}

J
j_mayer 已提交
451 452 453
static always_inline void gen_fti (DisasContext *ctx,
                                   void (*gen_move_fop)(void),
                                   int ra, int rc)
J
j_mayer 已提交
454 455 456
{
    gen_load_fir(ctx, rc, 0);
    (*gen_move_fop)();
A
aurel32 已提交
457 458
    if (ra != 31)
        tcg_gen_mov_i64(cpu_ir[ra], cpu_T[0]);
J
j_mayer 已提交
459 460
}

J
j_mayer 已提交
461 462 463
static always_inline void gen_itf (DisasContext *ctx,
                                   void (*gen_move_fop)(void),
                                   int ra, int rc)
J
j_mayer 已提交
464
{
A
aurel32 已提交
465 466 467 468
    if (ra != 31)
        tcg_gen_mov_i64(cpu_T[0], cpu_ir[ra]);
    else
        tcg_gen_movi_i64(cpu_T[0], 0);
J
j_mayer 已提交
469 470 471 472
    (*gen_move_fop)();
    gen_store_fir(ctx, rc, 0);
}

473 474 475
/* EXTWH, EXTWH, EXTLH, EXTQH */
static always_inline void gen_ext_h(void (*tcg_gen_ext_i64)(TCGv t0, TCGv t1),
                                    int ra, int rb, int rc,
476
                                    int islit, uint8_t lit)
477 478 479 480 481
{
    if (unlikely(rc == 31))
        return;

    if (ra != 31) {
482 483 484 485 486 487
        if (islit) {
            if (lit != 0)
                tcg_gen_shli_i64(cpu_ir[rc], cpu_ir[ra], 64 - ((lit & 7) * 8));
            else
                tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[ra]);
	} else {
488 489 490 491 492 493 494
            TCGv tmp1, tmp2;
            tmp1 = tcg_temp_new(TCG_TYPE_I64);
            tcg_gen_andi_i64(tmp1, cpu_ir[rb], 7);
            tcg_gen_shli_i64(tmp1, tmp1, 3);
            tmp2 = tcg_const_i64(64);
            tcg_gen_sub_i64(tmp1, tmp2, tmp1);
            tcg_temp_free(tmp2);
495
            tcg_gen_shl_i64(cpu_ir[rc], cpu_ir[ra], tmp1);
496
            tcg_temp_free(tmp1);
497 498 499
        }
        if (tcg_gen_ext_i64)
            tcg_gen_ext_i64(cpu_ir[rc], cpu_ir[rc]);
500 501 502 503 504 505 506
    } else
        tcg_gen_movi_i64(cpu_ir[rc], 0);
}

/* EXTBL, EXTWL, EXTWL, EXTLL, EXTQL */
static always_inline void gen_ext_l(void (*tcg_gen_ext_i64)(TCGv t0, TCGv t1),
                                    int ra, int rb, int rc,
507
                                    int islit, uint8_t lit)
508 509 510 511 512
{
    if (unlikely(rc == 31))
        return;

    if (ra != 31) {
513 514 515
        if (islit) {
                tcg_gen_shri_i64(cpu_ir[rc], cpu_ir[ra], (lit & 7) * 8);
        } else {
516 517 518
            TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
            tcg_gen_andi_i64(tmp, cpu_ir[rb], 7);
            tcg_gen_shli_i64(tmp, tmp, 3);
519
            tcg_gen_shr_i64(cpu_ir[rc], cpu_ir[ra], tmp);
520
            tcg_temp_free(tmp);
521 522 523
	}
        if (tcg_gen_ext_i64)
            tcg_gen_ext_i64(cpu_ir[rc], cpu_ir[rc]);
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
    } else
        tcg_gen_movi_i64(cpu_ir[rc], 0);
}

/* Code to call byte manipulation helpers, used by:
   INSWH, INSLH, INSQH, INSBL, INSWL, INSLL, INSQL,
   MSKWH, MSKLH, MSKQH, MSKBL, MSKWL, MSKLL, MSKQL,
   ZAP, ZAPNOT

   WARNING: it assumes that when ra31 is used, the result is 0.
*/
static always_inline void gen_byte_manipulation(void *helper,
                                                int ra, int rb, int rc,
                                                int islit, uint8_t lit)
{
    if (unlikely(rc == 31))
        return;

    if (ra != 31) {
543 544
        if (islit) {
            TCGv tmp = tcg_const_i64(lit);
545 546 547 548 549 550 551 552
            tcg_gen_helper_1_2(helper, cpu_ir[rc], cpu_ir[ra], tmp);
            tcg_temp_free(tmp);
        } else
            tcg_gen_helper_1_2(helper, cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
    } else
        tcg_gen_movi_i64(cpu_ir[rc], 0);
}

553 554
static always_inline void gen_cmp(TCGCond cond,
                                  int ra, int rb, int rc,
555
                                  int islit, uint8_t lit)
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
{
    int l1, l2;
    TCGv tmp;

    if (unlikely(rc == 31))
    return;

    l1 = gen_new_label();
    l2 = gen_new_label();

    if (ra != 31) {
        tmp = tcg_temp_new(TCG_TYPE_I64);
        tcg_gen_mov_i64(tmp, cpu_ir[ra]);
    } else
        tmp = tcg_const_i64(0);
    if (islit)
        tcg_gen_brcondi_i64(cond, tmp, lit, l1);
    else
574
        tcg_gen_brcond_i64(cond, tmp, cpu_ir[rb], l1);
575 576 577 578 579 580 581 582

    tcg_gen_movi_i64(cpu_ir[rc], 0);
    tcg_gen_br(l2);
    gen_set_label(l1);
    tcg_gen_movi_i64(cpu_ir[rc], 1);
    gen_set_label(l2);
}

J
j_mayer 已提交
583
static always_inline int translate_one (DisasContext *ctx, uint32_t insn)
J
j_mayer 已提交
584 585 586 587 588
{
    uint32_t palcode;
    int32_t disp21, disp16, disp12;
    uint16_t fn11, fn16;
    uint8_t opc, ra, rb, rc, sbz, fpfn, fn7, fn2, islit;
589
    uint8_t lit;
J
j_mayer 已提交
590 591 592 593 594 595 596 597 598
    int ret;

    /* Decode all instruction fields */
    opc = insn >> 26;
    ra = (insn >> 21) & 0x1F;
    rb = (insn >> 16) & 0x1F;
    rc = insn & 0x1F;
    sbz = (insn >> 13) & 0x07;
    islit = (insn >> 12) & 1;
599 600 601 602 603
    if (rb == 31 && !islit) {
        islit = 1;
        lit = 0;
    } else
        lit = (insn >> 13) & 0xFF;
J
j_mayer 已提交
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
    palcode = insn & 0x03FFFFFF;
    disp21 = ((int32_t)((insn & 0x001FFFFF) << 11)) >> 11;
    disp16 = (int16_t)(insn & 0x0000FFFF);
    disp12 = (int32_t)((insn & 0x00000FFF) << 20) >> 20;
    fn16 = insn & 0x0000FFFF;
    fn11 = (insn >> 5) & 0x000007FF;
    fpfn = fn11 & 0x3F;
    fn7 = (insn >> 5) & 0x0000007F;
    fn2 = (insn >> 5) & 0x00000003;
    ret = 0;
#if defined ALPHA_DEBUG_DISAS
    if (logfile != NULL) {
        fprintf(logfile, "opc %02x ra %d rb %d rc %d disp16 %04x\n",
                opc, ra, rb, rc, disp16);
    }
#endif
    switch (opc) {
    case 0x00:
        /* CALL_PAL */
        if (palcode >= 0x80 && palcode < 0xC0) {
            /* Unprivileged PAL call */
            gen_excp(ctx, EXCP_CALL_PAL + ((palcode & 0x1F) << 6), 0);
#if !defined (CONFIG_USER_ONLY)
        } else if (palcode < 0x40) {
            /* Privileged PAL code */
            if (ctx->mem_idx & 1)
                goto invalid_opc;
            else
                gen_excp(ctx, EXCP_CALL_PALP + ((palcode & 0x1F) << 6), 0);
#endif
        } else {
            /* Invalid PAL call */
            goto invalid_opc;
        }
        ret = 3;
        break;
    case 0x01:
        /* OPC01 */
        goto invalid_opc;
    case 0x02:
        /* OPC02 */
        goto invalid_opc;
    case 0x03:
        /* OPC03 */
        goto invalid_opc;
    case 0x04:
        /* OPC04 */
        goto invalid_opc;
    case 0x05:
        /* OPC05 */
        goto invalid_opc;
    case 0x06:
        /* OPC06 */
        goto invalid_opc;
    case 0x07:
        /* OPC07 */
        goto invalid_opc;
    case 0x08:
        /* LDA */
A
aurel32 已提交
663
        if (likely(ra != 31)) {
A
aurel32 已提交
664
            if (rb != 31)
A
aurel32 已提交
665 666 667
                tcg_gen_addi_i64(cpu_ir[ra], cpu_ir[rb], disp16);
            else
                tcg_gen_movi_i64(cpu_ir[ra], disp16);
A
aurel32 已提交
668
        }
J
j_mayer 已提交
669 670 671
        break;
    case 0x09:
        /* LDAH */
A
aurel32 已提交
672
        if (likely(ra != 31)) {
A
aurel32 已提交
673
            if (rb != 31)
A
aurel32 已提交
674 675 676
                tcg_gen_addi_i64(cpu_ir[ra], cpu_ir[rb], disp16 << 16);
            else
                tcg_gen_movi_i64(cpu_ir[ra], disp16 << 16);
A
aurel32 已提交
677
        }
J
j_mayer 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
        break;
    case 0x0A:
        /* LDBU */
        if (!(ctx->amask & AMASK_BWX))
            goto invalid_opc;
        gen_load_mem(ctx, &gen_ldbu, ra, rb, disp16, 0);
        break;
    case 0x0B:
        /* LDQ_U */
        gen_load_mem(ctx, &gen_ldq_u, ra, rb, disp16, 1);
        break;
    case 0x0C:
        /* LDWU */
        if (!(ctx->amask & AMASK_BWX))
            goto invalid_opc;
        gen_load_mem(ctx, &gen_ldwu, ra, rb, disp16, 0);
        break;
    case 0x0D:
        /* STW */
        if (!(ctx->amask & AMASK_BWX))
            goto invalid_opc;
        gen_store_mem(ctx, &gen_stw, ra, rb, disp16, 0);
        break;
    case 0x0E:
        /* STB */
        if (!(ctx->amask & AMASK_BWX))
            goto invalid_opc;
        gen_store_mem(ctx, &gen_stb, ra, rb, disp16, 0);
        break;
    case 0x0F:
        /* STQ_U */
        gen_store_mem(ctx, &gen_stq_u, ra, rb, disp16, 1);
        break;
    case 0x10:
        switch (fn7) {
        case 0x00:
            /* ADDL */
715 716 717 718 719
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit) {
                        tcg_gen_addi_i64(cpu_ir[rc], cpu_ir[ra], lit);
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
720
                    } else {
721 722
                        tcg_gen_add_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
723
                    }
724 725
                } else {
                    if (islit)
726
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
727
                    else
728
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rb]);
729 730
                }
            }
J
j_mayer 已提交
731 732 733
            break;
        case 0x02:
            /* S4ADDL */
734 735
            if (likely(rc != 31)) {
                if (ra != 31) {
736 737 738 739 740 741 742 743
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 2);
                    if (islit)
                        tcg_gen_addi_i64(tmp, tmp, lit);
                    else
                        tcg_gen_add_i64(tmp, tmp, cpu_ir[rb]);
                    tcg_gen_ext32s_i64(cpu_ir[rc], tmp);
                    tcg_temp_free(tmp);
744 745 746 747
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
748
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rb]);
749 750
                }
            }
J
j_mayer 已提交
751 752 753
            break;
        case 0x09:
            /* SUBL */
754 755
            if (likely(rc != 31)) {
                if (ra != 31) {
756
                    if (islit)
757
                        tcg_gen_subi_i64(cpu_ir[rc], cpu_ir[ra], lit);
758
                    else
759
                        tcg_gen_sub_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
760
                    tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
761 762 763
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], -lit);
764
                    else {
765 766 767 768
                        tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
                }
            }
J
j_mayer 已提交
769 770 771
            break;
        case 0x0B:
            /* S4SUBL */
772 773
            if (likely(rc != 31)) {
                if (ra != 31) {
774 775 776 777 778 779 780 781
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 2);
                    if (islit)
                        tcg_gen_subi_i64(tmp, tmp, lit);
                    else
                        tcg_gen_sub_i64(tmp, tmp, cpu_ir[rb]);
                    tcg_gen_ext32s_i64(cpu_ir[rc], tmp);
                    tcg_temp_free(tmp);
782 783 784
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], -lit);
785
                    else {
786 787
                        tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
788
                    }
789 790
                }
            }
J
j_mayer 已提交
791 792 793 794 795 796 797
            break;
        case 0x0F:
            /* CMPBGE */
            gen_arith3(ctx, &gen_op_cmpbge, ra, rb, rc, islit, lit);
            break;
        case 0x12:
            /* S8ADDL */
798 799
            if (likely(rc != 31)) {
                if (ra != 31) {
800 801 802 803 804 805 806 807
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 3);
                    if (islit)
                        tcg_gen_addi_i64(tmp, tmp, lit);
                    else
                        tcg_gen_add_i64(tmp, tmp, cpu_ir[rb]);
                    tcg_gen_ext32s_i64(cpu_ir[rc], tmp);
                    tcg_temp_free(tmp);
808 809 810 811
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
812
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rb]);
813 814
                }
            }
J
j_mayer 已提交
815 816 817
            break;
        case 0x1B:
            /* S8SUBL */
818 819
            if (likely(rc != 31)) {
                if (ra != 31) {
820 821 822 823 824 825 826 827
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 3);
                    if (islit)
                        tcg_gen_subi_i64(tmp, tmp, lit);
                    else
                       tcg_gen_sub_i64(tmp, tmp, cpu_ir[rb]);
                    tcg_gen_ext32s_i64(cpu_ir[rc], tmp);
                    tcg_temp_free(tmp);
828 829 830
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], -lit);
831
                    else
832 833
                        tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
                        tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
834
                    }
835 836
                }
            }
J
j_mayer 已提交
837 838 839
            break;
        case 0x1D:
            /* CMPULT */
840
            gen_cmp(TCG_COND_LTU, ra, rb, rc, islit, lit);
J
j_mayer 已提交
841 842 843
            break;
        case 0x20:
            /* ADDQ */
844 845 846 847 848
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_addi_i64(cpu_ir[rc], cpu_ir[ra], lit);
                    else
849
                        tcg_gen_add_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
850 851 852 853
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
854
                        tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[rb]);
855 856
                }
            }
J
j_mayer 已提交
857 858 859
            break;
        case 0x22:
            /* S4ADDQ */
860 861
            if (likely(rc != 31)) {
                if (ra != 31) {
862 863 864 865 866 867 868
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 2);
                    if (islit)
                        tcg_gen_addi_i64(cpu_ir[rc], tmp, lit);
                    else
                        tcg_gen_add_i64(cpu_ir[rc], tmp, cpu_ir[rb]);
                    tcg_temp_free(tmp);
869 870 871 872
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
873
                        tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[rb]);
874 875
                }
            }
J
j_mayer 已提交
876 877 878
            break;
        case 0x29:
            /* SUBQ */
879 880 881 882 883
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_subi_i64(cpu_ir[rc], cpu_ir[ra], lit);
                    else
884
                        tcg_gen_sub_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
885 886 887 888
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], -lit);
                    else
889
                        tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
890 891
                }
            }
J
j_mayer 已提交
892 893 894
            break;
        case 0x2B:
            /* S4SUBQ */
895 896
            if (likely(rc != 31)) {
                if (ra != 31) {
897 898 899 900 901 902 903
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 2);
                    if (islit)
                        tcg_gen_subi_i64(cpu_ir[rc], tmp, lit);
                    else
                        tcg_gen_sub_i64(cpu_ir[rc], tmp, cpu_ir[rb]);
                    tcg_temp_free(tmp);
904 905 906 907
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], -lit);
                    else
908
                        tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
909 910
                }
            }
J
j_mayer 已提交
911 912 913
            break;
        case 0x2D:
            /* CMPEQ */
914
            gen_cmp(TCG_COND_EQ, ra, rb, rc, islit, lit);
J
j_mayer 已提交
915 916 917
            break;
        case 0x32:
            /* S8ADDQ */
918 919
            if (likely(rc != 31)) {
                if (ra != 31) {
920 921 922 923 924 925 926
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 3);
                    if (islit)
                        tcg_gen_addi_i64(cpu_ir[rc], tmp, lit);
                    else
                        tcg_gen_add_i64(cpu_ir[rc], tmp, cpu_ir[rb]);
                    tcg_temp_free(tmp);
927 928 929 930
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
931
                        tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[rb]);
932 933
                }
            }
J
j_mayer 已提交
934 935 936
            break;
        case 0x3B:
            /* S8SUBQ */
937 938
            if (likely(rc != 31)) {
                if (ra != 31) {
939 940 941 942 943 944 945
                    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                    tcg_gen_shli_i64(tmp, cpu_ir[ra], 3);
                    if (islit)
                        tcg_gen_subi_i64(cpu_ir[rc], tmp, lit);
                    else
                        tcg_gen_sub_i64(cpu_ir[rc], tmp, cpu_ir[rb]);
                    tcg_temp_free(tmp);
946 947 948 949
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], -lit);
                    else
950
                        tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
951 952
                }
            }
J
j_mayer 已提交
953 954 955
            break;
        case 0x3D:
            /* CMPULE */
956
            gen_cmp(TCG_COND_LEU, ra, rb, rc, islit, lit);
J
j_mayer 已提交
957 958 959 960 961 962 963 964 965 966 967
            break;
        case 0x40:
            /* ADDL/V */
            gen_arith3(ctx, &gen_op_addlv, ra, rb, rc, islit, lit);
            break;
        case 0x49:
            /* SUBL/V */
            gen_arith3(ctx, &gen_op_sublv, ra, rb, rc, islit, lit);
            break;
        case 0x4D:
            /* CMPLT */
968
            gen_cmp(TCG_COND_LT, ra, rb, rc, islit, lit);
J
j_mayer 已提交
969 970 971 972 973 974 975 976 977 978 979
            break;
        case 0x60:
            /* ADDQ/V */
            gen_arith3(ctx, &gen_op_addqv, ra, rb, rc, islit, lit);
            break;
        case 0x69:
            /* SUBQ/V */
            gen_arith3(ctx, &gen_op_subqv, ra, rb, rc, islit, lit);
            break;
        case 0x6D:
            /* CMPLE */
980
            gen_cmp(TCG_COND_LE, ra, rb, rc, islit, lit);
J
j_mayer 已提交
981 982 983 984 985 986 987 988 989
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x11:
        switch (fn7) {
        case 0x00:
            /* AND */
990
            if (likely(rc != 31)) {
991
                if (ra == 31)
992 993 994 995 996 997
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
                else if (islit)
                    tcg_gen_andi_i64(cpu_ir[rc], cpu_ir[ra], lit);
                else
                    tcg_gen_and_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
            }
J
j_mayer 已提交
998 999 1000
            break;
        case 0x08:
            /* BIC */
1001 1002 1003 1004
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_andi_i64(cpu_ir[rc], cpu_ir[ra], ~lit);
1005
                    else {
1006 1007 1008 1009
                        TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                        tcg_gen_not_i64(tmp, cpu_ir[rb]);
                        tcg_gen_and_i64(cpu_ir[rc], cpu_ir[ra], tmp);
                        tcg_temp_free(tmp);
1010
                    }
1011 1012 1013
                } else
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
            }
J
j_mayer 已提交
1014 1015 1016
            break;
        case 0x14:
            /* CMOVLBS */
A
aurel32 已提交
1017
            gen_cmov(ctx, TCG_COND_EQ, ra, rb, rc, islit, lit, 1);
J
j_mayer 已提交
1018 1019 1020
            break;
        case 0x16:
            /* CMOVLBC */
A
aurel32 已提交
1021
            gen_cmov(ctx, TCG_COND_NE, ra, rb, rc, islit, lit, 1);
J
j_mayer 已提交
1022 1023 1024
            break;
        case 0x20:
            /* BIS */
1025 1026 1027 1028
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_ori_i64(cpu_ir[rc], cpu_ir[ra], lit);
1029
		    else
1030
                        tcg_gen_or_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
J
j_mayer 已提交
1031
                } else {
1032 1033 1034
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
1035
                        tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[rb]);
J
j_mayer 已提交
1036 1037 1038 1039 1040
                }
            }
            break;
        case 0x24:
            /* CMOVEQ */
A
aurel32 已提交
1041
            gen_cmov(ctx, TCG_COND_NE, ra, rb, rc, islit, lit, 0);
J
j_mayer 已提交
1042 1043 1044
            break;
        case 0x26:
            /* CMOVNE */
A
aurel32 已提交
1045
            gen_cmov(ctx, TCG_COND_EQ, ra, rb, rc, islit, lit, 0);
J
j_mayer 已提交
1046 1047 1048
            break;
        case 0x28:
            /* ORNOT */
1049
            if (likely(rc != 31)) {
1050
                if (ra != 31) {
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
                    if (islit)
                        tcg_gen_ori_i64(cpu_ir[rc], cpu_ir[ra], ~lit);
                    else {
                        TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                        tcg_gen_not_i64(tmp, cpu_ir[rb]);
                        tcg_gen_or_i64(cpu_ir[rc], cpu_ir[ra], tmp);
                        tcg_temp_free(tmp);
                    }
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], ~lit);
                    else
                        tcg_gen_not_i64(cpu_ir[rc], cpu_ir[rb]);
                }
            }
J
j_mayer 已提交
1066 1067 1068
            break;
        case 0x40:
            /* XOR */
1069 1070 1071 1072 1073
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_xori_i64(cpu_ir[rc], cpu_ir[ra], lit);
                    else
1074
                        tcg_gen_xor_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
1075 1076 1077 1078
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], lit);
                    else
1079
                        tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[rb]);
1080 1081
                }
            }
J
j_mayer 已提交
1082 1083 1084
            break;
        case 0x44:
            /* CMOVLT */
A
aurel32 已提交
1085
            gen_cmov(ctx, TCG_COND_GE, ra, rb, rc, islit, lit, 0);
J
j_mayer 已提交
1086 1087 1088
            break;
        case 0x46:
            /* CMOVGE */
A
aurel32 已提交
1089
            gen_cmov(ctx, TCG_COND_LT, ra, rb, rc, islit, lit, 0);
J
j_mayer 已提交
1090 1091 1092
            break;
        case 0x48:
            /* EQV */
1093 1094 1095 1096
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_xori_i64(cpu_ir[rc], cpu_ir[ra], ~lit);
1097
                    else {
1098 1099 1100 1101
                        TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
                        tcg_gen_not_i64(tmp, cpu_ir[rb]);
                        tcg_gen_xor_i64(cpu_ir[rc], cpu_ir[ra], tmp);
                        tcg_temp_free(tmp);
1102
                    }
1103 1104 1105 1106
                } else {
                    if (islit)
                        tcg_gen_movi_i64(cpu_ir[rc], ~lit);
                    else
1107
                        tcg_gen_not_i64(cpu_ir[rc], cpu_ir[rb]);
1108 1109
                }
            }
J
j_mayer 已提交
1110 1111 1112
            break;
        case 0x61:
            /* AMASK */
1113 1114 1115 1116
            if (likely(rc != 31)) {
                if (islit)
                    tcg_gen_movi_i64(cpu_ir[rc], helper_amask(lit));
                else
1117
                    tcg_gen_helper_1_1(helper_amask, cpu_ir[rc], cpu_ir[rb]);
1118
            }
J
j_mayer 已提交
1119 1120 1121
            break;
        case 0x64:
            /* CMOVLE */
A
aurel32 已提交
1122
            gen_cmov(ctx, TCG_COND_GT, ra, rb, rc, islit, lit, 0);
J
j_mayer 已提交
1123 1124 1125
            break;
        case 0x66:
            /* CMOVGT */
A
aurel32 已提交
1126
            gen_cmov(ctx, TCG_COND_LE, ra, rb, rc, islit, lit, 0);
J
j_mayer 已提交
1127 1128 1129
            break;
        case 0x6C:
            /* IMPLVER */
A
aurel32 已提交
1130
            if (rc != 31)
1131
                tcg_gen_helper_1_0(helper_load_implver, cpu_ir[rc]);
J
j_mayer 已提交
1132 1133 1134 1135 1136 1137 1138 1139 1140
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x12:
        switch (fn7) {
        case 0x02:
            /* MSKBL */
1141
            gen_byte_manipulation(helper_mskbl, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1142 1143 1144
            break;
        case 0x06:
            /* EXTBL */
1145
            gen_ext_l(&tcg_gen_ext8u_i64, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1146 1147 1148
            break;
        case 0x0B:
            /* INSBL */
1149
            gen_byte_manipulation(helper_insbl, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1150 1151 1152
            break;
        case 0x12:
            /* MSKWL */
1153
            gen_byte_manipulation(helper_mskwl, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1154 1155 1156
            break;
        case 0x16:
            /* EXTWL */
1157
            gen_ext_l(&tcg_gen_ext16u_i64, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1158 1159 1160
            break;
        case 0x1B:
            /* INSWL */
1161
            gen_byte_manipulation(helper_inswl, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1162 1163 1164
            break;
        case 0x22:
            /* MSKLL */
1165
            gen_byte_manipulation(helper_mskll, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1166 1167 1168
            break;
        case 0x26:
            /* EXTLL */
1169
            gen_ext_l(&tcg_gen_ext32u_i64, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1170 1171 1172
            break;
        case 0x2B:
            /* INSLL */
1173
            gen_byte_manipulation(helper_insll, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1174 1175 1176
            break;
        case 0x30:
            /* ZAP */
1177
            gen_byte_manipulation(helper_zap, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1178 1179 1180
            break;
        case 0x31:
            /* ZAPNOT */
1181
            gen_byte_manipulation(helper_zapnot, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1182 1183 1184
            break;
        case 0x32:
            /* MSKQL */
1185
            gen_byte_manipulation(helper_mskql, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1186 1187 1188
            break;
        case 0x34:
            /* SRL */
1189 1190 1191 1192
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_shri_i64(cpu_ir[rc], cpu_ir[ra], lit & 0x3f);
1193
                    else {
1194 1195 1196 1197
                        TCGv shift = tcg_temp_new(TCG_TYPE_I64);
                        tcg_gen_andi_i64(shift, cpu_ir[rb], 0x3f);
                        tcg_gen_shr_i64(cpu_ir[rc], cpu_ir[ra], shift);
                        tcg_temp_free(shift);
1198
                    }
1199 1200 1201
                } else
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
            }
J
j_mayer 已提交
1202 1203 1204
            break;
        case 0x36:
            /* EXTQL */
1205
            gen_ext_l(NULL, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1206 1207 1208
            break;
        case 0x39:
            /* SLL */
1209 1210 1211 1212
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_shli_i64(cpu_ir[rc], cpu_ir[ra], lit & 0x3f);
1213
                    else {
1214 1215 1216 1217
                        TCGv shift = tcg_temp_new(TCG_TYPE_I64);
                        tcg_gen_andi_i64(shift, cpu_ir[rb], 0x3f);
                        tcg_gen_shl_i64(cpu_ir[rc], cpu_ir[ra], shift);
                        tcg_temp_free(shift);
1218
                    }
1219 1220 1221
                } else
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
            }
J
j_mayer 已提交
1222 1223 1224
            break;
        case 0x3B:
            /* INSQL */
1225
            gen_byte_manipulation(helper_insql, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1226 1227 1228
            break;
        case 0x3C:
            /* SRA */
1229 1230 1231 1232
            if (likely(rc != 31)) {
                if (ra != 31) {
                    if (islit)
                        tcg_gen_sari_i64(cpu_ir[rc], cpu_ir[ra], lit & 0x3f);
1233
                    else {
1234 1235 1236 1237
                        TCGv shift = tcg_temp_new(TCG_TYPE_I64);
                        tcg_gen_andi_i64(shift, cpu_ir[rb], 0x3f);
                        tcg_gen_sar_i64(cpu_ir[rc], cpu_ir[ra], shift);
                        tcg_temp_free(shift);
1238
                    }
1239 1240 1241
                } else
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
            }
J
j_mayer 已提交
1242 1243 1244
            break;
        case 0x52:
            /* MSKWH */
1245
            gen_byte_manipulation(helper_mskwh, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1246 1247 1248
            break;
        case 0x57:
            /* INSWH */
1249
            gen_byte_manipulation(helper_inswh, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1250 1251 1252
            break;
        case 0x5A:
            /* EXTWH */
1253
            gen_ext_h(&tcg_gen_ext16u_i64, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1254 1255 1256
            break;
        case 0x62:
            /* MSKLH */
1257
            gen_byte_manipulation(helper_msklh, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1258 1259 1260
            break;
        case 0x67:
            /* INSLH */
1261
            gen_byte_manipulation(helper_inslh, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1262 1263 1264
            break;
        case 0x6A:
            /* EXTLH */
1265
            gen_ext_h(&tcg_gen_ext16u_i64, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1266 1267 1268
            break;
        case 0x72:
            /* MSKQH */
1269
            gen_byte_manipulation(helper_mskqh, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1270 1271 1272
            break;
        case 0x77:
            /* INSQH */
1273
            gen_byte_manipulation(helper_insqh, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1274 1275 1276
            break;
        case 0x7A:
            /* EXTQH */
1277
            gen_ext_h(NULL, ra, rb, rc, islit, lit);
J
j_mayer 已提交
1278 1279 1280 1281 1282 1283 1284 1285 1286
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x13:
        switch (fn7) {
        case 0x00:
            /* MULL */
1287
            if (likely(rc != 31)) {
1288
                if (ra == 31)
1289 1290 1291 1292 1293 1294 1295 1296 1297
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
                else {
                    if (islit)
                        tcg_gen_muli_i64(cpu_ir[rc], cpu_ir[ra], lit);
                    else
                        tcg_gen_mul_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
                    tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
                }
            }
J
j_mayer 已提交
1298 1299 1300
            break;
        case 0x20:
            /* MULQ */
1301
            if (likely(rc != 31)) {
1302
                if (ra == 31)
1303 1304 1305 1306 1307 1308
                    tcg_gen_movi_i64(cpu_ir[rc], 0);
                else if (islit)
                    tcg_gen_muli_i64(cpu_ir[rc], cpu_ir[ra], lit);
                else
                    tcg_gen_mul_i64(cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]);
            }
J
j_mayer 已提交
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 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 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 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 1641 1642 1643 1644 1645 1646 1647 1648
            break;
        case 0x30:
            /* UMULH */
            gen_arith3(ctx, &gen_op_umulh, ra, rb, rc, islit, lit);
            break;
        case 0x40:
            /* MULL/V */
            gen_arith3(ctx, &gen_op_mullv, ra, rb, rc, islit, lit);
            break;
        case 0x60:
            /* MULQ/V */
            gen_arith3(ctx, &gen_op_mulqv, ra, rb, rc, islit, lit);
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x14:
        switch (fpfn) { /* f11 & 0x3F */
        case 0x04:
            /* ITOFS */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_itf(ctx, &gen_op_itofs, ra, rc);
            break;
        case 0x0A:
            /* SQRTF */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_farith2(ctx, &gen_op_sqrtf, rb, rc);
            break;
        case 0x0B:
            /* SQRTS */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_farith2(ctx, &gen_op_sqrts, rb, rc);
            break;
        case 0x14:
            /* ITOFF */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
#if 0 // TODO
            gen_itf(ctx, &gen_op_itoff, ra, rc);
#else
            goto invalid_opc;
#endif
            break;
        case 0x24:
            /* ITOFT */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_itf(ctx, &gen_op_itoft, ra, rc);
            break;
        case 0x2A:
            /* SQRTG */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_farith2(ctx, &gen_op_sqrtg, rb, rc);
            break;
        case 0x02B:
            /* SQRTT */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_farith2(ctx, &gen_op_sqrtt, rb, rc);
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x15:
        /* VAX floating point */
        /* XXX: rounding mode and trap are ignored (!) */
        switch (fpfn) { /* f11 & 0x3F */
        case 0x00:
            /* ADDF */
            gen_farith3(ctx, &gen_op_addf, ra, rb, rc);
            break;
        case 0x01:
            /* SUBF */
            gen_farith3(ctx, &gen_op_subf, ra, rb, rc);
            break;
        case 0x02:
            /* MULF */
            gen_farith3(ctx, &gen_op_mulf, ra, rb, rc);
            break;
        case 0x03:
            /* DIVF */
            gen_farith3(ctx, &gen_op_divf, ra, rb, rc);
            break;
        case 0x1E:
            /* CVTDG */
#if 0 // TODO
            gen_farith2(ctx, &gen_op_cvtdg, rb, rc);
#else
            goto invalid_opc;
#endif
            break;
        case 0x20:
            /* ADDG */
            gen_farith3(ctx, &gen_op_addg, ra, rb, rc);
            break;
        case 0x21:
            /* SUBG */
            gen_farith3(ctx, &gen_op_subg, ra, rb, rc);
            break;
        case 0x22:
            /* MULG */
            gen_farith3(ctx, &gen_op_mulg, ra, rb, rc);
            break;
        case 0x23:
            /* DIVG */
            gen_farith3(ctx, &gen_op_divg, ra, rb, rc);
            break;
        case 0x25:
            /* CMPGEQ */
            gen_farith3(ctx, &gen_op_cmpgeq, ra, rb, rc);
            break;
        case 0x26:
            /* CMPGLT */
            gen_farith3(ctx, &gen_op_cmpglt, ra, rb, rc);
            break;
        case 0x27:
            /* CMPGLE */
            gen_farith3(ctx, &gen_op_cmpgle, ra, rb, rc);
            break;
        case 0x2C:
            /* CVTGF */
            gen_farith2(ctx, &gen_op_cvtgf, rb, rc);
            break;
        case 0x2D:
            /* CVTGD */
#if 0 // TODO
            gen_farith2(ctx, &gen_op_cvtgd, rb, rc);
#else
            goto invalid_opc;
#endif
            break;
        case 0x2F:
            /* CVTGQ */
            gen_farith2(ctx, &gen_op_cvtgq, rb, rc);
            break;
        case 0x3C:
            /* CVTQF */
            gen_farith2(ctx, &gen_op_cvtqf, rb, rc);
            break;
        case 0x3E:
            /* CVTQG */
            gen_farith2(ctx, &gen_op_cvtqg, rb, rc);
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x16:
        /* IEEE floating-point */
        /* XXX: rounding mode and traps are ignored (!) */
        switch (fpfn) { /* f11 & 0x3F */
        case 0x00:
            /* ADDS */
            gen_farith3(ctx, &gen_op_adds, ra, rb, rc);
            break;
        case 0x01:
            /* SUBS */
            gen_farith3(ctx, &gen_op_subs, ra, rb, rc);
            break;
        case 0x02:
            /* MULS */
            gen_farith3(ctx, &gen_op_muls, ra, rb, rc);
            break;
        case 0x03:
            /* DIVS */
            gen_farith3(ctx, &gen_op_divs, ra, rb, rc);
            break;
        case 0x20:
            /* ADDT */
            gen_farith3(ctx, &gen_op_addt, ra, rb, rc);
            break;
        case 0x21:
            /* SUBT */
            gen_farith3(ctx, &gen_op_subt, ra, rb, rc);
            break;
        case 0x22:
            /* MULT */
            gen_farith3(ctx, &gen_op_mult, ra, rb, rc);
            break;
        case 0x23:
            /* DIVT */
            gen_farith3(ctx, &gen_op_divt, ra, rb, rc);
            break;
        case 0x24:
            /* CMPTUN */
            gen_farith3(ctx, &gen_op_cmptun, ra, rb, rc);
            break;
        case 0x25:
            /* CMPTEQ */
            gen_farith3(ctx, &gen_op_cmpteq, ra, rb, rc);
            break;
        case 0x26:
            /* CMPTLT */
            gen_farith3(ctx, &gen_op_cmptlt, ra, rb, rc);
            break;
        case 0x27:
            /* CMPTLE */
            gen_farith3(ctx, &gen_op_cmptle, ra, rb, rc);
            break;
        case 0x2C:
            /* XXX: incorrect */
            if (fn11 == 0x2AC) {
                /* CVTST */
                gen_farith2(ctx, &gen_op_cvtst, rb, rc);
            } else {
                /* CVTTS */
                gen_farith2(ctx, &gen_op_cvtts, rb, rc);
            }
            break;
        case 0x2F:
            /* CVTTQ */
            gen_farith2(ctx, &gen_op_cvttq, rb, rc);
            break;
        case 0x3C:
            /* CVTQS */
            gen_farith2(ctx, &gen_op_cvtqs, rb, rc);
            break;
        case 0x3E:
            /* CVTQT */
            gen_farith2(ctx, &gen_op_cvtqt, rb, rc);
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x17:
        switch (fn11) {
        case 0x010:
            /* CVTLQ */
            gen_farith2(ctx, &gen_op_cvtlq, rb, rc);
            break;
        case 0x020:
            /* CPYS */
            if (ra == rb) {
                if (ra == 31 && rc == 31) {
                    /* FNOP */
                    gen_op_nop();
                } else {
                    /* FMOV */
                    gen_load_fir(ctx, rb, 0);
                    gen_store_fir(ctx, rc, 0);
                }
            } else {
                gen_farith3(ctx, &gen_op_cpys, ra, rb, rc);
            }
            break;
        case 0x021:
            /* CPYSN */
            gen_farith2(ctx, &gen_op_cpysn, rb, rc);
            break;
        case 0x022:
            /* CPYSE */
            gen_farith2(ctx, &gen_op_cpyse, rb, rc);
            break;
        case 0x024:
            /* MT_FPCR */
            gen_load_fir(ctx, ra, 0);
            gen_op_store_fpcr();
            break;
        case 0x025:
            /* MF_FPCR */
            gen_op_load_fpcr();
            gen_store_fir(ctx, ra, 0);
            break;
        case 0x02A:
            /* FCMOVEQ */
            gen_fcmov(ctx, &gen_op_cmpfeq, ra, rb, rc);
            break;
        case 0x02B:
            /* FCMOVNE */
            gen_fcmov(ctx, &gen_op_cmpfne, ra, rb, rc);
            break;
        case 0x02C:
            /* FCMOVLT */
            gen_fcmov(ctx, &gen_op_cmpflt, ra, rb, rc);
            break;
        case 0x02D:
            /* FCMOVGE */
            gen_fcmov(ctx, &gen_op_cmpfge, ra, rb, rc);
            break;
        case 0x02E:
            /* FCMOVLE */
            gen_fcmov(ctx, &gen_op_cmpfle, ra, rb, rc);
            break;
        case 0x02F:
            /* FCMOVGT */
            gen_fcmov(ctx, &gen_op_cmpfgt, ra, rb, rc);
            break;
        case 0x030:
            /* CVTQL */
            gen_farith2(ctx, &gen_op_cvtql, rb, rc);
            break;
        case 0x130:
            /* CVTQL/V */
            gen_farith2(ctx, &gen_op_cvtqlv, rb, rc);
            break;
        case 0x530:
            /* CVTQL/SV */
            gen_farith2(ctx, &gen_op_cvtqlsv, rb, rc);
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x18:
        switch ((uint16_t)disp16) {
        case 0x0000:
            /* TRAPB */
            /* No-op. Just exit from the current tb */
            ret = 2;
            break;
        case 0x0400:
            /* EXCB */
            /* No-op. Just exit from the current tb */
            ret = 2;
            break;
        case 0x4000:
            /* MB */
            /* No-op */
            break;
        case 0x4400:
            /* WMB */
            /* No-op */
            break;
        case 0x8000:
            /* FETCH */
            /* No-op */
            break;
        case 0xA000:
            /* FETCH_M */
            /* No-op */
            break;
        case 0xC000:
            /* RPCC */
A
aurel32 已提交
1649
            if (ra != 31)
1650
                tcg_gen_helper_1_0(helper_load_pcc, cpu_ir[ra]);
J
j_mayer 已提交
1651 1652 1653
            break;
        case 0xE000:
            /* RC */
A
aurel32 已提交
1654
            if (ra != 31)
1655
                tcg_gen_helper_1_0(helper_rc, cpu_ir[ra]);
J
j_mayer 已提交
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
            break;
        case 0xE800:
            /* ECB */
            /* XXX: TODO: evict tb cache at address rb */
#if 0
            ret = 2;
#else
            goto invalid_opc;
#endif
            break;
        case 0xF000:
            /* RS */
A
aurel32 已提交
1668
            if (ra != 31)
1669
                tcg_gen_helper_1_0(helper_rs, cpu_ir[ra]);
J
j_mayer 已提交
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686
            break;
        case 0xF800:
            /* WH64 */
            /* No-op */
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x19:
        /* HW_MFPR (PALcode) */
#if defined (CONFIG_USER_ONLY)
        goto invalid_opc;
#else
        if (!ctx->pal_mode)
            goto invalid_opc;
        gen_op_mfpr(insn & 0xFF);
A
aurel32 已提交
1687 1688
        if (ra != 31)
            tcg_gen_mov_i64(cpu_ir[ra], cpu_T[0]);
J
j_mayer 已提交
1689 1690 1691
        break;
#endif
    case 0x1A:
A
aurel32 已提交
1692 1693 1694 1695 1696 1697
        if (ra != 31)
            tcg_gen_movi_i64(cpu_ir[ra], ctx->pc);
        if (rb != 31)
            tcg_gen_andi_i64(cpu_pc, cpu_ir[rb], ~3);
        else
            tcg_gen_movi_i64(cpu_pc, 0);
J
j_mayer 已提交
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
        /* Those four jumps only differ by the branch prediction hint */
        switch (fn2) {
        case 0x0:
            /* JMP */
            break;
        case 0x1:
            /* JSR */
            break;
        case 0x2:
            /* RET */
            break;
        case 0x3:
            /* JSR_COROUTINE */
            break;
        }
        ret = 1;
        break;
    case 0x1B:
        /* HW_LD (PALcode) */
#if defined (CONFIG_USER_ONLY)
        goto invalid_opc;
#else
        if (!ctx->pal_mode)
            goto invalid_opc;
A
aurel32 已提交
1722 1723 1724 1725 1726
        if (rb != 31)
            tcg_gen_mov_i64(cpu_T[0], cpu_ir[rb]);
        else
            tcg_gen_movi_i64(cpu_T[0], 0);
        tcg_gen_movi_i64(cpu_T[1], disp12);
1727
        tcg_gen_add_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
J
j_mayer 已提交
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
        switch ((insn >> 12) & 0xF) {
        case 0x0:
            /* Longword physical access */
            gen_op_ldl_raw();
            break;
        case 0x1:
            /* Quadword physical access */
            gen_op_ldq_raw();
            break;
        case 0x2:
            /* Longword physical access with lock */
            gen_op_ldl_l_raw();
            break;
        case 0x3:
            /* Quadword physical access with lock */
            gen_op_ldq_l_raw();
            break;
        case 0x4:
            /* Longword virtual PTE fetch */
            gen_op_ldl_kernel();
            break;
        case 0x5:
            /* Quadword virtual PTE fetch */
            gen_op_ldq_kernel();
            break;
        case 0x6:
            /* Invalid */
            goto invalid_opc;
        case 0x7:
            /* Invalid */
            goto invalid_opc;
        case 0x8:
            /* Longword virtual access */
            gen_op_ld_phys_to_virt();
            gen_op_ldl_raw();
            break;
        case 0x9:
            /* Quadword virtual access */
            gen_op_ld_phys_to_virt();
            gen_op_ldq_raw();
            break;
        case 0xA:
            /* Longword virtual access with protection check */
            gen_ldl(ctx);
            break;
        case 0xB:
            /* Quadword virtual access with protection check */
            gen_ldq(ctx);
            break;
        case 0xC:
            /* Longword virtual access with altenate access mode */
            gen_op_set_alt_mode();
            gen_op_ld_phys_to_virt();
            gen_op_ldl_raw();
            gen_op_restore_mode();
            break;
        case 0xD:
            /* Quadword virtual access with altenate access mode */
            gen_op_set_alt_mode();
            gen_op_ld_phys_to_virt();
            gen_op_ldq_raw();
            gen_op_restore_mode();
            break;
        case 0xE:
            /* Longword virtual access with alternate access mode and
             * protection checks
             */
            gen_op_set_alt_mode();
            gen_op_ldl_data();
            gen_op_restore_mode();
            break;
        case 0xF:
            /* Quadword virtual access with alternate access mode and
             * protection checks
             */
            gen_op_set_alt_mode();
            gen_op_ldq_data();
            gen_op_restore_mode();
            break;
        }
A
aurel32 已提交
1808 1809
        if (ra != 31)
            tcg_gen_mov_i64(cpu_ir[ra], cpu_T[1]);
J
j_mayer 已提交
1810 1811 1812 1813 1814 1815 1816 1817
        break;
#endif
    case 0x1C:
        switch (fn7) {
        case 0x00:
            /* SEXTB */
            if (!(ctx->amask & AMASK_BWX))
                goto invalid_opc;
1818 1819 1820 1821
            if (likely(rc != 31)) {
                if (islit)
                    tcg_gen_movi_i64(cpu_ir[rc], (int64_t)((int8_t)lit));
                else
1822
                    tcg_gen_ext8s_i64(cpu_ir[rc], cpu_ir[rb]);
1823
            }
J
j_mayer 已提交
1824 1825 1826 1827 1828
            break;
        case 0x01:
            /* SEXTW */
            if (!(ctx->amask & AMASK_BWX))
                goto invalid_opc;
1829 1830 1831 1832
            if (likely(rc != 31)) {
                if (islit)
                    tcg_gen_movi_i64(cpu_ir[rc], (int64_t)((int16_t)lit));
                else
1833
                    tcg_gen_ext16s_i64(cpu_ir[rc], cpu_ir[rb]);
1834
            }
J
j_mayer 已提交
1835 1836 1837 1838 1839
            break;
        case 0x30:
            /* CTPOP */
            if (!(ctx->amask & AMASK_CIX))
                goto invalid_opc;
1840 1841 1842 1843
            if (likely(rc != 31)) {
                if (islit)
                    tcg_gen_movi_i64(cpu_ir[rc], ctpop64(lit));
                else
1844
                    tcg_gen_helper_1_1(helper_ctpop, cpu_ir[rc], cpu_ir[rb]);
1845
            }
J
j_mayer 已提交
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
            break;
        case 0x31:
            /* PERR */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x32:
            /* CTLZ */
            if (!(ctx->amask & AMASK_CIX))
                goto invalid_opc;
1858 1859 1860 1861
            if (likely(rc != 31)) {
                if (islit)
                    tcg_gen_movi_i64(cpu_ir[rc], clz64(lit));
                else
1862
                    tcg_gen_helper_1_1(helper_ctlz, cpu_ir[rc], cpu_ir[rb]);
1863
            }
J
j_mayer 已提交
1864 1865 1866 1867 1868
            break;
        case 0x33:
            /* CTTZ */
            if (!(ctx->amask & AMASK_CIX))
                goto invalid_opc;
1869 1870 1871 1872
            if (likely(rc != 31)) {
                if (islit)
                    tcg_gen_movi_i64(cpu_ir[rc], ctz64(lit));
                else
1873
                    tcg_gen_helper_1_1(helper_cttz, cpu_ir[rc], cpu_ir[rb]);
1874
            }
J
j_mayer 已提交
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 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
            break;
        case 0x34:
            /* UNPKBW */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x35:
            /* UNPKWL */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x36:
            /* PKWB */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x37:
            /* PKLB */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x38:
            /* MINSB8 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x39:
            /* MINSW4 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x3A:
            /* MINUB8 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x3B:
            /* MINUW4 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x3C:
            /* MAXUB8 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x3D:
            /* MAXUW4 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x3E:
            /* MAXSB8 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x3F:
            /* MAXSW4 */
            if (!(ctx->amask & AMASK_MVI))
                goto invalid_opc;
            /* XXX: TODO */
            goto invalid_opc;
            break;
        case 0x70:
            /* FTOIT */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_fti(ctx, &gen_op_ftoit, ra, rb);
            break;
        case 0x78:
            /* FTOIS */
            if (!(ctx->amask & AMASK_FIX))
                goto invalid_opc;
            gen_fti(ctx, &gen_op_ftois, ra, rb);
            break;
        default:
            goto invalid_opc;
        }
        break;
    case 0x1D:
        /* HW_MTPR (PALcode) */
#if defined (CONFIG_USER_ONLY)
        goto invalid_opc;
#else
        if (!ctx->pal_mode)
            goto invalid_opc;
A
aurel32 已提交
1983 1984 1985 1986
        if (ra != 31)
            tcg_gen_mov_i64(cpu_T[0], cpu_ir[ra]);
        else
            tcg_gen_movi_i64(cpu_T[0], 0);
J
j_mayer 已提交
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001
        gen_op_mtpr(insn & 0xFF);
        ret = 2;
        break;
#endif
    case 0x1E:
        /* HW_REI (PALcode) */
#if defined (CONFIG_USER_ONLY)
        goto invalid_opc;
#else
        if (!ctx->pal_mode)
            goto invalid_opc;
        if (rb == 31) {
            /* "Old" alpha */
            gen_op_hw_rei();
        } else {
A
aurel32 已提交
2002 2003 2004 2005 2006
            if (ra != 31)
                tcg_gen_mov_i64(cpu_T[0], cpu_ir[rb]);
            else
                tcg_gen_movi_i64(cpu_T[0], 0);
            tcg_gen_movi_i64(cpu_T[1], (((int64_t)insn << 51) >> 51));
2007
            tcg_gen_add_i64(cpu_T[0], cpu_T[0], cpu_T[1]);
J
j_mayer 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
            gen_op_hw_ret();
        }
        ret = 2;
        break;
#endif
    case 0x1F:
        /* HW_ST (PALcode) */
#if defined (CONFIG_USER_ONLY)
        goto invalid_opc;
#else
        if (!ctx->pal_mode)
            goto invalid_opc;
A
aurel32 已提交
2020
        if (ra != 31)
2021
            tcg_gen_addi_i64(cpu_T[0], cpu_ir[rb], disp12);
A
aurel32 已提交
2022
        else
2023
            tcg_gen_movi_i64(cpu_T[0], disp12);
A
aurel32 已提交
2024 2025 2026 2027
        if (ra != 31)
            tcg_gen_mov_i64(cpu_T[1], cpu_ir[ra]);
        else
            tcg_gen_movi_i64(cpu_T[1], 0);
J
j_mayer 已提交
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 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
        switch ((insn >> 12) & 0xF) {
        case 0x0:
            /* Longword physical access */
            gen_op_stl_raw();
            break;
        case 0x1:
            /* Quadword physical access */
            gen_op_stq_raw();
            break;
        case 0x2:
            /* Longword physical access with lock */
            gen_op_stl_c_raw();
            break;
        case 0x3:
            /* Quadword physical access with lock */
            gen_op_stq_c_raw();
            break;
        case 0x4:
            /* Longword virtual access */
            gen_op_st_phys_to_virt();
            gen_op_stl_raw();
            break;
        case 0x5:
            /* Quadword virtual access */
            gen_op_st_phys_to_virt();
            gen_op_stq_raw();
            break;
        case 0x6:
            /* Invalid */
            goto invalid_opc;
        case 0x7:
            /* Invalid */
            goto invalid_opc;
        case 0x8:
            /* Invalid */
            goto invalid_opc;
        case 0x9:
            /* Invalid */
            goto invalid_opc;
        case 0xA:
            /* Invalid */
            goto invalid_opc;
        case 0xB:
            /* Invalid */
            goto invalid_opc;
        case 0xC:
            /* Longword virtual access with alternate access mode */
            gen_op_set_alt_mode();
            gen_op_st_phys_to_virt();
            gen_op_ldl_raw();
            gen_op_restore_mode();
            break;
        case 0xD:
            /* Quadword virtual access with alternate access mode */
            gen_op_set_alt_mode();
            gen_op_st_phys_to_virt();
            gen_op_ldq_raw();
            gen_op_restore_mode();
            break;
        case 0xE:
            /* Invalid */
            goto invalid_opc;
        case 0xF:
            /* Invalid */
            goto invalid_opc;
        }
        ret = 2;
        break;
#endif
    case 0x20:
        /* LDF */
#if 0 // TODO
        gen_load_fmem(ctx, &gen_ldf, ra, rb, disp16);
#else
        goto invalid_opc;
#endif
        break;
    case 0x21:
        /* LDG */
#if 0 // TODO
        gen_load_fmem(ctx, &gen_ldg, ra, rb, disp16);
#else
        goto invalid_opc;
#endif
        break;
    case 0x22:
        /* LDS */
        gen_load_fmem(ctx, &gen_lds, ra, rb, disp16);
        break;
    case 0x23:
        /* LDT */
        gen_load_fmem(ctx, &gen_ldt, ra, rb, disp16);
        break;
    case 0x24:
        /* STF */
#if 0 // TODO
        gen_store_fmem(ctx, &gen_stf, ra, rb, disp16);
#else
        goto invalid_opc;
#endif
        break;
    case 0x25:
        /* STG */
#if 0 // TODO
        gen_store_fmem(ctx, &gen_stg, ra, rb, disp16);
#else
        goto invalid_opc;
#endif
        break;
    case 0x26:
        /* STS */
        gen_store_fmem(ctx, &gen_sts, ra, rb, disp16);
        break;
    case 0x27:
        /* STT */
        gen_store_fmem(ctx, &gen_stt, ra, rb, disp16);
        break;
    case 0x28:
        /* LDL */
        gen_load_mem(ctx, &gen_ldl, ra, rb, disp16, 0);
        break;
    case 0x29:
        /* LDQ */
        gen_load_mem(ctx, &gen_ldq, ra, rb, disp16, 0);
        break;
    case 0x2A:
        /* LDL_L */
        gen_load_mem(ctx, &gen_ldl_l, ra, rb, disp16, 0);
        break;
    case 0x2B:
        /* LDQ_L */
        gen_load_mem(ctx, &gen_ldq_l, ra, rb, disp16, 0);
        break;
    case 0x2C:
        /* STL */
        gen_store_mem(ctx, &gen_stl, ra, rb, disp16, 0);
        break;
    case 0x2D:
        /* STQ */
        gen_store_mem(ctx, &gen_stq, ra, rb, disp16, 0);
        break;
    case 0x2E:
        /* STL_C */
        gen_store_mem(ctx, &gen_stl_c, ra, rb, disp16, 0);
        break;
    case 0x2F:
        /* STQ_C */
        gen_store_mem(ctx, &gen_stq_c, ra, rb, disp16, 0);
        break;
    case 0x30:
        /* BR */
A
aurel32 已提交
2179 2180 2181
        if (ra != 31)
            tcg_gen_movi_i64(cpu_ir[ra], ctx->pc);
        tcg_gen_movi_i64(cpu_pc, ctx->pc + (int64_t)(disp21 << 2));
J
j_mayer 已提交
2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
        ret = 1;
        break;
    case 0x31:
        /* FBEQ */
        gen_fbcond(ctx, &gen_op_cmpfeq, ra, disp16);
        ret = 1;
        break;
    case 0x32:
        /* FBLT */
        gen_fbcond(ctx, &gen_op_cmpflt, ra, disp16);
        ret = 1;
        break;
    case 0x33:
        /* FBLE */
        gen_fbcond(ctx, &gen_op_cmpfle, ra, disp16);
        ret = 1;
        break;
    case 0x34:
        /* BSR */
A
aurel32 已提交
2201 2202 2203
        if (ra != 31)
            tcg_gen_movi_i64(cpu_ir[ra], ctx->pc);
        tcg_gen_movi_i64(cpu_pc, ctx->pc + (int64_t)(disp21 << 2));
J
j_mayer 已提交
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222
        ret = 1;
        break;
    case 0x35:
        /* FBNE */
        gen_fbcond(ctx, &gen_op_cmpfne, ra, disp16);
        ret = 1;
        break;
    case 0x36:
        /* FBGE */
        gen_fbcond(ctx, &gen_op_cmpfge, ra, disp16);
        ret = 1;
        break;
    case 0x37:
        /* FBGT */
        gen_fbcond(ctx, &gen_op_cmpfgt, ra, disp16);
        ret = 1;
        break;
    case 0x38:
        /* BLBC */
A
aurel32 已提交
2223
        gen_bcond(ctx, TCG_COND_EQ, ra, disp16, 1);
J
j_mayer 已提交
2224 2225 2226 2227
        ret = 1;
        break;
    case 0x39:
        /* BEQ */
A
aurel32 已提交
2228
        gen_bcond(ctx, TCG_COND_EQ, ra, disp16, 0);
J
j_mayer 已提交
2229 2230 2231 2232
        ret = 1;
        break;
    case 0x3A:
        /* BLT */
A
aurel32 已提交
2233
        gen_bcond(ctx, TCG_COND_LT, ra, disp16, 0);
J
j_mayer 已提交
2234 2235 2236 2237
        ret = 1;
        break;
    case 0x3B:
        /* BLE */
A
aurel32 已提交
2238
        gen_bcond(ctx, TCG_COND_LE, ra, disp16, 0);
J
j_mayer 已提交
2239 2240 2241 2242
        ret = 1;
        break;
    case 0x3C:
        /* BLBS */
A
aurel32 已提交
2243
        gen_bcond(ctx, TCG_COND_NE, ra, disp16, 1);
J
j_mayer 已提交
2244 2245 2246 2247
        ret = 1;
        break;
    case 0x3D:
        /* BNE */
A
aurel32 已提交
2248
        gen_bcond(ctx, TCG_COND_NE, ra, disp16, 0);
J
j_mayer 已提交
2249 2250 2251 2252
        ret = 1;
        break;
    case 0x3E:
        /* BGE */
A
aurel32 已提交
2253
        gen_bcond(ctx, TCG_COND_GE, ra, disp16, 0);
J
j_mayer 已提交
2254 2255 2256 2257
        ret = 1;
        break;
    case 0x3F:
        /* BGT */
A
aurel32 已提交
2258
        gen_bcond(ctx, TCG_COND_GT, ra, disp16, 0);
J
j_mayer 已提交
2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269
        ret = 1;
        break;
    invalid_opc:
        gen_invalid(ctx);
        ret = 3;
        break;
    }

    return ret;
}

2270 2271 2272
static always_inline void gen_intermediate_code_internal (CPUState *env,
                                                          TranslationBlock *tb,
                                                          int search_pc)
J
j_mayer 已提交
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
{
#if defined ALPHA_DEBUG_DISAS
    static int insn_count;
#endif
    DisasContext ctx, *ctxp = &ctx;
    target_ulong pc_start;
    uint32_t insn;
    uint16_t *gen_opc_end;
    int j, lj = -1;
    int ret;
P
pbrook 已提交
2283 2284
    int num_insns;
    int max_insns;
J
j_mayer 已提交
2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295

    pc_start = tb->pc;
    gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
    ctx.pc = pc_start;
    ctx.amask = env->amask;
#if defined (CONFIG_USER_ONLY)
    ctx.mem_idx = 0;
#else
    ctx.mem_idx = ((env->ps >> 3) & 3);
    ctx.pal_mode = env->ipr[IPR_EXC_ADDR] & 1;
#endif
P
pbrook 已提交
2296 2297 2298 2299 2300 2301
    num_insns = 0;
    max_insns = tb->cflags & CF_COUNT_MASK;
    if (max_insns == 0)
        max_insns = CF_COUNT_MASK;

    gen_icount_start();
J
j_mayer 已提交
2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
    for (ret = 0; ret == 0;) {
        if (env->nb_breakpoints > 0) {
            for(j = 0; j < env->nb_breakpoints; j++) {
                if (env->breakpoints[j] == ctx.pc) {
                    gen_excp(&ctx, EXCP_DEBUG, 0);
                    break;
                }
            }
        }
        if (search_pc) {
            j = gen_opc_ptr - gen_opc_buf;
            if (lj < j) {
                lj++;
                while (lj < j)
                    gen_opc_instr_start[lj++] = 0;
                gen_opc_pc[lj] = ctx.pc;
                gen_opc_instr_start[lj] = 1;
P
pbrook 已提交
2319
                gen_opc_icount[lj] = num_insns;
J
j_mayer 已提交
2320 2321
            }
        }
P
pbrook 已提交
2322 2323
        if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
            gen_io_start();
J
j_mayer 已提交
2324 2325 2326
#if defined ALPHA_DEBUG_DISAS
        insn_count++;
        if (logfile != NULL) {
2327 2328
            fprintf(logfile, "pc " TARGET_FMT_lx " mem_idx %d\n",
                    ctx.pc, ctx.mem_idx);
J
j_mayer 已提交
2329 2330 2331 2332 2333 2334 2335 2336 2337
        }
#endif
        insn = ldl_code(ctx.pc);
#if defined ALPHA_DEBUG_DISAS
        insn_count++;
        if (logfile != NULL) {
            fprintf(logfile, "opcode %08x %d\n", insn, insn_count);
        }
#endif
P
pbrook 已提交
2338
        num_insns++;
J
j_mayer 已提交
2339 2340 2341 2342 2343 2344 2345 2346
        ctx.pc += 4;
        ret = translate_one(ctxp, insn);
        if (ret != 0)
            break;
        /* if we reach a page boundary or are single stepping, stop
         * generation
         */
        if (((ctx.pc & (TARGET_PAGE_SIZE - 1)) == 0) ||
P
pbrook 已提交
2347 2348
            (env->singlestep_enabled) ||
            num_insns >= max_insns) {
J
j_mayer 已提交
2349 2350 2351 2352 2353 2354 2355
            break;
        }
#if defined (DO_SINGLE_STEP)
        break;
#endif
    }
    if (ret != 1 && ret != 3) {
A
aurel32 已提交
2356
        tcg_gen_movi_i64(cpu_pc, ctx.pc);
J
j_mayer 已提交
2357 2358
    }
#if defined (DO_TB_FLUSH)
A
aurel32 已提交
2359
    tcg_gen_helper_0_0(helper_tb_flush);
J
j_mayer 已提交
2360
#endif
P
pbrook 已提交
2361 2362
    if (tb->cflags & CF_LAST_IO)
        gen_io_end();
J
j_mayer 已提交
2363
    /* Generate the return instruction */
B
bellard 已提交
2364
    tcg_gen_exit_tb(0);
P
pbrook 已提交
2365
    gen_icount_end(tb, num_insns);
J
j_mayer 已提交
2366 2367 2368 2369 2370 2371 2372 2373
    *gen_opc_ptr = INDEX_op_end;
    if (search_pc) {
        j = gen_opc_ptr - gen_opc_buf;
        lj++;
        while (lj <= j)
            gen_opc_instr_start[lj++] = 0;
    } else {
        tb->size = ctx.pc - pc_start;
P
pbrook 已提交
2374
        tb->icount = num_insns;
J
j_mayer 已提交
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387
    }
#if defined ALPHA_DEBUG_DISAS
    if (loglevel & CPU_LOG_TB_CPU) {
        cpu_dump_state(env, logfile, fprintf, 0);
    }
    if (loglevel & CPU_LOG_TB_IN_ASM) {
        fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
	target_disas(logfile, pc_start, ctx.pc - pc_start, 1);
        fprintf(logfile, "\n");
    }
#endif
}

2388
void gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
J
j_mayer 已提交
2389
{
2390
    gen_intermediate_code_internal(env, tb, 0);
J
j_mayer 已提交
2391 2392
}

2393
void gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
J
j_mayer 已提交
2394
{
2395
    gen_intermediate_code_internal(env, tb, 1);
J
j_mayer 已提交
2396 2397
}

B
bellard 已提交
2398
CPUAlphaState * cpu_alpha_init (const char *cpu_model)
J
j_mayer 已提交
2399 2400 2401 2402 2403 2404 2405 2406
{
    CPUAlphaState *env;
    uint64_t hwpcb;

    env = qemu_mallocz(sizeof(CPUAlphaState));
    if (!env)
        return NULL;
    cpu_exec_init(env);
P
pbrook 已提交
2407
    alpha_translate_init();
J
j_mayer 已提交
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436
    tlb_flush(env, 1);
    /* XXX: should not be hardcoded */
    env->implver = IMPLVER_2106x;
    env->ps = 0x1F00;
#if defined (CONFIG_USER_ONLY)
    env->ps |= 1 << 3;
#endif
    pal_init(env);
    /* Initialize IPR */
    hwpcb = env->ipr[IPR_PCBB];
    env->ipr[IPR_ASN] = 0;
    env->ipr[IPR_ASTEN] = 0;
    env->ipr[IPR_ASTSR] = 0;
    env->ipr[IPR_DATFX] = 0;
    /* XXX: fix this */
    //    env->ipr[IPR_ESP] = ldq_raw(hwpcb + 8);
    //    env->ipr[IPR_KSP] = ldq_raw(hwpcb + 0);
    //    env->ipr[IPR_SSP] = ldq_raw(hwpcb + 16);
    //    env->ipr[IPR_USP] = ldq_raw(hwpcb + 24);
    env->ipr[IPR_FEN] = 0;
    env->ipr[IPR_IPL] = 31;
    env->ipr[IPR_MCES] = 0;
    env->ipr[IPR_PERFMON] = 0; /* Implementation specific */
    //    env->ipr[IPR_PTBR] = ldq_raw(hwpcb + 32);
    env->ipr[IPR_SISR] = 0;
    env->ipr[IPR_VIRBND] = -1ULL;

    return env;
}
B
bellard 已提交
2437

A
aurel32 已提交
2438 2439 2440 2441 2442
void gen_pc_load(CPUState *env, TranslationBlock *tb,
                unsigned long searched_pc, int pc_pos, void *puc)
{
    env->pc = gen_opc_pc[pc_pos];
}