translate.c 122.8 KB
Newer Older
1 2 3 4
/*
   SPARC translation

   Copyright (C) 2003 Thomas M. Ogrisegg <tom@fnord.at>
B
bellard 已提交
5
   Copyright (C) 2003-2005 Fabrice Bellard
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

   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
 */

/*
   TODO-list:

B
bellard 已提交
25
   Rest of V9 instructions, VIS instructions
B
bellard 已提交
26
   NPC/PC static optimisations (use JUMP_TB when possible)
27
   Optimize synthetic instructions
B
bellard 已提交
28
   128-bit float
B
bellard 已提交
29
*/
30 31 32 33 34 35 36 37 38 39 40 41 42

#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>

#include "cpu.h"
#include "exec-all.h"
#include "disas.h"

#define DEBUG_DISAS

B
bellard 已提交
43 44 45 46
#define DYNAMIC_PC  1 /* dynamic pc value */
#define JUMP_PC     2 /* dynamic pc value which takes only two values
                         according to jump_pc[T2] */

47
typedef struct DisasContext {
B
blueswir1 已提交
48 49
    target_ulong pc;    /* current Program Counter: integer or DYNAMIC_PC */
    target_ulong npc;   /* next PC: integer or DYNAMIC_PC or JUMP_PC */
B
bellard 已提交
50
    target_ulong jump_pc[2]; /* used when JUMP_PC pc value is used */
51
    int is_br;
52
    int mem_idx;
B
bellard 已提交
53
    int fpu_enabled;
54
    struct TranslationBlock *tb;
55 56
} DisasContext;

B
blueswir1 已提交
57 58 59 60 61 62 63
struct sparc_def_t {
    const unsigned char *name;
    target_ulong iu_version;
    uint32_t fpu_version;
    uint32_t mmu_version;
};

64 65 66 67 68 69 70 71 72
static uint16_t *gen_opc_ptr;
static uint32_t *gen_opparam_ptr;
extern FILE *logfile;
extern int loglevel;

enum {
#define DEF(s,n,copy_size) INDEX_op_ ## s,
#include "opc.h"
#undef DEF
73
    NB_OPS
74 75 76 77
};

#include "gen-op.h"

B
bellard 已提交
78
// This function uses non-native bit order
79 80 81
#define GET_FIELD(X, FROM, TO) \
  ((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))

B
bellard 已提交
82 83 84 85 86
// This function uses the order in the manuals, i.e. bit 0 is 2^0
#define GET_FIELD_SP(X, FROM, TO) \
    GET_FIELD(X, 31 - (TO), 31 - (FROM))

#define GET_FIELDs(x,a,b) sign_extend (GET_FIELD(x,a,b), (b) - (a) + 1)
B
blueswir1 已提交
87
#define GET_FIELD_SPs(x,a,b) sign_extend (GET_FIELD_SP(x,a,b), ((b) - (a) + 1))
B
bellard 已提交
88 89

#ifdef TARGET_SPARC64
90
#define DFPREG(r) (((r & 1) << 5) | (r & 0x1e))
B
bellard 已提交
91
#else
92
#define DFPREG(r) (r & 0x1e)
B
bellard 已提交
93 94
#endif

B
bellard 已提交
95 96 97 98 99 100
#ifdef USE_DIRECT_JUMP
#define TBPARAM(x)
#else
#define TBPARAM(x) (long)(x)
#endif

B
bellard 已提交
101 102 103 104 105 106
static int sign_extend(int x, int len)
{
    len = 32 - len;
    return (x << len) >> len;
}

107 108
#define IS_IMM (insn & (1<<13))

109
static void disas_sparc_insn(DisasContext * dc);
110

B
blueswir1 已提交
111
static GenOpFunc * const gen_op_movl_TN_reg[2][32] = {
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
    {
     gen_op_movl_g0_T0,
     gen_op_movl_g1_T0,
     gen_op_movl_g2_T0,
     gen_op_movl_g3_T0,
     gen_op_movl_g4_T0,
     gen_op_movl_g5_T0,
     gen_op_movl_g6_T0,
     gen_op_movl_g7_T0,
     gen_op_movl_o0_T0,
     gen_op_movl_o1_T0,
     gen_op_movl_o2_T0,
     gen_op_movl_o3_T0,
     gen_op_movl_o4_T0,
     gen_op_movl_o5_T0,
     gen_op_movl_o6_T0,
     gen_op_movl_o7_T0,
     gen_op_movl_l0_T0,
     gen_op_movl_l1_T0,
     gen_op_movl_l2_T0,
     gen_op_movl_l3_T0,
     gen_op_movl_l4_T0,
     gen_op_movl_l5_T0,
     gen_op_movl_l6_T0,
     gen_op_movl_l7_T0,
     gen_op_movl_i0_T0,
     gen_op_movl_i1_T0,
     gen_op_movl_i2_T0,
     gen_op_movl_i3_T0,
     gen_op_movl_i4_T0,
     gen_op_movl_i5_T0,
     gen_op_movl_i6_T0,
     gen_op_movl_i7_T0,
     },
    {
     gen_op_movl_g0_T1,
     gen_op_movl_g1_T1,
     gen_op_movl_g2_T1,
     gen_op_movl_g3_T1,
     gen_op_movl_g4_T1,
     gen_op_movl_g5_T1,
     gen_op_movl_g6_T1,
     gen_op_movl_g7_T1,
     gen_op_movl_o0_T1,
     gen_op_movl_o1_T1,
     gen_op_movl_o2_T1,
     gen_op_movl_o3_T1,
     gen_op_movl_o4_T1,
     gen_op_movl_o5_T1,
     gen_op_movl_o6_T1,
     gen_op_movl_o7_T1,
     gen_op_movl_l0_T1,
     gen_op_movl_l1_T1,
     gen_op_movl_l2_T1,
     gen_op_movl_l3_T1,
     gen_op_movl_l4_T1,
     gen_op_movl_l5_T1,
     gen_op_movl_l6_T1,
     gen_op_movl_l7_T1,
     gen_op_movl_i0_T1,
     gen_op_movl_i1_T1,
     gen_op_movl_i2_T1,
     gen_op_movl_i3_T1,
     gen_op_movl_i4_T1,
     gen_op_movl_i5_T1,
     gen_op_movl_i6_T1,
     gen_op_movl_i7_T1,
     }
180 181
};

B
blueswir1 已提交
182
static GenOpFunc * const gen_op_movl_reg_TN[3][32] = {
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
    {
     gen_op_movl_T0_g0,
     gen_op_movl_T0_g1,
     gen_op_movl_T0_g2,
     gen_op_movl_T0_g3,
     gen_op_movl_T0_g4,
     gen_op_movl_T0_g5,
     gen_op_movl_T0_g6,
     gen_op_movl_T0_g7,
     gen_op_movl_T0_o0,
     gen_op_movl_T0_o1,
     gen_op_movl_T0_o2,
     gen_op_movl_T0_o3,
     gen_op_movl_T0_o4,
     gen_op_movl_T0_o5,
     gen_op_movl_T0_o6,
     gen_op_movl_T0_o7,
     gen_op_movl_T0_l0,
     gen_op_movl_T0_l1,
     gen_op_movl_T0_l2,
     gen_op_movl_T0_l3,
     gen_op_movl_T0_l4,
     gen_op_movl_T0_l5,
     gen_op_movl_T0_l6,
     gen_op_movl_T0_l7,
     gen_op_movl_T0_i0,
     gen_op_movl_T0_i1,
     gen_op_movl_T0_i2,
     gen_op_movl_T0_i3,
     gen_op_movl_T0_i4,
     gen_op_movl_T0_i5,
     gen_op_movl_T0_i6,
     gen_op_movl_T0_i7,
     },
    {
     gen_op_movl_T1_g0,
     gen_op_movl_T1_g1,
     gen_op_movl_T1_g2,
     gen_op_movl_T1_g3,
     gen_op_movl_T1_g4,
     gen_op_movl_T1_g5,
     gen_op_movl_T1_g6,
     gen_op_movl_T1_g7,
     gen_op_movl_T1_o0,
     gen_op_movl_T1_o1,
     gen_op_movl_T1_o2,
     gen_op_movl_T1_o3,
     gen_op_movl_T1_o4,
     gen_op_movl_T1_o5,
     gen_op_movl_T1_o6,
     gen_op_movl_T1_o7,
     gen_op_movl_T1_l0,
     gen_op_movl_T1_l1,
     gen_op_movl_T1_l2,
     gen_op_movl_T1_l3,
     gen_op_movl_T1_l4,
     gen_op_movl_T1_l5,
     gen_op_movl_T1_l6,
     gen_op_movl_T1_l7,
     gen_op_movl_T1_i0,
     gen_op_movl_T1_i1,
     gen_op_movl_T1_i2,
     gen_op_movl_T1_i3,
     gen_op_movl_T1_i4,
     gen_op_movl_T1_i5,
     gen_op_movl_T1_i6,
     gen_op_movl_T1_i7,
     },
    {
     gen_op_movl_T2_g0,
     gen_op_movl_T2_g1,
     gen_op_movl_T2_g2,
     gen_op_movl_T2_g3,
     gen_op_movl_T2_g4,
     gen_op_movl_T2_g5,
     gen_op_movl_T2_g6,
     gen_op_movl_T2_g7,
     gen_op_movl_T2_o0,
     gen_op_movl_T2_o1,
     gen_op_movl_T2_o2,
     gen_op_movl_T2_o3,
     gen_op_movl_T2_o4,
     gen_op_movl_T2_o5,
     gen_op_movl_T2_o6,
     gen_op_movl_T2_o7,
     gen_op_movl_T2_l0,
     gen_op_movl_T2_l1,
     gen_op_movl_T2_l2,
     gen_op_movl_T2_l3,
     gen_op_movl_T2_l4,
     gen_op_movl_T2_l5,
     gen_op_movl_T2_l6,
     gen_op_movl_T2_l7,
     gen_op_movl_T2_i0,
     gen_op_movl_T2_i1,
     gen_op_movl_T2_i2,
     gen_op_movl_T2_i3,
     gen_op_movl_T2_i4,
     gen_op_movl_T2_i5,
     gen_op_movl_T2_i6,
     gen_op_movl_T2_i7,
     }
285 286
};

B
blueswir1 已提交
287
static GenOpFunc1 * const gen_op_movl_TN_im[3] = {
288 289 290
    gen_op_movl_T0_im,
    gen_op_movl_T1_im,
    gen_op_movl_T2_im
291 292
};

B
bellard 已提交
293 294 295 296 297 298 299 300 301
// Sign extending version
static GenOpFunc1 * const gen_op_movl_TN_sim[3] = {
    gen_op_movl_T0_sim,
    gen_op_movl_T1_sim,
    gen_op_movl_T2_sim
};

#ifdef TARGET_SPARC64
#define GEN32(func, NAME) \
B
blueswir1 已提交
302
static GenOpFunc * const NAME ## _table [64] = {                              \
B
bellard 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
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,                               \
NAME ## 32, 0, NAME ## 34, 0, NAME ## 36, 0, NAME ## 38, 0,                   \
NAME ## 40, 0, NAME ## 42, 0, NAME ## 44, 0, NAME ## 46, 0,                   \
NAME ## 48, 0, NAME ## 50, 0, NAME ## 52, 0, NAME ## 54, 0,                   \
NAME ## 56, 0, NAME ## 58, 0, NAME ## 60, 0, NAME ## 62, 0,                   \
};                                                                            \
static inline void func(int n)                                                \
{                                                                             \
    NAME ## _table[n]();                                                      \
}
#else
321
#define GEN32(func, NAME) \
B
blueswir1 已提交
322
static GenOpFunc *const NAME ## _table [32] = {                               \
323 324 325 326 327 328 329 330 331 332 333 334 335
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,                               \
};                                                                            \
static inline void func(int n)                                                \
{                                                                             \
    NAME ## _table[n]();                                                      \
}
B
bellard 已提交
336
#endif
337 338 339 340 341 342 343 344 345 346 347 348

/* floating point registers moves */
GEN32(gen_op_load_fpr_FT0, gen_op_load_fpr_FT0_fprf);
GEN32(gen_op_load_fpr_FT1, gen_op_load_fpr_FT1_fprf);
GEN32(gen_op_store_FT0_fpr, gen_op_store_FT0_fpr_fprf);
GEN32(gen_op_store_FT1_fpr, gen_op_store_FT1_fpr_fprf);

GEN32(gen_op_load_fpr_DT0, gen_op_load_fpr_DT0_fprf);
GEN32(gen_op_load_fpr_DT1, gen_op_load_fpr_DT1_fprf);
GEN32(gen_op_store_DT0_fpr, gen_op_store_DT0_fpr_fprf);
GEN32(gen_op_store_DT1_fpr, gen_op_store_DT1_fpr_fprf);

B
blueswir1 已提交
349 350 351 352 353 354 355
#ifdef ALIGN_7_BUGS_FIXED
#else
#ifndef CONFIG_USER_ONLY
#define gen_op_check_align_T0_7()
#endif
#endif

356 357
/* moves */
#ifdef CONFIG_USER_ONLY
B
bellard 已提交
358
#define supervisor(dc) 0
359
#ifdef TARGET_SPARC64
B
blueswir1 已提交
360
#define hypervisor(dc) 0
361
#endif
B
bellard 已提交
362 363
#define gen_op_ldst(name)        gen_op_##name##_raw()
#else
364 365 366 367
#define supervisor(dc) (dc->mem_idx == 1)
#ifdef TARGET_SPARC64
#define hypervisor(dc) (dc->mem_idx == 2)
#endif
B
bellard 已提交
368
#define gen_op_ldst(name)        (*gen_op_##name[dc->mem_idx])()
B
blueswir1 已提交
369
#define OP_LD_TABLE(width)                                              \
B
blueswir1 已提交
370
    static GenOpFunc * const gen_op_##width[] = {                       \
B
blueswir1 已提交
371 372
        &gen_op_##width##_user,                                         \
        &gen_op_##width##_kernel,                                       \
373
    };
B
bellard 已提交
374
#endif
375

376
#ifndef CONFIG_USER_ONLY
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
OP_LD_TABLE(ld);
OP_LD_TABLE(st);
OP_LD_TABLE(ldub);
OP_LD_TABLE(lduh);
OP_LD_TABLE(ldsb);
OP_LD_TABLE(ldsh);
OP_LD_TABLE(stb);
OP_LD_TABLE(sth);
OP_LD_TABLE(std);
OP_LD_TABLE(ldstub);
OP_LD_TABLE(swap);
OP_LD_TABLE(ldd);
OP_LD_TABLE(stf);
OP_LD_TABLE(stdf);
OP_LD_TABLE(ldf);
OP_LD_TABLE(lddf);

B
bellard 已提交
394
#ifdef TARGET_SPARC64
395
OP_LD_TABLE(lduw);
B
bellard 已提交
396 397 398
OP_LD_TABLE(ldsw);
OP_LD_TABLE(ldx);
OP_LD_TABLE(stx);
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
#endif
#endif

/* asi moves */
#ifdef TARGET_SPARC64
static inline void gen_ld_asi(int insn, int size, int sign)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_ld_asi_reg(offset, size, sign);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_ld_asi(asi, size, sign);
    }
}

static inline void gen_st_asi(int insn, int size)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_st_asi_reg(offset, size);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_st_asi(asi, size);
    }
}

430 431 432 433
static inline void gen_ldf_asi(int insn, int size)
{
    int asi, offset, rd;

434
    rd = DFPREG(GET_FIELD(insn, 2, 6));
435 436 437 438 439 440 441 442 443 444 445 446 447
    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_ldf_asi_reg(offset, size, rd);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_ldf_asi(asi, size, rd);
    }
}

static inline void gen_stf_asi(int insn, int size)
{
    int asi, offset, rd;

448
    rd = DFPREG(GET_FIELD(insn, 2, 6));
449 450 451 452 453 454 455 456 457
    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_stf_asi_reg(offset, size, rd);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_stf_asi(asi, size, rd);
    }
}

458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
static inline void gen_swap_asi(int insn)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_swap_asi_reg(offset);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_swap_asi(asi);
    }
}

static inline void gen_ldstub_asi(int insn)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_ldstub_asi_reg(offset);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_ldstub_asi(asi);
    }
}

static inline void gen_ldda_asi(int insn)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_ldda_asi_reg(offset);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_ldda_asi(asi);
    }
}

static inline void gen_stda_asi(int insn)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_stda_asi_reg(offset);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_stda_asi(asi);
    }
}

static inline void gen_cas_asi(int insn)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_cas_asi_reg(offset);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_cas_asi(asi);
    }
}

static inline void gen_casx_asi(int insn)
{
    int asi, offset;

    if (IS_IMM) {
        offset = GET_FIELD(insn, 25, 31);
        gen_op_casx_asi_reg(offset);
    } else {
        asi = GET_FIELD(insn, 19, 26);
        gen_op_casx_asi(asi);
    }
}

#elif !defined(CONFIG_USER_ONLY)

static inline void gen_ld_asi(int insn, int size, int sign)
{
    int asi;

    asi = GET_FIELD(insn, 19, 26);
    gen_op_ld_asi(asi, size, sign);
}

static inline void gen_st_asi(int insn, int size)
{
    int asi;

    asi = GET_FIELD(insn, 19, 26);
    gen_op_st_asi(asi, size);
}

static inline void gen_ldstub_asi(int insn)
{
    int asi;

    asi = GET_FIELD(insn, 19, 26);
    gen_op_ldstub_asi(asi);
}

static inline void gen_swap_asi(int insn)
{
    int asi;

    asi = GET_FIELD(insn, 19, 26);
    gen_op_swap_asi(asi);
}

static inline void gen_ldda_asi(int insn)
{
    int asi;

    asi = GET_FIELD(insn, 19, 26);
    gen_op_ld_asi(asi, 8, 0);
}

static inline void gen_stda_asi(int insn)
{
    int asi;

    asi = GET_FIELD(insn, 19, 26);
    gen_op_st_asi(asi, 8);
}
B
bellard 已提交
585 586 587
#endif

static inline void gen_movl_imm_TN(int reg, uint32_t imm)
588
{
B
bellard 已提交
589
    gen_op_movl_TN_im[reg](imm);
590 591
}

B
bellard 已提交
592
static inline void gen_movl_imm_T1(uint32_t val)
593
{
594
    gen_movl_imm_TN(1, val);
595 596
}

B
bellard 已提交
597
static inline void gen_movl_imm_T0(uint32_t val)
598
{
599
    gen_movl_imm_TN(0, val);
600 601
}

B
bellard 已提交
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
static inline void gen_movl_simm_TN(int reg, int32_t imm)
{
    gen_op_movl_TN_sim[reg](imm);
}

static inline void gen_movl_simm_T1(int32_t val)
{
    gen_movl_simm_TN(1, val);
}

static inline void gen_movl_simm_T0(int32_t val)
{
    gen_movl_simm_TN(0, val);
}

617
static inline void gen_movl_reg_TN(int reg, int t)
618
{
619
    if (reg)
B
blueswir1 已提交
620
        gen_op_movl_reg_TN[t][reg] ();
621
    else
B
blueswir1 已提交
622
        gen_movl_imm_TN(t, 0);
623 624
}

625
static inline void gen_movl_reg_T0(int reg)
626
{
627
    gen_movl_reg_TN(reg, 0);
628 629
}

630
static inline void gen_movl_reg_T1(int reg)
631
{
632
    gen_movl_reg_TN(reg, 1);
633 634
}

635
static inline void gen_movl_reg_T2(int reg)
636
{
637
    gen_movl_reg_TN(reg, 2);
638 639
}

640
static inline void gen_movl_TN_reg(int reg, int t)
641
{
642
    if (reg)
B
blueswir1 已提交
643
        gen_op_movl_TN_reg[t][reg] ();
644 645
}

646
static inline void gen_movl_T0_reg(int reg)
647
{
648
    gen_movl_TN_reg(reg, 0);
649 650
}

651
static inline void gen_movl_T1_reg(int reg)
652
{
653
    gen_movl_TN_reg(reg, 1);
654 655
}

B
bellard 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
static inline void gen_jmp_im(target_ulong pc)
{
#ifdef TARGET_SPARC64
    if (pc == (uint32_t)pc) {
        gen_op_jmp_im(pc);
    } else {
        gen_op_jmp_im64(pc >> 32, pc);
    }
#else
    gen_op_jmp_im(pc);
#endif
}

static inline void gen_movl_npc_im(target_ulong npc)
{
#ifdef TARGET_SPARC64
    if (npc == (uint32_t)npc) {
        gen_op_movl_npc_im(npc);
    } else {
        gen_op_movq_npc_im64(npc >> 32, npc);
    }
#else
    gen_op_movl_npc_im(npc);
#endif
}

682
static inline void gen_goto_tb(DisasContext *s, int tb_num,
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
                               target_ulong pc, target_ulong npc)
{
    TranslationBlock *tb;

    tb = s->tb;
    if ((pc & TARGET_PAGE_MASK) == (tb->pc & TARGET_PAGE_MASK) &&
        (npc & TARGET_PAGE_MASK) == (tb->pc & TARGET_PAGE_MASK))  {
        /* jump to same page: we can use a direct jump */
        if (tb_num == 0)
            gen_op_goto_tb0(TBPARAM(tb));
        else
            gen_op_goto_tb1(TBPARAM(tb));
        gen_jmp_im(pc);
        gen_movl_npc_im(npc);
        gen_op_movl_T0_im((long)tb + tb_num);
        gen_op_exit_tb();
    } else {
        /* jump to another page: currently not optimized */
        gen_jmp_im(pc);
        gen_movl_npc_im(npc);
        gen_op_movl_T0_0();
        gen_op_exit_tb();
    }
}

B
blueswir1 已提交
708 709
static inline void gen_branch2(DisasContext *dc, target_ulong pc1,
                               target_ulong pc2)
B
bellard 已提交
710 711 712 713 714 715 716
{
    int l1;

    l1 = gen_new_label();

    gen_op_jz_T2_label(l1);

717
    gen_goto_tb(dc, 0, pc1, pc1 + 4);
B
bellard 已提交
718 719

    gen_set_label(l1);
720
    gen_goto_tb(dc, 1, pc2, pc2 + 4);
B
bellard 已提交
721 722
}

B
blueswir1 已提交
723 724
static inline void gen_branch_a(DisasContext *dc, target_ulong pc1,
                                target_ulong pc2)
B
bellard 已提交
725 726 727 728 729 730 731
{
    int l1;

    l1 = gen_new_label();

    gen_op_jz_T2_label(l1);

732
    gen_goto_tb(dc, 0, pc2, pc1);
B
bellard 已提交
733 734

    gen_set_label(l1);
735
    gen_goto_tb(dc, 1, pc2 + 4, pc2 + 8);
B
bellard 已提交
736 737
}

B
blueswir1 已提交
738 739
static inline void gen_branch(DisasContext *dc, target_ulong pc,
                              target_ulong npc)
B
bellard 已提交
740
{
741
    gen_goto_tb(dc, 0, pc, npc);
B
bellard 已提交
742 743
}

B
blueswir1 已提交
744
static inline void gen_generic_branch(target_ulong npc1, target_ulong npc2)
B
bellard 已提交
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
{
    int l1, l2;

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

    gen_movl_npc_im(npc1);
    gen_op_jmp_label(l2);

    gen_set_label(l1);
    gen_movl_npc_im(npc2);
    gen_set_label(l2);
}

/* call this function before using T2 as it may have been set for a jump */
static inline void flush_T2(DisasContext * dc)
{
    if (dc->npc == JUMP_PC) {
B
blueswir1 已提交
764
        gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1]);
B
bellard 已提交
765 766 767 768
        dc->npc = DYNAMIC_PC;
    }
}

B
bellard 已提交
769 770 771
static inline void save_npc(DisasContext * dc)
{
    if (dc->npc == JUMP_PC) {
B
blueswir1 已提交
772
        gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1]);
B
bellard 已提交
773 774
        dc->npc = DYNAMIC_PC;
    } else if (dc->npc != DYNAMIC_PC) {
B
bellard 已提交
775
        gen_movl_npc_im(dc->npc);
B
bellard 已提交
776 777 778 779 780
    }
}

static inline void save_state(DisasContext * dc)
{
B
bellard 已提交
781
    gen_jmp_im(dc->pc);
B
bellard 已提交
782 783 784
    save_npc(dc);
}

B
bellard 已提交
785 786 787
static inline void gen_mov_pc_npc(DisasContext * dc)
{
    if (dc->npc == JUMP_PC) {
B
blueswir1 已提交
788
        gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1]);
B
bellard 已提交
789 790 791 792 793 794 795 796 797 798
        gen_op_mov_pc_npc();
        dc->pc = DYNAMIC_PC;
    } else if (dc->npc == DYNAMIC_PC) {
        gen_op_mov_pc_npc();
        dc->pc = DYNAMIC_PC;
    } else {
        dc->pc = dc->npc;
    }
}

B
bellard 已提交
799 800
static GenOpFunc * const gen_cond[2][16] = {
    {
B
blueswir1 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
        gen_op_eval_bn,
        gen_op_eval_be,
        gen_op_eval_ble,
        gen_op_eval_bl,
        gen_op_eval_bleu,
        gen_op_eval_bcs,
        gen_op_eval_bneg,
        gen_op_eval_bvs,
        gen_op_eval_ba,
        gen_op_eval_bne,
        gen_op_eval_bg,
        gen_op_eval_bge,
        gen_op_eval_bgu,
        gen_op_eval_bcc,
        gen_op_eval_bpos,
        gen_op_eval_bvc,
B
bellard 已提交
817 818 819
    },
    {
#ifdef TARGET_SPARC64
B
blueswir1 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
        gen_op_eval_bn,
        gen_op_eval_xbe,
        gen_op_eval_xble,
        gen_op_eval_xbl,
        gen_op_eval_xbleu,
        gen_op_eval_xbcs,
        gen_op_eval_xbneg,
        gen_op_eval_xbvs,
        gen_op_eval_ba,
        gen_op_eval_xbne,
        gen_op_eval_xbg,
        gen_op_eval_xbge,
        gen_op_eval_xbgu,
        gen_op_eval_xbcc,
        gen_op_eval_xbpos,
        gen_op_eval_xbvc,
B
bellard 已提交
836 837 838 839 840 841
#endif
    },
};

static GenOpFunc * const gen_fcond[4][16] = {
    {
B
blueswir1 已提交
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
        gen_op_eval_bn,
        gen_op_eval_fbne,
        gen_op_eval_fblg,
        gen_op_eval_fbul,
        gen_op_eval_fbl,
        gen_op_eval_fbug,
        gen_op_eval_fbg,
        gen_op_eval_fbu,
        gen_op_eval_ba,
        gen_op_eval_fbe,
        gen_op_eval_fbue,
        gen_op_eval_fbge,
        gen_op_eval_fbuge,
        gen_op_eval_fble,
        gen_op_eval_fbule,
        gen_op_eval_fbo,
B
bellard 已提交
858 859 860
    },
#ifdef TARGET_SPARC64
    {
B
blueswir1 已提交
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
        gen_op_eval_bn,
        gen_op_eval_fbne_fcc1,
        gen_op_eval_fblg_fcc1,
        gen_op_eval_fbul_fcc1,
        gen_op_eval_fbl_fcc1,
        gen_op_eval_fbug_fcc1,
        gen_op_eval_fbg_fcc1,
        gen_op_eval_fbu_fcc1,
        gen_op_eval_ba,
        gen_op_eval_fbe_fcc1,
        gen_op_eval_fbue_fcc1,
        gen_op_eval_fbge_fcc1,
        gen_op_eval_fbuge_fcc1,
        gen_op_eval_fble_fcc1,
        gen_op_eval_fbule_fcc1,
        gen_op_eval_fbo_fcc1,
B
bellard 已提交
877 878
    },
    {
B
blueswir1 已提交
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
        gen_op_eval_bn,
        gen_op_eval_fbne_fcc2,
        gen_op_eval_fblg_fcc2,
        gen_op_eval_fbul_fcc2,
        gen_op_eval_fbl_fcc2,
        gen_op_eval_fbug_fcc2,
        gen_op_eval_fbg_fcc2,
        gen_op_eval_fbu_fcc2,
        gen_op_eval_ba,
        gen_op_eval_fbe_fcc2,
        gen_op_eval_fbue_fcc2,
        gen_op_eval_fbge_fcc2,
        gen_op_eval_fbuge_fcc2,
        gen_op_eval_fble_fcc2,
        gen_op_eval_fbule_fcc2,
        gen_op_eval_fbo_fcc2,
B
bellard 已提交
895 896
    },
    {
B
blueswir1 已提交
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
        gen_op_eval_bn,
        gen_op_eval_fbne_fcc3,
        gen_op_eval_fblg_fcc3,
        gen_op_eval_fbul_fcc3,
        gen_op_eval_fbl_fcc3,
        gen_op_eval_fbug_fcc3,
        gen_op_eval_fbg_fcc3,
        gen_op_eval_fbu_fcc3,
        gen_op_eval_ba,
        gen_op_eval_fbe_fcc3,
        gen_op_eval_fbue_fcc3,
        gen_op_eval_fbge_fcc3,
        gen_op_eval_fbuge_fcc3,
        gen_op_eval_fble_fcc3,
        gen_op_eval_fbule_fcc3,
        gen_op_eval_fbo_fcc3,
B
bellard 已提交
913 914 915 916 917
    },
#else
    {}, {}, {},
#endif
};
918

B
bellard 已提交
919 920
#ifdef TARGET_SPARC64
static void gen_cond_reg(int cond)
921
{
B
blueswir1 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
        switch (cond) {
        case 0x1:
            gen_op_eval_brz();
            break;
        case 0x2:
            gen_op_eval_brlez();
            break;
        case 0x3:
            gen_op_eval_brlz();
            break;
        case 0x5:
            gen_op_eval_brnz();
            break;
        case 0x6:
            gen_op_eval_brgz();
            break;
938
        default:
B
blueswir1 已提交
939 940 941 942
        case 0x7:
            gen_op_eval_brgez();
            break;
        }
943
}
B
bellard 已提交
944
#endif
945

B
bellard 已提交
946
/* XXX: potentially incorrect if dynamic npc */
B
bellard 已提交
947
static void do_branch(DisasContext * dc, int32_t offset, uint32_t insn, int cc)
948
{
949
    unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
950
    target_ulong target = dc->pc + offset;
951

952
    if (cond == 0x0) {
B
blueswir1 已提交
953 954 955 956 957 958 959 960
        /* unconditional not taken */
        if (a) {
            dc->pc = dc->npc + 4;
            dc->npc = dc->pc + 4;
        } else {
            dc->pc = dc->npc;
            dc->npc = dc->pc + 4;
        }
961
    } else if (cond == 0x8) {
B
blueswir1 已提交
962 963 964 965 966 967 968 969
        /* unconditional taken */
        if (a) {
            dc->pc = target;
            dc->npc = dc->pc + 4;
        } else {
            dc->pc = dc->npc;
            dc->npc = target;
        }
970
    } else {
B
bellard 已提交
971
        flush_T2(dc);
B
bellard 已提交
972
        gen_cond[cc][cond]();
B
blueswir1 已提交
973 974
        if (a) {
            gen_branch_a(dc, target, dc->npc);
975
            dc->is_br = 1;
B
blueswir1 已提交
976
        } else {
977
            dc->pc = dc->npc;
B
bellard 已提交
978 979 980
            dc->jump_pc[0] = target;
            dc->jump_pc[1] = dc->npc + 4;
            dc->npc = JUMP_PC;
B
blueswir1 已提交
981
        }
982
    }
983 984
}

B
bellard 已提交
985
/* XXX: potentially incorrect if dynamic npc */
B
bellard 已提交
986
static void do_fbranch(DisasContext * dc, int32_t offset, uint32_t insn, int cc)
987 988
{
    unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
989 990
    target_ulong target = dc->pc + offset;

991
    if (cond == 0x0) {
B
blueswir1 已提交
992 993 994 995 996 997 998 999
        /* unconditional not taken */
        if (a) {
            dc->pc = dc->npc + 4;
            dc->npc = dc->pc + 4;
        } else {
            dc->pc = dc->npc;
            dc->npc = dc->pc + 4;
        }
1000
    } else if (cond == 0x8) {
B
blueswir1 已提交
1001 1002 1003 1004 1005 1006 1007 1008
        /* unconditional taken */
        if (a) {
            dc->pc = target;
            dc->npc = dc->pc + 4;
        } else {
            dc->pc = dc->npc;
            dc->npc = target;
        }
1009 1010
    } else {
        flush_T2(dc);
B
bellard 已提交
1011
        gen_fcond[cc][cond]();
B
blueswir1 已提交
1012 1013
        if (a) {
            gen_branch_a(dc, target, dc->npc);
1014
            dc->is_br = 1;
B
blueswir1 已提交
1015
        } else {
1016 1017 1018 1019
            dc->pc = dc->npc;
            dc->jump_pc[0] = target;
            dc->jump_pc[1] = dc->npc + 4;
            dc->npc = JUMP_PC;
B
blueswir1 已提交
1020
        }
1021 1022 1023
    }
}

B
bellard 已提交
1024 1025 1026
#ifdef TARGET_SPARC64
/* XXX: potentially incorrect if dynamic npc */
static void do_branch_reg(DisasContext * dc, int32_t offset, uint32_t insn)
1027
{
B
bellard 已提交
1028 1029 1030 1031 1032 1033
    unsigned int cond = GET_FIELD_SP(insn, 25, 27), a = (insn & (1 << 29));
    target_ulong target = dc->pc + offset;

    flush_T2(dc);
    gen_cond_reg(cond);
    if (a) {
B
blueswir1 已提交
1034 1035
        gen_branch_a(dc, target, dc->npc);
        dc->is_br = 1;
B
bellard 已提交
1036
    } else {
B
blueswir1 已提交
1037 1038 1039 1040
        dc->pc = dc->npc;
        dc->jump_pc[0] = target;
        dc->jump_pc[1] = dc->npc + 4;
        dc->npc = JUMP_PC;
B
bellard 已提交
1041
    }
1042 1043
}

B
bellard 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
static GenOpFunc * const gen_fcmps[4] = {
    gen_op_fcmps,
    gen_op_fcmps_fcc1,
    gen_op_fcmps_fcc2,
    gen_op_fcmps_fcc3,
};

static GenOpFunc * const gen_fcmpd[4] = {
    gen_op_fcmpd,
    gen_op_fcmpd_fcc1,
    gen_op_fcmpd_fcc2,
    gen_op_fcmpd_fcc3,
};
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071

static GenOpFunc * const gen_fcmpes[4] = {
    gen_op_fcmpes,
    gen_op_fcmpes_fcc1,
    gen_op_fcmpes_fcc2,
    gen_op_fcmpes_fcc3,
};

static GenOpFunc * const gen_fcmped[4] = {
    gen_op_fcmped,
    gen_op_fcmped_fcc1,
    gen_op_fcmped_fcc2,
    gen_op_fcmped_fcc3,
};

B
bellard 已提交
1072 1073
#endif

B
bellard 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
static int gen_trap_ifnofpu(DisasContext * dc)
{
#if !defined(CONFIG_USER_ONLY)
    if (!dc->fpu_enabled) {
        save_state(dc);
        gen_op_exception(TT_NFPU_INSN);
        dc->is_br = 1;
        return 1;
    }
#endif
    return 0;
}

B
bellard 已提交
1087
/* before an instruction, dc->pc must be static */
1088 1089 1090
static void disas_sparc_insn(DisasContext * dc)
{
    unsigned int insn, opc, rs1, rs2, rd;
1091

B
bellard 已提交
1092
    insn = ldl_code(dc->pc);
1093
    opc = GET_FIELD(insn, 0, 1);
1094

1095 1096
    rd = GET_FIELD(insn, 2, 6);
    switch (opc) {
B
blueswir1 已提交
1097 1098 1099 1100 1101
    case 0:                     /* branches/sethi */
        {
            unsigned int xop = GET_FIELD(insn, 7, 9);
            int32_t target;
            switch (xop) {
B
bellard 已提交
1102
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
            case 0x1:           /* V9 BPcc */
                {
                    int cc;

                    target = GET_FIELD_SP(insn, 0, 18);
                    target = sign_extend(target, 18);
                    target <<= 2;
                    cc = GET_FIELD_SP(insn, 20, 21);
                    if (cc == 0)
                        do_branch(dc, target, insn, 0);
                    else if (cc == 2)
                        do_branch(dc, target, insn, 1);
                    else
                        goto illegal_insn;
                    goto jmp_insn;
                }
            case 0x3:           /* V9 BPr */
                {
                    target = GET_FIELD_SP(insn, 0, 13) |
1122
                        (GET_FIELD_SP(insn, 20, 21) << 14);
B
blueswir1 已提交
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
                    target = sign_extend(target, 16);
                    target <<= 2;
                    rs1 = GET_FIELD(insn, 13, 17);
                    gen_movl_reg_T0(rs1);
                    do_branch_reg(dc, target, insn);
                    goto jmp_insn;
                }
            case 0x5:           /* V9 FBPcc */
                {
                    int cc = GET_FIELD_SP(insn, 20, 21);
B
bellard 已提交
1133 1134
                    if (gen_trap_ifnofpu(dc))
                        goto jmp_insn;
B
blueswir1 已提交
1135 1136 1137 1138 1139 1140
                    target = GET_FIELD_SP(insn, 0, 18);
                    target = sign_extend(target, 19);
                    target <<= 2;
                    do_fbranch(dc, target, insn, cc);
                    goto jmp_insn;
                }
1141
#else
B
blueswir1 已提交
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
            case 0x7:           /* CBN+x */
                {
                    goto ncp_insn;
                }
#endif
            case 0x2:           /* BN+x */
                {
                    target = GET_FIELD(insn, 10, 31);
                    target = sign_extend(target, 22);
                    target <<= 2;
                    do_branch(dc, target, insn, 0);
                    goto jmp_insn;
                }
            case 0x6:           /* FBN+x */
                {
B
bellard 已提交
1157 1158
                    if (gen_trap_ifnofpu(dc))
                        goto jmp_insn;
B
blueswir1 已提交
1159 1160 1161 1162 1163 1164 1165
                    target = GET_FIELD(insn, 10, 31);
                    target = sign_extend(target, 22);
                    target <<= 2;
                    do_fbranch(dc, target, insn, 0);
                    goto jmp_insn;
                }
            case 0x4:           /* SETHI */
B
bellard 已提交
1166 1167
#define OPTIM
#if defined(OPTIM)
B
blueswir1 已提交
1168
                if (rd) { // nop
B
bellard 已提交
1169
#endif
B
blueswir1 已提交
1170 1171 1172
                    uint32_t value = GET_FIELD(insn, 10, 31);
                    gen_movl_imm_T0(value << 10);
                    gen_movl_T0_reg(rd);
B
bellard 已提交
1173
#if defined(OPTIM)
B
blueswir1 已提交
1174
                }
B
bellard 已提交
1175
#endif
B
blueswir1 已提交
1176 1177 1178
                break;
            case 0x0:           /* UNIMPL */
            default:
B
bellard 已提交
1179
                goto illegal_insn;
B
blueswir1 已提交
1180 1181 1182 1183
            }
            break;
        }
        break;
1184
    case 1:
B
blueswir1 已提交
1185 1186
        /*CALL*/ {
            target_long target = GET_FIELDs(insn, 2, 31) << 2;
1187

B
bellard 已提交
1188
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1189 1190 1191 1192 1193
            if (dc->pc == (uint32_t)dc->pc) {
                gen_op_movl_T0_im(dc->pc);
            } else {
                gen_op_movq_T0_im64(dc->pc >> 32, dc->pc);
            }
B
bellard 已提交
1194
#else
B
blueswir1 已提交
1195
            gen_op_movl_T0_im(dc->pc);
B
bellard 已提交
1196
#endif
B
blueswir1 已提交
1197 1198
            gen_movl_T0_reg(15);
            target += dc->pc;
B
bellard 已提交
1199
            gen_mov_pc_npc(dc);
B
blueswir1 已提交
1200 1201 1202 1203 1204 1205 1206
            dc->npc = target;
        }
        goto jmp_insn;
    case 2:                     /* FPU & Logical Operations */
        {
            unsigned int xop = GET_FIELD(insn, 7, 12);
            if (xop == 0x3a) {  /* generate trap */
1207
                int cond;
B
bellard 已提交
1208

1209 1210
                rs1 = GET_FIELD(insn, 13, 17);
                gen_movl_reg_T0(rs1);
B
blueswir1 已提交
1211 1212
                if (IS_IMM) {
                    rs2 = GET_FIELD(insn, 25, 31);
B
bellard 已提交
1213
#if defined(OPTIM)
B
blueswir1 已提交
1214
                    if (rs2 != 0) {
B
bellard 已提交
1215
#endif
B
blueswir1 已提交
1216 1217
                        gen_movl_simm_T1(rs2);
                        gen_op_add_T1_T0();
B
bellard 已提交
1218
#if defined(OPTIM)
B
blueswir1 已提交
1219
                    }
B
bellard 已提交
1220
#endif
1221 1222
                } else {
                    rs2 = GET_FIELD(insn, 27, 31);
B
bellard 已提交
1223
#if defined(OPTIM)
B
blueswir1 已提交
1224
                    if (rs2 != 0) {
B
bellard 已提交
1225
#endif
B
blueswir1 已提交
1226 1227
                        gen_movl_reg_T1(rs2);
                        gen_op_add_T1_T0();
B
bellard 已提交
1228
#if defined(OPTIM)
B
blueswir1 已提交
1229
                    }
B
bellard 已提交
1230
#endif
1231 1232 1233
                }
                cond = GET_FIELD(insn, 3, 6);
                if (cond == 0x8) {
B
bellard 已提交
1234
                    save_state(dc);
1235
                    gen_op_trap_T0();
1236
                } else if (cond != 0) {
B
bellard 已提交
1237
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1238 1239 1240
                    /* V9 icc/xcc */
                    int cc = GET_FIELD_SP(insn, 11, 12);
                    flush_T2(dc);
B
bellard 已提交
1241
                    save_state(dc);
B
blueswir1 已提交
1242 1243 1244 1245 1246 1247
                    if (cc == 0)
                        gen_cond[0][cond]();
                    else if (cc == 2)
                        gen_cond[1][cond]();
                    else
                        goto illegal_insn;
B
bellard 已提交
1248
#else
B
blueswir1 已提交
1249
                    flush_T2(dc);
B
bellard 已提交
1250
                    save_state(dc);
B
blueswir1 已提交
1251
                    gen_cond[0][cond]();
B
bellard 已提交
1252
#endif
1253 1254
                    gen_op_trapcc_T0();
                }
B
bellard 已提交
1255 1256 1257 1258 1259
                gen_op_next_insn();
                gen_op_movl_T0_0();
                gen_op_exit_tb();
                dc->is_br = 1;
                goto jmp_insn;
1260 1261 1262 1263
            } else if (xop == 0x28) {
                rs1 = GET_FIELD(insn, 13, 17);
                switch(rs1) {
                case 0: /* rdy */
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
#ifndef TARGET_SPARC64
                case 0x01 ... 0x0e: /* undefined in the SPARCv8
                                       manual, rdy on the microSPARC
                                       II */
                case 0x0f:          /* stbar in the SPARCv8 manual,
                                       rdy on the microSPARC II */
                case 0x10 ... 0x1f: /* implementation-dependent in the
                                       SPARCv8 manual, rdy on the
                                       microSPARC II */
#endif
                    gen_op_movtl_T0_env(offsetof(CPUSPARCState, y));
1275 1276
                    gen_movl_T0_reg(rd);
                    break;
B
bellard 已提交
1277
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1278
                case 0x2: /* V9 rdccr */
B
bellard 已提交
1279 1280 1281
                    gen_op_rdccr();
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1282 1283
                case 0x3: /* V9 rdasi */
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, asi));
B
bellard 已提交
1284 1285
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1286
                case 0x4: /* V9 rdtick */
B
bellard 已提交
1287 1288 1289
                    gen_op_rdtick();
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
                case 0x5: /* V9 rdpc */
                    if (dc->pc == (uint32_t)dc->pc) {
                        gen_op_movl_T0_im(dc->pc);
                    } else {
                        gen_op_movq_T0_im64(dc->pc >> 32, dc->pc);
                    }
                    gen_movl_T0_reg(rd);
                    break;
                case 0x6: /* V9 rdfprs */
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, fprs));
B
bellard 已提交
1300 1301
                    gen_movl_T0_reg(rd);
                    break;
1302 1303
                case 0xf: /* V9 membar */
                    break; /* no effect */
B
blueswir1 已提交
1304
                case 0x13: /* Graphics Status */
B
bellard 已提交
1305 1306
                    if (gen_trap_ifnofpu(dc))
                        goto jmp_insn;
B
blueswir1 已提交
1307
                    gen_op_movtl_T0_env(offsetof(CPUSPARCState, gsr));
B
bellard 已提交
1308 1309
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1310 1311
                case 0x17: /* Tick compare */
                    gen_op_movtl_T0_env(offsetof(CPUSPARCState, tick_cmpr));
B
bellard 已提交
1312 1313
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1314
                case 0x18: /* System tick */
1315
                    gen_op_rdstick();
B
bellard 已提交
1316 1317
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1318 1319
                case 0x19: /* System tick compare */
                    gen_op_movtl_T0_env(offsetof(CPUSPARCState, stick_cmpr));
B
bellard 已提交
1320 1321
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
1322 1323 1324 1325 1326 1327
                case 0x10: /* Performance Control */
                case 0x11: /* Performance Instrumentation Counter */
                case 0x12: /* Dispatch Control */
                case 0x14: /* Softint set, WO */
                case 0x15: /* Softint clear, WO */
                case 0x16: /* Softint write */
B
bellard 已提交
1328 1329
#endif
                default:
1330 1331
                    goto illegal_insn;
                }
1332
#if !defined(CONFIG_USER_ONLY)
B
blueswir1 已提交
1333
            } else if (xop == 0x29) { /* rdpsr / UA2005 rdhpr */
B
bellard 已提交
1334
#ifndef TARGET_SPARC64
B
blueswir1 已提交
1335 1336
                if (!supervisor(dc))
                    goto priv_insn;
1337
                gen_op_rdpsr();
B
blueswir1 已提交
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
#else
                if (!hypervisor(dc))
                    goto priv_insn;
                rs1 = GET_FIELD(insn, 13, 17);
                switch (rs1) {
                case 0: // hpstate
                    // gen_op_rdhpstate();
                    break;
                case 1: // htstate
                    // gen_op_rdhtstate();
                    break;
                case 3: // hintp
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, hintp));
                    break;
                case 5: // htba
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, htba));
                    break;
                case 6: // hver
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, hver));
                    break;
                case 31: // hstick_cmpr
                    gen_op_movl_env_T0(offsetof(CPUSPARCState, hstick_cmpr));
                    break;
                default:
                    goto illegal_insn;
                }
#endif
1365 1366
                gen_movl_T0_reg(rd);
                break;
B
bellard 已提交
1367
            } else if (xop == 0x2a) { /* rdwim / V9 rdpr */
B
blueswir1 已提交
1368 1369
                if (!supervisor(dc))
                    goto priv_insn;
B
bellard 已提交
1370 1371
#ifdef TARGET_SPARC64
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
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
                switch (rs1) {
                case 0: // tpc
                    gen_op_rdtpc();
                    break;
                case 1: // tnpc
                    gen_op_rdtnpc();
                    break;
                case 2: // tstate
                    gen_op_rdtstate();
                    break;
                case 3: // tt
                    gen_op_rdtt();
                    break;
                case 4: // tick
                    gen_op_rdtick();
                    break;
                case 5: // tba
                    gen_op_movtl_T0_env(offsetof(CPUSPARCState, tbr));
                    break;
                case 6: // pstate
                    gen_op_rdpstate();
                    break;
                case 7: // tl
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, tl));
                    break;
                case 8: // pil
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, psrpil));
                    break;
                case 9: // cwp
                    gen_op_rdcwp();
                    break;
                case 10: // cansave
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, cansave));
                    break;
                case 11: // canrestore
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, canrestore));
                    break;
                case 12: // cleanwin
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, cleanwin));
                    break;
                case 13: // otherwin
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, otherwin));
                    break;
                case 14: // wstate
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, wstate));
                    break;
B
blueswir1 已提交
1418 1419 1420 1421 1422 1423 1424 1425
                case 16: // UA2005 gl
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, gl));
                    break;
                case 26: // UA2005 strand status
                    if (!hypervisor(dc))
                        goto priv_insn;
                    gen_op_movl_T0_env(offsetof(CPUSPARCState, ssr));
                    break;
B
blueswir1 已提交
1426 1427 1428 1429 1430 1431 1432
                case 31: // ver
                    gen_op_movtl_T0_env(offsetof(CPUSPARCState, version));
                    break;
                case 15: // fq
                default:
                    goto illegal_insn;
                }
B
bellard 已提交
1433
#else
B
blueswir1 已提交
1434
                gen_op_movl_T0_env(offsetof(CPUSPARCState, wim));
B
bellard 已提交
1435
#endif
1436 1437
                gen_movl_T0_reg(rd);
                break;
B
bellard 已提交
1438 1439
            } else if (xop == 0x2b) { /* rdtbr / V9 flushw */
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1440
                gen_op_flushw();
B
bellard 已提交
1441
#else
B
blueswir1 已提交
1442 1443 1444
                if (!supervisor(dc))
                    goto priv_insn;
                gen_op_movtl_T0_env(offsetof(CPUSPARCState, tbr));
1445
                gen_movl_T0_reg(rd);
B
bellard 已提交
1446
#endif
1447 1448
                break;
#endif
B
blueswir1 已提交
1449
            } else if (xop == 0x34) {   /* FPU Operations */
B
bellard 已提交
1450 1451
                if (gen_trap_ifnofpu(dc))
                    goto jmp_insn;
B
blueswir1 已提交
1452
                gen_op_clear_ieee_excp_and_FTT();
1453
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
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
                rs2 = GET_FIELD(insn, 27, 31);
                xop = GET_FIELD(insn, 18, 26);
                switch (xop) {
                    case 0x1: /* fmovs */
                        gen_op_load_fpr_FT0(rs2);
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x5: /* fnegs */
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fnegs();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x9: /* fabss */
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fabss();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x29: /* fsqrts */
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fsqrts();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x2a: /* fsqrtd */
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fsqrtd();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x2b: /* fsqrtq */
                        goto nfpu_insn;
                    case 0x41:
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fadds();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x42:
                        gen_op_load_fpr_DT0(DFPREG(rs1));
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_faddd();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x43: /* faddq */
                        goto nfpu_insn;
                    case 0x45:
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fsubs();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x46:
                        gen_op_load_fpr_DT0(DFPREG(rs1));
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fsubd();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x47: /* fsubq */
                        goto nfpu_insn;
                    case 0x49:
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fmuls();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x4a:
                        gen_op_load_fpr_DT0(DFPREG(rs1));
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fmuld();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x4b: /* fmulq */
                        goto nfpu_insn;
                    case 0x4d:
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fdivs();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x4e:
                        gen_op_load_fpr_DT0(DFPREG(rs1));
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fdivd();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x4f: /* fdivq */
                        goto nfpu_insn;
                    case 0x69:
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fsmuld();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x6e: /* fdmulq */
                        goto nfpu_insn;
                    case 0xc4:
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fitos();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0xc6:
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fdtos();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0xc7: /* fqtos */
                        goto nfpu_insn;
                    case 0xc8:
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fitod();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0xc9:
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fstod();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0xcb: /* fqtod */
                        goto nfpu_insn;
                    case 0xcc: /* fitoq */
                        goto nfpu_insn;
                    case 0xcd: /* fstoq */
                        goto nfpu_insn;
                    case 0xce: /* fdtoq */
                        goto nfpu_insn;
                    case 0xd1:
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fstoi();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0xd2:
                        gen_op_load_fpr_DT1(rs2);
                        gen_op_fdtoi();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0xd3: /* fqtoi */
                        goto nfpu_insn;
B
bellard 已提交
1589
#ifdef TARGET_SPARC64
B
blueswir1 已提交
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
                    case 0x2: /* V9 fmovd */
                        gen_op_load_fpr_DT0(DFPREG(rs2));
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x6: /* V9 fnegd */
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fnegd();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0xa: /* V9 fabsd */
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fabsd();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x81: /* V9 fstox */
                        gen_op_load_fpr_FT1(rs2);
                        gen_op_fstox();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x82: /* V9 fdtox */
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fdtox();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x84: /* V9 fxtos */
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fxtos();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x88: /* V9 fxtod */
                        gen_op_load_fpr_DT1(DFPREG(rs2));
                        gen_op_fxtod();
                        gen_op_store_DT0_fpr(DFPREG(rd));
                        break;
                    case 0x3: /* V9 fmovq */
                    case 0x7: /* V9 fnegq */
                    case 0xb: /* V9 fabsq */
                    case 0x83: /* V9 fqtox */
                    case 0x8c: /* V9 fxtoq */
                        goto nfpu_insn;
#endif
                    default:
                        goto illegal_insn;
                }
            } else if (xop == 0x35) {   /* FPU Operations */
B
bellard 已提交
1635
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1636
                int cond;
B
bellard 已提交
1637
#endif
B
bellard 已提交
1638 1639
                if (gen_trap_ifnofpu(dc))
                    goto jmp_insn;
B
blueswir1 已提交
1640
                gen_op_clear_ieee_excp_and_FTT();
1641
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
1642 1643
                rs2 = GET_FIELD(insn, 27, 31);
                xop = GET_FIELD(insn, 18, 26);
B
bellard 已提交
1644
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
                if ((xop & 0x11f) == 0x005) { // V9 fmovsr
                    cond = GET_FIELD_SP(insn, 14, 17);
                    gen_op_load_fpr_FT0(rd);
                    gen_op_load_fpr_FT1(rs2);
                    rs1 = GET_FIELD(insn, 13, 17);
                    gen_movl_reg_T0(rs1);
                    flush_T2(dc);
                    gen_cond_reg(cond);
                    gen_op_fmovs_cc();
                    gen_op_store_FT0_fpr(rd);
                    break;
                } else if ((xop & 0x11f) == 0x006) { // V9 fmovdr
                    cond = GET_FIELD_SP(insn, 14, 17);
                    gen_op_load_fpr_DT0(rd);
                    gen_op_load_fpr_DT1(rs2);
                    flush_T2(dc);
                    rs1 = GET_FIELD(insn, 13, 17);
                    gen_movl_reg_T0(rs1);
                    gen_cond_reg(cond);
                    gen_op_fmovs_cc();
                    gen_op_store_DT0_fpr(rd);
                    break;
                } else if ((xop & 0x11f) == 0x007) { // V9 fmovqr
                    goto nfpu_insn;
                }
#endif
                switch (xop) {
B
bellard 已提交
1672
#ifdef TARGET_SPARC64
B
blueswir1 已提交
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 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 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
                    case 0x001: /* V9 fmovscc %fcc0 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_FT0(rd);
                        gen_op_load_fpr_FT1(rs2);
                        flush_T2(dc);
                        gen_fcond[0][cond]();
                        gen_op_fmovs_cc();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x002: /* V9 fmovdcc %fcc0 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_DT0(rd);
                        gen_op_load_fpr_DT1(rs2);
                        flush_T2(dc);
                        gen_fcond[0][cond]();
                        gen_op_fmovd_cc();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x003: /* V9 fmovqcc %fcc0 */
                        goto nfpu_insn;
                    case 0x041: /* V9 fmovscc %fcc1 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_FT0(rd);
                        gen_op_load_fpr_FT1(rs2);
                        flush_T2(dc);
                        gen_fcond[1][cond]();
                        gen_op_fmovs_cc();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x042: /* V9 fmovdcc %fcc1 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_DT0(rd);
                        gen_op_load_fpr_DT1(rs2);
                        flush_T2(dc);
                        gen_fcond[1][cond]();
                        gen_op_fmovd_cc();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x043: /* V9 fmovqcc %fcc1 */
                        goto nfpu_insn;
                    case 0x081: /* V9 fmovscc %fcc2 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_FT0(rd);
                        gen_op_load_fpr_FT1(rs2);
                        flush_T2(dc);
                        gen_fcond[2][cond]();
                        gen_op_fmovs_cc();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x082: /* V9 fmovdcc %fcc2 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_DT0(rd);
                        gen_op_load_fpr_DT1(rs2);
                        flush_T2(dc);
                        gen_fcond[2][cond]();
                        gen_op_fmovd_cc();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x083: /* V9 fmovqcc %fcc2 */
                        goto nfpu_insn;
                    case 0x0c1: /* V9 fmovscc %fcc3 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_FT0(rd);
                        gen_op_load_fpr_FT1(rs2);
                        flush_T2(dc);
                        gen_fcond[3][cond]();
                        gen_op_fmovs_cc();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x0c2: /* V9 fmovdcc %fcc3 */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_DT0(rd);
                        gen_op_load_fpr_DT1(rs2);
                        flush_T2(dc);
                        gen_fcond[3][cond]();
                        gen_op_fmovd_cc();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x0c3: /* V9 fmovqcc %fcc3 */
                        goto nfpu_insn;
                    case 0x101: /* V9 fmovscc %icc */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_FT0(rd);
                        gen_op_load_fpr_FT1(rs2);
                        flush_T2(dc);
                        gen_cond[0][cond]();
                        gen_op_fmovs_cc();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x102: /* V9 fmovdcc %icc */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_DT0(rd);
                        gen_op_load_fpr_DT1(rs2);
                        flush_T2(dc);
                        gen_cond[0][cond]();
                        gen_op_fmovd_cc();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x103: /* V9 fmovqcc %icc */
                        goto nfpu_insn;
                    case 0x181: /* V9 fmovscc %xcc */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_FT0(rd);
                        gen_op_load_fpr_FT1(rs2);
                        flush_T2(dc);
                        gen_cond[1][cond]();
                        gen_op_fmovs_cc();
                        gen_op_store_FT0_fpr(rd);
                        break;
                    case 0x182: /* V9 fmovdcc %xcc */
                        cond = GET_FIELD_SP(insn, 14, 17);
                        gen_op_load_fpr_DT0(rd);
                        gen_op_load_fpr_DT1(rs2);
                        flush_T2(dc);
                        gen_cond[1][cond]();
                        gen_op_fmovd_cc();
                        gen_op_store_DT0_fpr(rd);
                        break;
                    case 0x183: /* V9 fmovqcc %xcc */
                        goto nfpu_insn;
#endif
                    case 0x51: /* V9 %fcc */
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
B
bellard 已提交
1797
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1798
                        gen_fcmps[rd & 3]();
B
bellard 已提交
1799
#else
B
blueswir1 已提交
1800
                        gen_op_fcmps();
B
bellard 已提交
1801
#endif
B
blueswir1 已提交
1802 1803 1804 1805
                        break;
                    case 0x52: /* V9 %fcc */
                        gen_op_load_fpr_DT0(DFPREG(rs1));
                        gen_op_load_fpr_DT1(DFPREG(rs2));
B
bellard 已提交
1806
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1807
                        gen_fcmpd[rd & 3]();
B
bellard 已提交
1808
#else
B
blueswir1 已提交
1809 1810 1811 1812 1813 1814 1815 1816
                        gen_op_fcmpd();
#endif
                        break;
                    case 0x53: /* fcmpq */
                        goto nfpu_insn;
                    case 0x55: /* fcmpes, V9 %fcc */
                        gen_op_load_fpr_FT0(rs1);
                        gen_op_load_fpr_FT1(rs2);
B
bellard 已提交
1817
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1818
                        gen_fcmpes[rd & 3]();
B
bellard 已提交
1819
#else
B
blueswir1 已提交
1820
                        gen_op_fcmpes();
B
bellard 已提交
1821
#endif
B
blueswir1 已提交
1822 1823 1824 1825
                        break;
                    case 0x56: /* fcmped, V9 %fcc */
                        gen_op_load_fpr_DT0(DFPREG(rs1));
                        gen_op_load_fpr_DT1(DFPREG(rs2));
B
bellard 已提交
1826
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1827
                        gen_fcmped[rd & 3]();
B
bellard 已提交
1828
#else
B
blueswir1 已提交
1829 1830 1831 1832 1833 1834 1835 1836
                        gen_op_fcmped();
#endif
                        break;
                    case 0x57: /* fcmpeq */
                        goto nfpu_insn;
                    default:
                        goto illegal_insn;
                }
B
bellard 已提交
1837
#if defined(OPTIM)
B
blueswir1 已提交
1838 1839
            } else if (xop == 0x2) {
                // clr/mov shortcut
B
bellard 已提交
1840 1841

                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
                if (rs1 == 0) {
                    // or %g0, x, y -> mov T1, x; mov y, T1
                    if (IS_IMM) {       /* immediate */
                        rs2 = GET_FIELDs(insn, 19, 31);
                        gen_movl_simm_T1(rs2);
                    } else {            /* register */
                        rs2 = GET_FIELD(insn, 27, 31);
                        gen_movl_reg_T1(rs2);
                    }
                    gen_movl_T1_reg(rd);
                } else {
                    gen_movl_reg_T0(rs1);
                    if (IS_IMM) {       /* immediate */
                        // or x, #0, y -> mov T1, x; mov y, T1
                        rs2 = GET_FIELDs(insn, 19, 31);
                        if (rs2 != 0) {
                            gen_movl_simm_T1(rs2);
                            gen_op_or_T1_T0();
                        }
                    } else {            /* register */
                        // or x, %g0, y -> mov T1, x; mov y, T1
                        rs2 = GET_FIELD(insn, 27, 31);
                        if (rs2 != 0) {
                            gen_movl_reg_T1(rs2);
                            gen_op_or_T1_T0();
                        }
                    }
                    gen_movl_T0_reg(rd);
                }
B
bellard 已提交
1871 1872
#endif
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1873
            } else if (xop == 0x25) { /* sll, V9 sllx */
B
bellard 已提交
1874
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
1875 1876
                gen_movl_reg_T0(rs1);
                if (IS_IMM) {   /* immediate */
B
bellard 已提交
1877 1878
                    rs2 = GET_FIELDs(insn, 20, 31);
                    gen_movl_simm_T1(rs2);
B
blueswir1 已提交
1879
                } else {                /* register */
B
bellard 已提交
1880 1881 1882
                    rs2 = GET_FIELD(insn, 27, 31);
                    gen_movl_reg_T1(rs2);
                }
B
blueswir1 已提交
1883 1884 1885 1886 1887 1888
                if (insn & (1 << 12))
                    gen_op_sllx();
                else
                    gen_op_sll();
                gen_movl_T0_reg(rd);
            } else if (xop == 0x26) { /* srl, V9 srlx */
B
bellard 已提交
1889
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
1890 1891
                gen_movl_reg_T0(rs1);
                if (IS_IMM) {   /* immediate */
B
bellard 已提交
1892 1893
                    rs2 = GET_FIELDs(insn, 20, 31);
                    gen_movl_simm_T1(rs2);
B
blueswir1 已提交
1894
                } else {                /* register */
B
bellard 已提交
1895 1896 1897
                    rs2 = GET_FIELD(insn, 27, 31);
                    gen_movl_reg_T1(rs2);
                }
B
blueswir1 已提交
1898 1899 1900 1901 1902 1903
                if (insn & (1 << 12))
                    gen_op_srlx();
                else
                    gen_op_srl();
                gen_movl_T0_reg(rd);
            } else if (xop == 0x27) { /* sra, V9 srax */
B
bellard 已提交
1904
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
1905 1906
                gen_movl_reg_T0(rs1);
                if (IS_IMM) {   /* immediate */
B
bellard 已提交
1907 1908
                    rs2 = GET_FIELDs(insn, 20, 31);
                    gen_movl_simm_T1(rs2);
B
blueswir1 已提交
1909
                } else {                /* register */
B
bellard 已提交
1910 1911 1912
                    rs2 = GET_FIELD(insn, 27, 31);
                    gen_movl_reg_T1(rs2);
                }
B
blueswir1 已提交
1913 1914 1915 1916 1917
                if (insn & (1 << 12))
                    gen_op_srax();
                else
                    gen_op_sra();
                gen_movl_T0_reg(rd);
B
bellard 已提交
1918
#endif
1919
            } else if (xop < 0x36) {
B
bellard 已提交
1920
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
1921 1922
                gen_movl_reg_T0(rs1);
                if (IS_IMM) {   /* immediate */
1923
                    rs2 = GET_FIELDs(insn, 19, 31);
B
bellard 已提交
1924
                    gen_movl_simm_T1(rs2);
B
blueswir1 已提交
1925
                } else {                /* register */
1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
                    rs2 = GET_FIELD(insn, 27, 31);
                    gen_movl_reg_T1(rs2);
                }
                if (xop < 0x20) {
                    switch (xop & ~0x10) {
                    case 0x0:
                        if (xop & 0x10)
                            gen_op_add_T1_T0_cc();
                        else
                            gen_op_add_T1_T0();
                        break;
                    case 0x1:
                        gen_op_and_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0x2:
B
blueswir1 已提交
1943 1944 1945 1946
                        gen_op_or_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
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
                    case 0x3:
                        gen_op_xor_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0x4:
                        if (xop & 0x10)
                            gen_op_sub_T1_T0_cc();
                        else
                            gen_op_sub_T1_T0();
                        break;
                    case 0x5:
                        gen_op_andn_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0x6:
                        gen_op_orn_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0x7:
                        gen_op_xnor_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0x8:
                        if (xop & 0x10)
1975 1976 1977
                            gen_op_addx_T1_T0_cc();
                        else
                            gen_op_addx_T1_T0();
1978
                        break;
P
pbrook 已提交
1979
#ifdef TARGET_SPARC64
B
blueswir1 已提交
1980
                    case 0x9: /* V9 mulx */
P
pbrook 已提交
1981 1982 1983
                        gen_op_mulx_T1_T0();
                        break;
#endif
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
                    case 0xa:
                        gen_op_umul_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0xb:
                        gen_op_smul_T1_T0();
                        if (xop & 0x10)
                            gen_op_logic_T0_cc();
                        break;
                    case 0xc:
                        if (xop & 0x10)
1996 1997 1998
                            gen_op_subx_T1_T0_cc();
                        else
                            gen_op_subx_T1_T0();
1999
                        break;
P
pbrook 已提交
2000
#ifdef TARGET_SPARC64
B
blueswir1 已提交
2001
                    case 0xd: /* V9 udivx */
P
pbrook 已提交
2002 2003 2004
                        gen_op_udivx_T1_T0();
                        break;
#endif
2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
                    case 0xe:
                        gen_op_udiv_T1_T0();
                        if (xop & 0x10)
                            gen_op_div_cc();
                        break;
                    case 0xf:
                        gen_op_sdiv_T1_T0();
                        if (xop & 0x10)
                            gen_op_div_cc();
                        break;
                    default:
                        goto illegal_insn;
                    }
B
blueswir1 已提交
2018
                    gen_movl_T0_reg(rd);
2019 2020
                } else {
                    switch (xop) {
B
blueswir1 已提交
2021 2022 2023 2024 2025 2026 2027 2028 2029
                    case 0x20: /* taddcc */
                        gen_op_tadd_T1_T0_cc();
                        gen_movl_T0_reg(rd);
                        break;
                    case 0x21: /* tsubcc */
                        gen_op_tsub_T1_T0_cc();
                        gen_movl_T0_reg(rd);
                        break;
                    case 0x22: /* taddcctv */
2030
                        save_state(dc);
B
blueswir1 已提交
2031 2032 2033 2034
                        gen_op_tadd_T1_T0_ccTV();
                        gen_movl_T0_reg(rd);
                        break;
                    case 0x23: /* tsubcctv */
2035
                        save_state(dc);
B
blueswir1 已提交
2036 2037 2038
                        gen_op_tsub_T1_T0_ccTV();
                        gen_movl_T0_reg(rd);
                        break;
2039 2040 2041 2042
                    case 0x24: /* mulscc */
                        gen_op_mulscc_T1_T0();
                        gen_movl_T0_reg(rd);
                        break;
B
bellard 已提交
2043
#ifndef TARGET_SPARC64
B
blueswir1 已提交
2044 2045
                    case 0x25:  /* sll */
                        gen_op_sll();
2046 2047
                        gen_movl_T0_reg(rd);
                        break;
B
bellard 已提交
2048
                    case 0x26:  /* srl */
B
blueswir1 已提交
2049
                        gen_op_srl();
2050 2051
                        gen_movl_T0_reg(rd);
                        break;
B
bellard 已提交
2052
                    case 0x27:  /* sra */
B
blueswir1 已提交
2053
                        gen_op_sra();
2054 2055
                        gen_movl_T0_reg(rd);
                        break;
B
bellard 已提交
2056
#endif
2057 2058 2059
                    case 0x30:
                        {
                            switch(rd) {
B
bellard 已提交
2060
                            case 0: /* wry */
B
blueswir1 已提交
2061 2062
                                gen_op_xor_T1_T0();
                                gen_op_movtl_env_T0(offsetof(CPUSPARCState, y));
2063
                                break;
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
#ifndef TARGET_SPARC64
                            case 0x01 ... 0x0f: /* undefined in the
                                                   SPARCv8 manual, nop
                                                   on the microSPARC
                                                   II */
                            case 0x10 ... 0x1f: /* implementation-dependent
                                                   in the SPARCv8
                                                   manual, nop on the
                                                   microSPARC II */
                                break;
#else
B
blueswir1 已提交
2075
                            case 0x2: /* V9 wrccr */
B
blueswir1 已提交
2076
                                gen_op_xor_T1_T0();
B
bellard 已提交
2077
                                gen_op_wrccr();
B
blueswir1 已提交
2078 2079
                                break;
                            case 0x3: /* V9 wrasi */
B
blueswir1 已提交
2080
                                gen_op_xor_T1_T0();
B
blueswir1 已提交
2081 2082 2083 2084 2085
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, asi));
                                break;
                            case 0x6: /* V9 wrfprs */
                                gen_op_xor_T1_T0();
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, fprs));
2086 2087 2088 2089 2090
                                save_state(dc);
                                gen_op_next_insn();
                                gen_op_movl_T0_0();
                                gen_op_exit_tb();
                                dc->is_br = 1;
B
blueswir1 已提交
2091 2092
                                break;
                            case 0xf: /* V9 sir, nop if user */
B
bellard 已提交
2093
#if !defined(CONFIG_USER_ONLY)
B
blueswir1 已提交
2094 2095
                                if (supervisor(dc))
                                    gen_op_sir();
B
bellard 已提交
2096
#endif
B
blueswir1 已提交
2097 2098
                                break;
                            case 0x13: /* Graphics Status */
B
bellard 已提交
2099 2100
                                if (gen_trap_ifnofpu(dc))
                                    goto jmp_insn;
B
blueswir1 已提交
2101
                                gen_op_xor_T1_T0();
B
blueswir1 已提交
2102 2103 2104
                                gen_op_movtl_env_T0(offsetof(CPUSPARCState, gsr));
                                break;
                            case 0x17: /* Tick compare */
B
bellard 已提交
2105
#if !defined(CONFIG_USER_ONLY)
B
blueswir1 已提交
2106 2107
                                if (!supervisor(dc))
                                    goto illegal_insn;
B
bellard 已提交
2108
#endif
B
blueswir1 已提交
2109
                                gen_op_xor_T1_T0();
2110 2111
                                gen_op_movtl_env_T0(offsetof(CPUSPARCState, tick_cmpr));
                                gen_op_wrtick_cmpr();
B
blueswir1 已提交
2112 2113
                                break;
                            case 0x18: /* System tick */
B
bellard 已提交
2114
#if !defined(CONFIG_USER_ONLY)
B
blueswir1 已提交
2115 2116
                                if (!supervisor(dc))
                                    goto illegal_insn;
B
bellard 已提交
2117
#endif
B
blueswir1 已提交
2118
                                gen_op_xor_T1_T0();
2119
                                gen_op_wrstick();
B
blueswir1 已提交
2120 2121
                                break;
                            case 0x19: /* System tick compare */
B
bellard 已提交
2122
#if !defined(CONFIG_USER_ONLY)
B
blueswir1 已提交
2123 2124
                                if (!supervisor(dc))
                                    goto illegal_insn;
B
bellard 已提交
2125
#endif
B
blueswir1 已提交
2126
                                gen_op_xor_T1_T0();
2127 2128
                                gen_op_movtl_env_T0(offsetof(CPUSPARCState, stick_cmpr));
                                gen_op_wrstick_cmpr();
B
blueswir1 已提交
2129
                                break;
B
bellard 已提交
2130

B
blueswir1 已提交
2131 2132 2133 2134 2135 2136
                            case 0x10: /* Performance Control */
                            case 0x11: /* Performance Instrumentation Counter */
                            case 0x12: /* Dispatch Control */
                            case 0x14: /* Softint set */
                            case 0x15: /* Softint clear */
                            case 0x16: /* Softint write */
B
bellard 已提交
2137
#endif
B
bellard 已提交
2138
                            default:
2139 2140 2141 2142
                                goto illegal_insn;
                            }
                        }
                        break;
2143
#if !defined(CONFIG_USER_ONLY)
2144
                    case 0x31: /* wrpsr, V9 saved, restored */
2145
                        {
B
blueswir1 已提交
2146 2147
                            if (!supervisor(dc))
                                goto priv_insn;
B
bellard 已提交
2148
#ifdef TARGET_SPARC64
B
blueswir1 已提交
2149 2150 2151 2152 2153 2154 2155
                            switch (rd) {
                            case 0:
                                gen_op_saved();
                                break;
                            case 1:
                                gen_op_restored();
                                break;
B
blueswir1 已提交
2156 2157 2158 2159 2160
                            case 2: /* UA2005 allclean */
                            case 3: /* UA2005 otherw */
                            case 4: /* UA2005 normalw */
                            case 5: /* UA2005 invalw */
                                // XXX
B
blueswir1 已提交
2161
                            default:
B
bellard 已提交
2162 2163 2164
                                goto illegal_insn;
                            }
#else
2165 2166
                            gen_op_xor_T1_T0();
                            gen_op_wrpsr();
B
bellard 已提交
2167 2168
                            save_state(dc);
                            gen_op_next_insn();
B
blueswir1 已提交
2169 2170 2171
                            gen_op_movl_T0_0();
                            gen_op_exit_tb();
                            dc->is_br = 1;
B
bellard 已提交
2172
#endif
2173 2174
                        }
                        break;
2175
                    case 0x32: /* wrwim, V9 wrpr */
2176
                        {
B
blueswir1 已提交
2177 2178
                            if (!supervisor(dc))
                                goto priv_insn;
2179
                            gen_op_xor_T1_T0();
B
bellard 已提交
2180
#ifdef TARGET_SPARC64
B
blueswir1 已提交
2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201
                            switch (rd) {
                            case 0: // tpc
                                gen_op_wrtpc();
                                break;
                            case 1: // tnpc
                                gen_op_wrtnpc();
                                break;
                            case 2: // tstate
                                gen_op_wrtstate();
                                break;
                            case 3: // tt
                                gen_op_wrtt();
                                break;
                            case 4: // tick
                                gen_op_wrtick();
                                break;
                            case 5: // tba
                                gen_op_movtl_env_T0(offsetof(CPUSPARCState, tbr));
                                break;
                            case 6: // pstate
                                gen_op_wrpstate();
P
pbrook 已提交
2202 2203 2204 2205 2206
                                save_state(dc);
                                gen_op_next_insn();
                                gen_op_movl_T0_0();
                                gen_op_exit_tb();
                                dc->is_br = 1;
B
blueswir1 已提交
2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231
                                break;
                            case 7: // tl
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, tl));
                                break;
                            case 8: // pil
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, psrpil));
                                break;
                            case 9: // cwp
                                gen_op_wrcwp();
                                break;
                            case 10: // cansave
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, cansave));
                                break;
                            case 11: // canrestore
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, canrestore));
                                break;
                            case 12: // cleanwin
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, cleanwin));
                                break;
                            case 13: // otherwin
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, otherwin));
                                break;
                            case 14: // wstate
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, wstate));
                                break;
B
blueswir1 已提交
2232 2233 2234 2235 2236 2237 2238 2239
                            case 16: // UA2005 gl
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, gl));
                                break;
                            case 26: // UA2005 strand status
                                if (!hypervisor(dc))
                                    goto priv_insn;
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, ssr));
                                break;
B
blueswir1 已提交
2240 2241 2242
                            default:
                                goto illegal_insn;
                            }
B
bellard 已提交
2243
#else
B
blueswir1 已提交
2244
                            gen_op_wrwim();
B
bellard 已提交
2245
#endif
2246 2247
                        }
                        break;
B
blueswir1 已提交
2248
                    case 0x33: /* wrtbr, UA2005 wrhpr */
2249
                        {
B
blueswir1 已提交
2250
#ifndef TARGET_SPARC64
B
blueswir1 已提交
2251 2252
                            if (!supervisor(dc))
                                goto priv_insn;
2253
                            gen_op_xor_T1_T0();
B
blueswir1 已提交
2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277
                            gen_op_movtl_env_T0(offsetof(CPUSPARCState, tbr));
#else
                            if (!hypervisor(dc))
                                goto priv_insn;
                            gen_op_xor_T1_T0();
                            switch (rd) {
                            case 0: // hpstate
                                // XXX gen_op_wrhpstate();
                                save_state(dc);
                                gen_op_next_insn();
                                gen_op_movl_T0_0();
                                gen_op_exit_tb();
                                dc->is_br = 1;
                                break;
                            case 1: // htstate
                                // XXX gen_op_wrhtstate();
                                break;
                            case 3: // hintp
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, hintp));
                                break;
                            case 5: // htba
                                gen_op_movl_env_T0(offsetof(CPUSPARCState, htba));
                                break;
                            case 31: // hstick_cmpr
2278 2279
                                gen_op_movtl_env_T0(offsetof(CPUSPARCState, hstick_cmpr));
                                gen_op_wrhstick_cmpr();
B
blueswir1 已提交
2280 2281 2282 2283 2284 2285
                                break;
                            case 6: // hver readonly
                            default:
                                goto illegal_insn;
                            }
#endif
2286 2287 2288
                        }
                        break;
#endif
B
bellard 已提交
2289
#ifdef TARGET_SPARC64
B
blueswir1 已提交
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
                    case 0x2c: /* V9 movcc */
                        {
                            int cc = GET_FIELD_SP(insn, 11, 12);
                            int cond = GET_FIELD_SP(insn, 14, 17);
                            if (IS_IMM) {       /* immediate */
                                rs2 = GET_FIELD_SPs(insn, 0, 10);
                                gen_movl_simm_T1(rs2);
                            }
                            else {
                                rs2 = GET_FIELD_SP(insn, 0, 4);
                                gen_movl_reg_T1(rs2);
                            }
                            gen_movl_reg_T0(rd);
                            flush_T2(dc);
                            if (insn & (1 << 18)) {
                                if (cc == 0)
                                    gen_cond[0][cond]();
                                else if (cc == 2)
                                    gen_cond[1][cond]();
                                else
                                    goto illegal_insn;
                            } else {
                                gen_fcond[cc][cond]();
                            }
                            gen_op_mov_cc();
                            gen_movl_T0_reg(rd);
                            break;
                        }
                    case 0x2d: /* V9 sdivx */
B
bellard 已提交
2319
                        gen_op_sdivx_T1_T0();
B
blueswir1 已提交
2320 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 2359 2360
                        gen_movl_T0_reg(rd);
                        break;
                    case 0x2e: /* V9 popc */
                        {
                            if (IS_IMM) {       /* immediate */
                                rs2 = GET_FIELD_SPs(insn, 0, 12);
                                gen_movl_simm_T1(rs2);
                                // XXX optimize: popc(constant)
                            }
                            else {
                                rs2 = GET_FIELD_SP(insn, 0, 4);
                                gen_movl_reg_T1(rs2);
                            }
                            gen_op_popc();
                            gen_movl_T0_reg(rd);
                        }
                    case 0x2f: /* V9 movr */
                        {
                            int cond = GET_FIELD_SP(insn, 10, 12);
                            rs1 = GET_FIELD(insn, 13, 17);
                            flush_T2(dc);
                            gen_movl_reg_T0(rs1);
                            gen_cond_reg(cond);
                            if (IS_IMM) {       /* immediate */
                                rs2 = GET_FIELD_SPs(insn, 0, 9);
                                gen_movl_simm_T1(rs2);
                            }
                            else {
                                rs2 = GET_FIELD_SP(insn, 0, 4);
                                gen_movl_reg_T1(rs2);
                            }
                            gen_movl_reg_T0(rd);
                            gen_op_mov_cc();
                            gen_movl_T0_reg(rd);
                            break;
                        }
#endif
                    default:
                        goto illegal_insn;
                    }
                }
2361 2362 2363 2364 2365
            } else if (xop == 0x36) { /* UltraSparc shutdown, VIS, V8 CPop1 */
#ifdef TARGET_SPARC64
                int opf = GET_FIELD_SP(insn, 5, 13);
                rs1 = GET_FIELD(insn, 13, 17);
                rs2 = GET_FIELD(insn, 27, 31);
B
blueswir1 已提交
2366 2367
                if (gen_trap_ifnofpu(dc))
                    goto jmp_insn;
2368 2369

                switch (opf) {
B
blueswir1 已提交
2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
                case 0x000: /* VIS I edge8cc */
                case 0x001: /* VIS II edge8n */
                case 0x002: /* VIS I edge8lcc */
                case 0x003: /* VIS II edge8ln */
                case 0x004: /* VIS I edge16cc */
                case 0x005: /* VIS II edge16n */
                case 0x006: /* VIS I edge16lcc */
                case 0x007: /* VIS II edge16ln */
                case 0x008: /* VIS I edge32cc */
                case 0x009: /* VIS II edge32n */
                case 0x00a: /* VIS I edge32lcc */
                case 0x00b: /* VIS II edge32ln */
                    // XXX
                    goto illegal_insn;
                case 0x010: /* VIS I array8 */
                    gen_movl_reg_T0(rs1);
                    gen_movl_reg_T1(rs2);
                    gen_op_array8();
                    gen_movl_T0_reg(rd);
                    break;
                case 0x012: /* VIS I array16 */
                    gen_movl_reg_T0(rs1);
                    gen_movl_reg_T1(rs2);
                    gen_op_array16();
                    gen_movl_T0_reg(rd);
                    break;
                case 0x014: /* VIS I array32 */
                    gen_movl_reg_T0(rs1);
                    gen_movl_reg_T1(rs2);
                    gen_op_array32();
                    gen_movl_T0_reg(rd);
                    break;
2402 2403 2404 2405 2406 2407
                case 0x018: /* VIS I alignaddr */
                    gen_movl_reg_T0(rs1);
                    gen_movl_reg_T1(rs2);
                    gen_op_alignaddr();
                    gen_movl_T0_reg(rd);
                    break;
B
blueswir1 已提交
2408
                case 0x019: /* VIS II bmask */
2409 2410
                case 0x01a: /* VIS I alignaddrl */
                    // XXX
B
blueswir1 已提交
2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
                    goto illegal_insn;
                case 0x020: /* VIS I fcmple16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmple16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x022: /* VIS I fcmpne16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmpne16();
                    gen_op_store_DT0_fpr(rd);
2423
                    break;
B
blueswir1 已提交
2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507
                case 0x024: /* VIS I fcmple32 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmple32();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x026: /* VIS I fcmpne32 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmpne32();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x028: /* VIS I fcmpgt16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmpgt16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x02a: /* VIS I fcmpeq16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmpeq16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x02c: /* VIS I fcmpgt32 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmpgt32();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x02e: /* VIS I fcmpeq32 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fcmpeq32();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x031: /* VIS I fmul8x16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmul8x16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x033: /* VIS I fmul8x16au */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmul8x16au();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x035: /* VIS I fmul8x16al */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmul8x16al();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x036: /* VIS I fmul8sux16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmul8sux16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x037: /* VIS I fmul8ulx16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmul8ulx16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x038: /* VIS I fmuld8sux16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmuld8sux16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x039: /* VIS I fmuld8ulx16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fmuld8ulx16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x03a: /* VIS I fpack32 */
                case 0x03b: /* VIS I fpack16 */
                case 0x03d: /* VIS I fpackfix */
                case 0x03e: /* VIS I pdist */
                    // XXX
                    goto illegal_insn;
2508 2509 2510 2511 2512 2513
                case 0x048: /* VIS I faligndata */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_faligndata();
                    gen_op_store_DT0_fpr(rd);
                    break;
B
blueswir1 已提交
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576
                case 0x04b: /* VIS I fpmerge */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fpmerge();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x04c: /* VIS II bshuffle */
                    // XXX
                    goto illegal_insn;
                case 0x04d: /* VIS I fexpand */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fexpand();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x050: /* VIS I fpadd16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fpadd16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x051: /* VIS I fpadd16s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fpadd16s();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x052: /* VIS I fpadd32 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fpadd32();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x053: /* VIS I fpadd32s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fpadd32s();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x054: /* VIS I fpsub16 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fpsub16();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x055: /* VIS I fpsub16s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fpsub16s();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x056: /* VIS I fpsub32 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fpadd32();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x057: /* VIS I fpsub32s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fpsub32s();
                    gen_op_store_FT0_fpr(rd);
                    break;
2577 2578 2579 2580 2581 2582 2583 2584
                case 0x060: /* VIS I fzero */
                    gen_op_movl_DT0_0();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x061: /* VIS I fzeros */
                    gen_op_movl_FT0_0();
                    gen_op_store_FT0_fpr(rd);
                    break;
B
blueswir1 已提交
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688
                case 0x062: /* VIS I fnor */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fnor();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x063: /* VIS I fnors */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fnors();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x064: /* VIS I fandnot2 */
                    gen_op_load_fpr_DT1(rs1);
                    gen_op_load_fpr_DT0(rs2);
                    gen_op_fandnot();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x065: /* VIS I fandnot2s */
                    gen_op_load_fpr_FT1(rs1);
                    gen_op_load_fpr_FT0(rs2);
                    gen_op_fandnots();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x066: /* VIS I fnot2 */
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fnot();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x067: /* VIS I fnot2s */
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fnot();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x068: /* VIS I fandnot1 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fandnot();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x069: /* VIS I fandnot1s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fandnots();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x06a: /* VIS I fnot1 */
                    gen_op_load_fpr_DT1(rs1);
                    gen_op_fnot();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x06b: /* VIS I fnot1s */
                    gen_op_load_fpr_FT1(rs1);
                    gen_op_fnot();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x06c: /* VIS I fxor */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fxor();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x06d: /* VIS I fxors */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fxors();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x06e: /* VIS I fnand */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fnand();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x06f: /* VIS I fnands */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fnands();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x070: /* VIS I fand */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fand();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x071: /* VIS I fands */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fands();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x072: /* VIS I fxnor */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fxnor();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x073: /* VIS I fxnors */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fxnors();
                    gen_op_store_FT0_fpr(rd);
                    break;
2689 2690 2691 2692 2693 2694 2695 2696
                case 0x074: /* VIS I fsrc1 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x075: /* VIS I fsrc1s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_store_FT0_fpr(rd);
                    break;
B
blueswir1 已提交
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708
                case 0x076: /* VIS I fornot2 */
                    gen_op_load_fpr_DT1(rs1);
                    gen_op_load_fpr_DT0(rs2);
                    gen_op_fornot();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x077: /* VIS I fornot2s */
                    gen_op_load_fpr_FT1(rs1);
                    gen_op_load_fpr_FT0(rs2);
                    gen_op_fornots();
                    gen_op_store_FT0_fpr(rd);
                    break;
2709 2710 2711 2712 2713 2714 2715 2716
                case 0x078: /* VIS I fsrc2 */
                    gen_op_load_fpr_DT0(rs2);
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x079: /* VIS I fsrc2s */
                    gen_op_load_fpr_FT0(rs2);
                    gen_op_store_FT0_fpr(rd);
                    break;
B
blueswir1 已提交
2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
                case 0x07a: /* VIS I fornot1 */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_fornot();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x07b: /* VIS I fornot1s */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fornots();
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x07c: /* VIS I for */
                    gen_op_load_fpr_DT0(rs1);
                    gen_op_load_fpr_DT1(rs2);
                    gen_op_for();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x07d: /* VIS I fors */
                    gen_op_load_fpr_FT0(rs1);
                    gen_op_load_fpr_FT1(rs2);
                    gen_op_fors();
                    gen_op_store_FT0_fpr(rd);
                    break;
2741 2742 2743 2744 2745 2746 2747 2748
                case 0x07e: /* VIS I fone */
                    gen_op_movl_DT0_1();
                    gen_op_store_DT0_fpr(rd);
                    break;
                case 0x07f: /* VIS I fones */
                    gen_op_movl_FT0_1();
                    gen_op_store_FT0_fpr(rd);
                    break;
B
blueswir1 已提交
2749 2750 2751 2752
                case 0x080: /* VIS I shutdown */
                case 0x081: /* VIS II siam */
                    // XXX
                    goto illegal_insn;
2753 2754 2755 2756
                default:
                    goto illegal_insn;
                }
#else
B
blueswir1 已提交
2757
                goto ncp_insn;
2758 2759
#endif
            } else if (xop == 0x37) { /* V8 CPop2, V9 impdep2 */
2760
#ifdef TARGET_SPARC64
B
blueswir1 已提交
2761
                goto illegal_insn;
2762
#else
B
blueswir1 已提交
2763
                goto ncp_insn;
2764
#endif
B
bellard 已提交
2765
#ifdef TARGET_SPARC64
B
blueswir1 已提交
2766
            } else if (xop == 0x39) { /* V9 return */
B
bellard 已提交
2767
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
2768
                save_state(dc);
B
blueswir1 已提交
2769 2770 2771
                gen_movl_reg_T0(rs1);
                if (IS_IMM) {   /* immediate */
                    rs2 = GET_FIELDs(insn, 19, 31);
B
bellard 已提交
2772
#if defined(OPTIM)
B
blueswir1 已提交
2773
                    if (rs2) {
B
bellard 已提交
2774
#endif
B
blueswir1 已提交
2775 2776
                        gen_movl_simm_T1(rs2);
                        gen_op_add_T1_T0();
B
bellard 已提交
2777
#if defined(OPTIM)
B
blueswir1 已提交
2778
                    }
B
bellard 已提交
2779
#endif
B
blueswir1 已提交
2780
                } else {                /* register */
B
bellard 已提交
2781 2782
                    rs2 = GET_FIELD(insn, 27, 31);
#if defined(OPTIM)
B
blueswir1 已提交
2783
                    if (rs2) {
B
bellard 已提交
2784
#endif
B
blueswir1 已提交
2785 2786
                        gen_movl_reg_T1(rs2);
                        gen_op_add_T1_T0();
B
bellard 已提交
2787
#if defined(OPTIM)
B
blueswir1 已提交
2788
                    }
B
bellard 已提交
2789 2790
#endif
                }
B
blueswir1 已提交
2791 2792
                gen_op_restore();
                gen_mov_pc_npc(dc);
B
blueswir1 已提交
2793
                gen_op_check_align_T0_3();
B
blueswir1 已提交
2794 2795 2796
                gen_op_movl_npc_T0();
                dc->npc = DYNAMIC_PC;
                goto jmp_insn;
B
bellard 已提交
2797
#endif
B
blueswir1 已提交
2798
            } else {
B
bellard 已提交
2799
                rs1 = GET_FIELD(insn, 13, 17);
B
blueswir1 已提交
2800 2801 2802
                gen_movl_reg_T0(rs1);
                if (IS_IMM) {   /* immediate */
                    rs2 = GET_FIELDs(insn, 19, 31);
B
bellard 已提交
2803
#if defined(OPTIM)
B
blueswir1 已提交
2804
                    if (rs2) {
2805
#endif
B
blueswir1 已提交
2806 2807
                        gen_movl_simm_T1(rs2);
                        gen_op_add_T1_T0();
B
bellard 已提交
2808
#if defined(OPTIM)
B
blueswir1 已提交
2809
                    }
2810
#endif
B
blueswir1 已提交
2811
                } else {                /* register */
B
bellard 已提交
2812 2813
                    rs2 = GET_FIELD(insn, 27, 31);
#if defined(OPTIM)
B
blueswir1 已提交
2814
                    if (rs2) {
B
bellard 已提交
2815
#endif
B
blueswir1 已提交
2816 2817
                        gen_movl_reg_T1(rs2);
                        gen_op_add_T1_T0();
B
bellard 已提交
2818
#if defined(OPTIM)
B
blueswir1 已提交
2819
                    }
2820
#endif
2821
                }
B
blueswir1 已提交
2822 2823 2824 2825
                switch (xop) {
                case 0x38:      /* jmpl */
                    {
                        if (rd != 0) {
P
pbrook 已提交
2826 2827 2828 2829 2830 2831 2832
#ifdef TARGET_SPARC64
                            if (dc->pc == (uint32_t)dc->pc) {
                                gen_op_movl_T1_im(dc->pc);
                            } else {
                                gen_op_movq_T1_im64(dc->pc >> 32, dc->pc);
                            }
#else
B
blueswir1 已提交
2833
                            gen_op_movl_T1_im(dc->pc);
P
pbrook 已提交
2834
#endif
B
blueswir1 已提交
2835 2836
                            gen_movl_T1_reg(rd);
                        }
B
bellard 已提交
2837
                        gen_mov_pc_npc(dc);
B
blueswir1 已提交
2838
                        gen_op_check_align_T0_3();
B
blueswir1 已提交
2839 2840 2841 2842
                        gen_op_movl_npc_T0();
                        dc->npc = DYNAMIC_PC;
                    }
                    goto jmp_insn;
B
bellard 已提交
2843
#if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
B
blueswir1 已提交
2844 2845 2846 2847
                case 0x39:      /* rett, V9 return */
                    {
                        if (!supervisor(dc))
                            goto priv_insn;
B
bellard 已提交
2848
                        gen_mov_pc_npc(dc);
B
blueswir1 已提交
2849
                        gen_op_check_align_T0_3();
B
blueswir1 已提交
2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868
                        gen_op_movl_npc_T0();
                        dc->npc = DYNAMIC_PC;
                        gen_op_rett();
                    }
                    goto jmp_insn;
#endif
                case 0x3b: /* flush */
                    gen_op_flush_T0();
                    break;
                case 0x3c:      /* save */
                    save_state(dc);
                    gen_op_save();
                    gen_movl_T0_reg(rd);
                    break;
                case 0x3d:      /* restore */
                    save_state(dc);
                    gen_op_restore();
                    gen_movl_T0_reg(rd);
                    break;
B
bellard 已提交
2869
#if !defined(CONFIG_USER_ONLY) && defined(TARGET_SPARC64)
B
blueswir1 已提交
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895
                case 0x3e:      /* V9 done/retry */
                    {
                        switch (rd) {
                        case 0:
                            if (!supervisor(dc))
                                goto priv_insn;
                            dc->npc = DYNAMIC_PC;
                            dc->pc = DYNAMIC_PC;
                            gen_op_done();
                            goto jmp_insn;
                        case 1:
                            if (!supervisor(dc))
                                goto priv_insn;
                            dc->npc = DYNAMIC_PC;
                            dc->pc = DYNAMIC_PC;
                            gen_op_retry();
                            goto jmp_insn;
                        default:
                            goto illegal_insn;
                        }
                    }
                    break;
#endif
                default:
                    goto illegal_insn;
                }
2896
            }
B
blueswir1 已提交
2897 2898 2899 2900 2901 2902 2903
            break;
        }
        break;
    case 3:                     /* load/store instructions */
        {
            unsigned int xop = GET_FIELD(insn, 7, 12);
            rs1 = GET_FIELD(insn, 13, 17);
2904
            save_state(dc);
B
blueswir1 已提交
2905
            gen_movl_reg_T0(rs1);
2906 2907 2908 2909 2910 2911
            if (xop == 0x3c || xop == 0x3e)
            {
                rs2 = GET_FIELD(insn, 27, 31);
                gen_movl_reg_T1(rs2);
            }
            else if (IS_IMM) {       /* immediate */
B
blueswir1 已提交
2912
                rs2 = GET_FIELDs(insn, 19, 31);
B
bellard 已提交
2913
#if defined(OPTIM)
B
blueswir1 已提交
2914
                if (rs2 != 0) {
B
bellard 已提交
2915
#endif
B
blueswir1 已提交
2916 2917
                    gen_movl_simm_T1(rs2);
                    gen_op_add_T1_T0();
B
bellard 已提交
2918
#if defined(OPTIM)
B
blueswir1 已提交
2919
                }
B
bellard 已提交
2920
#endif
B
blueswir1 已提交
2921 2922
            } else {            /* register */
                rs2 = GET_FIELD(insn, 27, 31);
B
bellard 已提交
2923
#if defined(OPTIM)
B
blueswir1 已提交
2924
                if (rs2 != 0) {
B
bellard 已提交
2925
#endif
B
blueswir1 已提交
2926 2927
                    gen_movl_reg_T1(rs2);
                    gen_op_add_T1_T0();
B
bellard 已提交
2928
#if defined(OPTIM)
B
blueswir1 已提交
2929
                }
B
bellard 已提交
2930
#endif
B
blueswir1 已提交
2931
            }
B
blueswir1 已提交
2932 2933 2934
            if (xop < 4 || (xop > 7 && xop < 0x14 && xop != 0x0e) ||
                (xop > 0x17 && xop <= 0x1d ) ||
                (xop > 0x2c && xop <= 0x33) || xop == 0x1f || xop == 0x3d) {
B
blueswir1 已提交
2935 2936
                switch (xop) {
                case 0x0:       /* load word */
B
blueswir1 已提交
2937 2938 2939
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
2940
#ifndef TARGET_SPARC64
B
blueswir1 已提交
2941
                    gen_op_ldst(ld);
2942 2943 2944
#else
                    gen_op_ldst(lduw);
#endif
B
blueswir1 已提交
2945 2946 2947 2948 2949
                    break;
                case 0x1:       /* load unsigned byte */
                    gen_op_ldst(ldub);
                    break;
                case 0x2:       /* load unsigned halfword */
B
blueswir1 已提交
2950 2951 2952
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_1();
#endif
B
blueswir1 已提交
2953 2954 2955
                    gen_op_ldst(lduh);
                    break;
                case 0x3:       /* load double word */
B
blueswir1 已提交
2956
                    gen_op_check_align_T0_7();
B
blueswir1 已提交
2957
                    if (rd & 1)
2958
                        goto illegal_insn;
B
blueswir1 已提交
2959 2960 2961 2962 2963 2964 2965
                    gen_op_ldst(ldd);
                    gen_movl_T0_reg(rd + 1);
                    break;
                case 0x9:       /* load signed byte */
                    gen_op_ldst(ldsb);
                    break;
                case 0xa:       /* load signed halfword */
B
blueswir1 已提交
2966 2967 2968
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_1();
#endif
B
blueswir1 已提交
2969 2970 2971 2972 2973 2974
                    gen_op_ldst(ldsh);
                    break;
                case 0xd:       /* ldstub -- XXX: should be atomically */
                    gen_op_ldst(ldstub);
                    break;
                case 0x0f:      /* swap register with memory. Also atomically */
B
blueswir1 已提交
2975 2976 2977
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
B
blueswir1 已提交
2978 2979 2980
                    gen_movl_reg_T1(rd);
                    gen_op_ldst(swap);
                    break;
B
bellard 已提交
2981
#if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
B
blueswir1 已提交
2982
                case 0x10:      /* load word alternate */
B
bellard 已提交
2983
#ifndef TARGET_SPARC64
B
blueswir1 已提交
2984 2985 2986 2987
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
2988
#elif CONFIG_USER_ONLY
B
blueswir1 已提交
2989 2990
                    gen_op_check_align_T0_3();
#endif
2991
                    gen_ld_asi(insn, 4, 0);
B
blueswir1 已提交
2992 2993
                    break;
                case 0x11:      /* load unsigned byte alternate */
B
bellard 已提交
2994
#ifndef TARGET_SPARC64
B
blueswir1 已提交
2995 2996 2997 2998 2999
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
#endif
3000
                    gen_ld_asi(insn, 1, 0);
B
blueswir1 已提交
3001 3002
                    break;
                case 0x12:      /* load unsigned halfword alternate */
B
bellard 已提交
3003
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3004 3005 3006 3007
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
3008
#elif CONFIG_USER_ONLY
B
blueswir1 已提交
3009
                    gen_op_check_align_T0_1();
B
bellard 已提交
3010
#endif
3011
                    gen_ld_asi(insn, 2, 0);
B
blueswir1 已提交
3012 3013
                    break;
                case 0x13:      /* load double word alternate */
B
bellard 已提交
3014
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3015 3016 3017 3018
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
B
bellard 已提交
3019
#endif
B
blueswir1 已提交
3020
                    if (rd & 1)
3021
                        goto illegal_insn;
B
blueswir1 已提交
3022
                    gen_op_check_align_T0_7();
3023
                    gen_ldda_asi(insn);
B
blueswir1 已提交
3024 3025 3026
                    gen_movl_T0_reg(rd + 1);
                    break;
                case 0x19:      /* load signed byte alternate */
B
bellard 已提交
3027
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3028 3029 3030 3031 3032
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
#endif
3033
                    gen_ld_asi(insn, 1, 1);
B
blueswir1 已提交
3034 3035
                    break;
                case 0x1a:      /* load signed halfword alternate */
B
bellard 已提交
3036
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3037 3038 3039 3040
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
3041
#elif CONFIG_USER_ONLY
B
blueswir1 已提交
3042
                    gen_op_check_align_T0_1();
B
bellard 已提交
3043
#endif
3044
                    gen_ld_asi(insn, 2, 1);
B
blueswir1 已提交
3045 3046
                    break;
                case 0x1d:      /* ldstuba -- XXX: should be atomically */
B
bellard 已提交
3047
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3048 3049 3050 3051 3052
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
#endif
3053
                    gen_ldstub_asi(insn);
B
blueswir1 已提交
3054 3055
                    break;
                case 0x1f:      /* swap reg with alt. memory. Also atomically */
B
bellard 已提交
3056
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3057 3058 3059 3060
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
3061
#elif CONFIG_USER_ONLY
B
blueswir1 已提交
3062 3063
                    gen_op_check_align_T0_3();
#endif
3064 3065
                    gen_movl_reg_T1(rd);
                    gen_swap_asi(insn);
B
blueswir1 已提交
3066
                    break;
B
bellard 已提交
3067 3068

#ifndef TARGET_SPARC64
B
blueswir1 已提交
3069 3070 3071 3072
                case 0x30: /* ldc */
                case 0x31: /* ldcsr */
                case 0x33: /* lddc */
                    goto ncp_insn;
B
bellard 已提交
3073 3074 3075
#endif
#endif
#ifdef TARGET_SPARC64
B
blueswir1 已提交
3076
                case 0x08: /* V9 ldsw */
B
blueswir1 已提交
3077 3078 3079
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
B
blueswir1 已提交
3080 3081 3082
                    gen_op_ldst(ldsw);
                    break;
                case 0x0b: /* V9 ldx */
B
blueswir1 已提交
3083
                    gen_op_check_align_T0_7();
B
blueswir1 已提交
3084 3085 3086
                    gen_op_ldst(ldx);
                    break;
                case 0x18: /* V9 ldswa */
B
blueswir1 已提交
3087 3088 3089
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
3090
                    gen_ld_asi(insn, 4, 1);
B
blueswir1 已提交
3091 3092
                    break;
                case 0x1b: /* V9 ldxa */
B
blueswir1 已提交
3093
                    gen_op_check_align_T0_7();
3094
                    gen_ld_asi(insn, 8, 0);
B
blueswir1 已提交
3095 3096 3097 3098
                    break;
                case 0x2d: /* V9 prefetch, no effect */
                    goto skip_move;
                case 0x30: /* V9 ldfa */
B
blueswir1 已提交
3099 3100 3101
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
3102
                    gen_ldf_asi(insn, 4);
3103
                    goto skip_move;
B
blueswir1 已提交
3104
                case 0x33: /* V9 lddfa */
3105 3106
                    gen_op_check_align_T0_3();
                    gen_ldf_asi(insn, 8);
3107
                    goto skip_move;
B
blueswir1 已提交
3108 3109 3110 3111 3112 3113 3114 3115 3116
                case 0x3d: /* V9 prefetcha, no effect */
                    goto skip_move;
                case 0x32: /* V9 ldqfa */
                    goto nfpu_insn;
#endif
                default:
                    goto illegal_insn;
                }
                gen_movl_T1_reg(rd);
B
bellard 已提交
3117
#ifdef TARGET_SPARC64
B
blueswir1 已提交
3118
            skip_move: ;
B
bellard 已提交
3119
#endif
B
blueswir1 已提交
3120
            } else if (xop >= 0x20 && xop < 0x24) {
B
bellard 已提交
3121 3122
                if (gen_trap_ifnofpu(dc))
                    goto jmp_insn;
B
blueswir1 已提交
3123 3124
                switch (xop) {
                case 0x20:      /* load fpreg */
B
blueswir1 已提交
3125 3126 3127
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
B
blueswir1 已提交
3128 3129 3130 3131
                    gen_op_ldst(ldf);
                    gen_op_store_FT0_fpr(rd);
                    break;
                case 0x21:      /* load fsr */
B
blueswir1 已提交
3132 3133 3134
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
B
blueswir1 已提交
3135 3136 3137 3138 3139 3140
                    gen_op_ldst(ldf);
                    gen_op_ldfsr();
                    break;
                case 0x22:      /* load quad fpreg */
                    goto nfpu_insn;
                case 0x23:      /* load double fpreg */
B
blueswir1 已提交
3141
                    gen_op_check_align_T0_7();
B
blueswir1 已提交
3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
                    gen_op_ldst(lddf);
                    gen_op_store_DT0_fpr(DFPREG(rd));
                    break;
                default:
                    goto illegal_insn;
                }
            } else if (xop < 8 || (xop >= 0x14 && xop < 0x18) || \
                       xop == 0xe || xop == 0x1e) {
                gen_movl_reg_T1(rd);
                switch (xop) {
                case 0x4:
B
blueswir1 已提交
3153 3154 3155
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
B
blueswir1 已提交
3156 3157 3158 3159 3160 3161
                    gen_op_ldst(st);
                    break;
                case 0x5:
                    gen_op_ldst(stb);
                    break;
                case 0x6:
B
blueswir1 已提交
3162 3163 3164
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_1();
#endif
B
blueswir1 已提交
3165 3166 3167 3168
                    gen_op_ldst(sth);
                    break;
                case 0x7:
                    if (rd & 1)
3169
                        goto illegal_insn;
B
blueswir1 已提交
3170
                    gen_op_check_align_T0_7();
B
bellard 已提交
3171
                    flush_T2(dc);
B
blueswir1 已提交
3172 3173 3174
                    gen_movl_reg_T2(rd + 1);
                    gen_op_ldst(std);
                    break;
B
bellard 已提交
3175
#if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
B
blueswir1 已提交
3176
                case 0x14:
B
bellard 已提交
3177
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3178 3179 3180 3181
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
B
blueswir1 已提交
3182 3183 3184
#endif
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
B
bellard 已提交
3185
#endif
3186
                    gen_st_asi(insn, 4);
B
bellard 已提交
3187
                    break;
B
blueswir1 已提交
3188
                case 0x15:
B
bellard 已提交
3189
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3190 3191 3192 3193
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
B
bellard 已提交
3194
#endif
3195
                    gen_st_asi(insn, 1);
B
bellard 已提交
3196
                    break;
B
blueswir1 已提交
3197
                case 0x16:
B
bellard 已提交
3198
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3199 3200 3201 3202
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
B
blueswir1 已提交
3203 3204 3205
#endif
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_1();
B
bellard 已提交
3206
#endif
3207
                    gen_st_asi(insn, 2);
B
bellard 已提交
3208
                    break;
B
blueswir1 已提交
3209
                case 0x17:
B
bellard 已提交
3210
#ifndef TARGET_SPARC64
B
blueswir1 已提交
3211 3212 3213 3214
                    if (IS_IMM)
                        goto illegal_insn;
                    if (!supervisor(dc))
                        goto priv_insn;
B
bellard 已提交
3215
#endif
B
blueswir1 已提交
3216
                    if (rd & 1)
3217
                        goto illegal_insn;
B
blueswir1 已提交
3218
                    gen_op_check_align_T0_7();
3219
                    flush_T2(dc);
B
blueswir1 已提交
3220
                    gen_movl_reg_T2(rd + 1);
3221
                    gen_stda_asi(insn);
B
bellard 已提交
3222
                    break;
B
bellard 已提交
3223
#endif
B
bellard 已提交
3224
#ifdef TARGET_SPARC64
B
blueswir1 已提交
3225
                case 0x0e: /* V9 stx */
B
blueswir1 已提交
3226
                    gen_op_check_align_T0_7();
B
blueswir1 已提交
3227 3228 3229
                    gen_op_ldst(stx);
                    break;
                case 0x1e: /* V9 stxa */
B
blueswir1 已提交
3230
                    gen_op_check_align_T0_7();
3231
                    gen_st_asi(insn, 8);
B
blueswir1 已提交
3232
                    break;
B
bellard 已提交
3233
#endif
B
blueswir1 已提交
3234 3235 3236 3237
                default:
                    goto illegal_insn;
                }
            } else if (xop > 0x23 && xop < 0x28) {
B
bellard 已提交
3238 3239
                if (gen_trap_ifnofpu(dc))
                    goto jmp_insn;
B
blueswir1 已提交
3240 3241
                switch (xop) {
                case 0x24:
B
blueswir1 已提交
3242 3243 3244
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
3245
                    gen_op_load_fpr_FT0(rd);
B
blueswir1 已提交
3246 3247 3248
                    gen_op_ldst(stf);
                    break;
                case 0x25: /* stfsr, V9 stxfsr */
B
blueswir1 已提交
3249 3250 3251
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
B
blueswir1 已提交
3252 3253 3254
                    gen_op_stfsr();
                    gen_op_ldst(stf);
                    break;
B
blueswir1 已提交
3255
#if !defined(CONFIG_USER_ONLY)
B
blueswir1 已提交
3256 3257 3258 3259 3260 3261 3262 3263
                case 0x26: /* stdfq */
                    if (!supervisor(dc))
                        goto priv_insn;
                    if (gen_trap_ifnofpu(dc))
                        goto jmp_insn;
                    goto nfq_insn;
#endif
                case 0x27:
B
blueswir1 已提交
3264
                    gen_op_check_align_T0_7();
B
bellard 已提交
3265
                    gen_op_load_fpr_DT0(DFPREG(rd));
B
blueswir1 已提交
3266 3267 3268 3269 3270 3271 3272
                    gen_op_ldst(stdf);
                    break;
                default:
                    goto illegal_insn;
                }
            } else if (xop > 0x33 && xop < 0x3f) {
                switch (xop) {
3273
#ifdef TARGET_SPARC64
B
blueswir1 已提交
3274
                case 0x34: /* V9 stfa */
B
blueswir1 已提交
3275 3276 3277
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
3278 3279
                    gen_op_load_fpr_FT0(rd);
                    gen_stf_asi(insn, 4);
B
blueswir1 已提交
3280 3281
                    break;
                case 0x37: /* V9 stdfa */
3282 3283 3284
                    gen_op_check_align_T0_3();
                    gen_op_load_fpr_DT0(DFPREG(rd));
                    gen_stf_asi(insn, 8);
B
blueswir1 已提交
3285 3286
                    break;
                case 0x3c: /* V9 casa */
B
blueswir1 已提交
3287 3288 3289
#ifdef CONFIG_USER_ONLY
                    gen_op_check_align_T0_3();
#endif
3290 3291 3292 3293
                    flush_T2(dc);
                    gen_movl_reg_T2(rd);
                    gen_cas_asi(insn);
                    gen_movl_T1_reg(rd);
B
blueswir1 已提交
3294 3295
                    break;
                case 0x3e: /* V9 casxa */
B
blueswir1 已提交
3296
                    gen_op_check_align_T0_7();
3297 3298 3299 3300
                    flush_T2(dc);
                    gen_movl_reg_T2(rd);
                    gen_casx_asi(insn);
                    gen_movl_T1_reg(rd);
B
blueswir1 已提交
3301 3302 3303
                    break;
                case 0x36: /* V9 stqfa */
                    goto nfpu_insn;
3304
#else
B
blueswir1 已提交
3305 3306 3307 3308 3309 3310 3311 3312 3313
                case 0x34: /* stc */
                case 0x35: /* stcsr */
                case 0x36: /* stdcq */
                case 0x37: /* stdc */
                    goto ncp_insn;
#endif
                default:
                    goto illegal_insn;
                }
3314
            }
B
blueswir1 已提交
3315 3316 3317 3318
            else
                goto illegal_insn;
        }
        break;
3319 3320
    }
    /* default case for non jump instructions */
B
bellard 已提交
3321
    if (dc->npc == DYNAMIC_PC) {
B
blueswir1 已提交
3322 3323
        dc->pc = DYNAMIC_PC;
        gen_op_next_insn();
B
bellard 已提交
3324 3325
    } else if (dc->npc == JUMP_PC) {
        /* we can do a static jump */
B
blueswir1 已提交
3326
        gen_branch2(dc, dc->jump_pc[0], dc->jump_pc[1]);
B
bellard 已提交
3327 3328
        dc->is_br = 1;
    } else {
B
blueswir1 已提交
3329 3330
        dc->pc = dc->npc;
        dc->npc = dc->npc + 4;
3331
    }
B
bellard 已提交
3332
 jmp_insn:
3333 3334
    return;
 illegal_insn:
B
bellard 已提交
3335
    save_state(dc);
3336 3337
    gen_op_exception(TT_ILL_INSN);
    dc->is_br = 1;
3338
    return;
B
bellard 已提交
3339
#if !defined(CONFIG_USER_ONLY)
3340 3341 3342 3343
 priv_insn:
    save_state(dc);
    gen_op_exception(TT_PRIV_INSN);
    dc->is_br = 1;
B
bellard 已提交
3344 3345 3346 3347 3348 3349
    return;
#endif
 nfpu_insn:
    save_state(dc);
    gen_op_fpexception_im(FSR_FTT_UNIMPFPOP);
    dc->is_br = 1;
3350
    return;
B
blueswir1 已提交
3351 3352 3353 3354 3355 3356 3357
#if !defined(CONFIG_USER_ONLY)
 nfq_insn:
    save_state(dc);
    gen_op_fpexception_im(FSR_FTT_SEQ_ERROR);
    dc->is_br = 1;
    return;
#endif
3358 3359 3360 3361 3362 3363 3364
#ifndef TARGET_SPARC64
 ncp_insn:
    save_state(dc);
    gen_op_exception(TT_NCP_INSN);
    dc->is_br = 1;
    return;
#endif
3365 3366
}

3367
static inline int gen_intermediate_code_internal(TranslationBlock * tb,
B
blueswir1 已提交
3368
                                                 int spc, CPUSPARCState *env)
3369
{
B
bellard 已提交
3370
    target_ulong pc_start, last_pc;
3371 3372
    uint16_t *gen_opc_end;
    DisasContext dc1, *dc = &dc1;
3373
    int j, lj = -1;
3374 3375 3376

    memset(dc, 0, sizeof(DisasContext));
    dc->tb = tb;
B
bellard 已提交
3377
    pc_start = tb->pc;
3378
    dc->pc = pc_start;
B
bellard 已提交
3379
    last_pc = dc->pc;
B
bellard 已提交
3380
    dc->npc = (target_ulong) tb->cs_base;
3381 3382
#if defined(CONFIG_USER_ONLY)
    dc->mem_idx = 0;
B
bellard 已提交
3383
    dc->fpu_enabled = 1;
3384 3385
#else
    dc->mem_idx = ((env->psrs) != 0);
B
bellard 已提交
3386 3387 3388 3389 3390
#ifdef TARGET_SPARC64
    dc->fpu_enabled = (((env->pstate & PS_PEF) != 0) && ((env->fprs & FPRS_FEF) != 0));
#else
    dc->fpu_enabled = ((env->psref) != 0);
#endif
3391
#endif
3392 3393 3394
    gen_opc_ptr = gen_opc_buf;
    gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
    gen_opparam_ptr = gen_opparam_buf;
B
bellard 已提交
3395
    nb_gen_labels = 0;
3396 3397

    do {
3398 3399 3400
        if (env->nb_breakpoints > 0) {
            for(j = 0; j < env->nb_breakpoints; j++) {
                if (env->breakpoints[j] == dc->pc) {
B
blueswir1 已提交
3401 3402
                    if (dc->pc != pc_start)
                        save_state(dc);
B
bellard 已提交
3403
                    gen_op_debug();
B
blueswir1 已提交
3404 3405 3406
                    gen_op_movl_T0_0();
                    gen_op_exit_tb();
                    dc->is_br = 1;
B
bellard 已提交
3407
                    goto exit_gen_loop;
3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423
                }
            }
        }
        if (spc) {
            if (loglevel > 0)
                fprintf(logfile, "Search PC...\n");
            j = gen_opc_ptr - gen_opc_buf;
            if (lj < j) {
                lj++;
                while (lj < j)
                    gen_opc_instr_start[lj++] = 0;
                gen_opc_pc[lj] = dc->pc;
                gen_opc_npc[lj] = dc->npc;
                gen_opc_instr_start[lj] = 1;
            }
        }
B
blueswir1 已提交
3424 3425 3426 3427 3428 3429 3430 3431
        last_pc = dc->pc;
        disas_sparc_insn(dc);

        if (dc->is_br)
            break;
        /* if the next PC is different, we abort now */
        if (dc->pc != (last_pc + 4))
            break;
B
bellard 已提交
3432 3433 3434 3435
        /* if we reach a page boundary, we stop generation so that the
           PC of a TT_TFAULT exception is always in the right page */
        if ((dc->pc & (TARGET_PAGE_SIZE - 1)) == 0)
            break;
B
bellard 已提交
3436 3437 3438
        /* if single step mode, we generate only one instruction and
           generate an exception */
        if (env->singlestep_enabled) {
B
bellard 已提交
3439
            gen_jmp_im(dc->pc);
B
bellard 已提交
3440 3441 3442 3443
            gen_op_movl_T0_0();
            gen_op_exit_tb();
            break;
        }
3444
    } while ((gen_opc_ptr < gen_opc_end) &&
B
blueswir1 已提交
3445
             (dc->pc - pc_start) < (TARGET_PAGE_SIZE - 32));
B
bellard 已提交
3446 3447

 exit_gen_loop:
B
bellard 已提交
3448
    if (!dc->is_br) {
3449
        if (dc->pc != DYNAMIC_PC &&
B
bellard 已提交
3450 3451
            (dc->npc != DYNAMIC_PC && dc->npc != JUMP_PC)) {
            /* static PC and NPC: we can use direct chaining */
B
blueswir1 已提交
3452
            gen_branch(dc, dc->pc, dc->npc);
B
bellard 已提交
3453 3454
        } else {
            if (dc->pc != DYNAMIC_PC)
B
bellard 已提交
3455
                gen_jmp_im(dc->pc);
B
bellard 已提交
3456 3457 3458 3459 3460
            save_npc(dc);
            gen_op_movl_T0_0();
            gen_op_exit_tb();
        }
    }
3461
    *gen_opc_ptr = INDEX_op_end;
3462 3463 3464 3465 3466 3467 3468 3469 3470 3471
    if (spc) {
        j = gen_opc_ptr - gen_opc_buf;
        lj++;
        while (lj <= j)
            gen_opc_instr_start[lj++] = 0;
#if 0
        if (loglevel > 0) {
            page_dump(logfile);
        }
#endif
3472 3473
        gen_opc_jump_pc[0] = dc->jump_pc[0];
        gen_opc_jump_pc[1] = dc->jump_pc[1];
3474
    } else {
B
bellard 已提交
3475
        tb->size = last_pc + 4 - pc_start;
3476
    }
3477
#ifdef DEBUG_DISAS
B
bellard 已提交
3478
    if (loglevel & CPU_LOG_TB_IN_ASM) {
B
blueswir1 已提交
3479 3480 3481 3482
        fprintf(logfile, "--------------\n");
        fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
        target_disas(logfile, pc_start, last_pc + 4 - pc_start, 0);
        fprintf(logfile, "\n");
B
bellard 已提交
3483 3484 3485 3486 3487
        if (loglevel & CPU_LOG_TB_OP) {
            fprintf(logfile, "OP:\n");
            dump_ops(gen_opc_buf, gen_opparam_buf);
            fprintf(logfile, "\n");
        }
3488
    }
3489
#endif
3490
    return 0;
3491 3492
}

3493
int gen_intermediate_code(CPUSPARCState * env, TranslationBlock * tb)
3494
{
3495
    return gen_intermediate_code_internal(tb, 0, env);
3496 3497
}

3498
int gen_intermediate_code_pc(CPUSPARCState * env, TranslationBlock * tb)
3499
{
3500
    return gen_intermediate_code_internal(tb, 1, env);
3501 3502
}

B
bellard 已提交
3503
extern int ram_size;
3504

B
bellard 已提交
3505 3506
void cpu_reset(CPUSPARCState *env)
{
B
bellard 已提交
3507
    tlb_flush(env, 1);
3508 3509 3510
    env->cwp = 0;
    env->wim = 1;
    env->regwptr = env->regbase + (env->cwp * 16);
3511
#if defined(CONFIG_USER_ONLY)
3512
    env->user_mode_only = 1;
3513
#ifdef TARGET_SPARC64
3514 3515 3516 3517
    env->cleanwin = NWINDOWS - 2;
    env->cansave = NWINDOWS - 2;
    env->pstate = PS_RMO | PS_PEF | PS_IE;
    env->asi = 0x82; // Primary no-fault
3518
#endif
3519
#else
B
blueswir1 已提交
3520
    env->psret = 0;
3521
    env->psrs = 1;
B
bellard 已提交
3522
    env->psrps = 1;
B
bellard 已提交
3523
#ifdef TARGET_SPARC64
B
bellard 已提交
3524 3525
    env->pstate = PS_PRIV;
    env->pc = 0x1fff0000000ULL;
B
bellard 已提交
3526
#else
B
blueswir1 已提交
3527
    env->pc = 0;
B
blueswir1 已提交
3528
    env->mmuregs[0] &= ~(MMU_E | MMU_NF);
B
blueswir1 已提交
3529
    env->mmuregs[0] |= MMU_BM;
B
bellard 已提交
3530
#endif
B
bellard 已提交
3531
    env->npc = env->pc + 4;
3532
#endif
B
bellard 已提交
3533 3534 3535 3536 3537 3538
}

CPUSPARCState *cpu_sparc_init(void)
{
    CPUSPARCState *env;

B
bellard 已提交
3539 3540
    env = qemu_mallocz(sizeof(CPUSPARCState));
    if (!env)
B
blueswir1 已提交
3541
        return NULL;
B
bellard 已提交
3542
    cpu_exec_init(env);
B
bellard 已提交
3543
    cpu_reset(env);
3544
    return (env);
3545 3546
}

B
blueswir1 已提交
3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562
static const sparc_def_t sparc_defs[] = {
#ifdef TARGET_SPARC64
    {
        .name = "TI UltraSparc II",
        .iu_version = ((0x17ULL << 48) | (0x11ULL << 32) | (0 << 24)
                       | (MAXTL << 8) | (NWINDOWS - 1)),
        .fpu_version = 0x00000000,
        .mmu_version = 0,
    },
#else
    {
        .name = "Fujitsu MB86904",
        .iu_version = 0x04 << 24, /* Impl 0, ver 4 */
        .fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
        .mmu_version = 0x04 << 24, /* Impl 0, ver 4 */
    },
B
blueswir1 已提交
3563
    {
B
blueswir1 已提交
3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575
        .name = "Fujitsu MB86907",
        .iu_version = 0x05 << 24, /* Impl 0, ver 5 */
        .fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
        .mmu_version = 0x05 << 24, /* Impl 0, ver 5 */
    },
    {
        .name = "TI MicroSparc I",
        .iu_version = 0x41000000,
        .fpu_version = 4 << 17,
        .mmu_version = 0x41000000,
    },
    {
B
blueswir1 已提交
3576 3577
        .name = "TI SuperSparc II",
        .iu_version = 0x40000000,
B
blueswir1 已提交
3578 3579 3580 3581 3582 3583 3584 3585
        .fpu_version = 0 << 17,
        .mmu_version = 0x04000000,
    },
    {
        .name = "Ross RT620",
        .iu_version = 0x1e000000,
        .fpu_version = 1 << 17,
        .mmu_version = 0x17000000,
B
blueswir1 已提交
3586
    },
B
blueswir1 已提交
3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625
#endif
};

int sparc_find_by_name(const unsigned char *name, const sparc_def_t **def)
{
    int ret;
    unsigned int i;

    ret = -1;
    *def = NULL;
    for (i = 0; i < sizeof(sparc_defs) / sizeof(sparc_def_t); i++) {
        if (strcasecmp(name, sparc_defs[i].name) == 0) {
            *def = &sparc_defs[i];
            ret = 0;
            break;
        }
    }

    return ret;
}

void sparc_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
{
    unsigned int i;

    for (i = 0; i < sizeof(sparc_defs) / sizeof(sparc_def_t); i++) {
        (*cpu_fprintf)(f, "Sparc %16s IU " TARGET_FMT_lx " FPU %08x MMU %08x\n",
                       sparc_defs[i].name,
                       sparc_defs[i].iu_version,
                       sparc_defs[i].fpu_version,
                       sparc_defs[i].mmu_version);
    }
}

int cpu_sparc_register (CPUSPARCState *env, const sparc_def_t *def)
{
    env->version = def->iu_version;
    env->fsr = def->fpu_version;
#if !defined(TARGET_SPARC64)
B
blueswir1 已提交
3626
    env->mmuregs[0] |= def->mmu_version;
B
blueswir1 已提交
3627 3628 3629 3630
#endif
    return 0;
}

3631 3632
#define GET_FLAG(a,b) ((env->psr & a)?b:'-')

3633
void cpu_dump_state(CPUState *env, FILE *f,
B
bellard 已提交
3634 3635
                    int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
                    int flags)
3636
{
3637 3638
    int i, x;

3639
    cpu_fprintf(f, "pc: " TARGET_FMT_lx "  npc: " TARGET_FMT_lx "\n", env->pc, env->npc);
B
bellard 已提交
3640
    cpu_fprintf(f, "General Registers:\n");
3641
    for (i = 0; i < 4; i++)
B
blueswir1 已提交
3642
        cpu_fprintf(f, "%%g%c: " TARGET_FMT_lx "\t", i + '0', env->gregs[i]);
B
bellard 已提交
3643
    cpu_fprintf(f, "\n");
3644
    for (; i < 8; i++)
B
blueswir1 已提交
3645
        cpu_fprintf(f, "%%g%c: " TARGET_FMT_lx "\t", i + '0', env->gregs[i]);
B
bellard 已提交
3646
    cpu_fprintf(f, "\nCurrent Register Window:\n");
3647
    for (x = 0; x < 3; x++) {
B
blueswir1 已提交
3648 3649 3650 3651 3652 3653 3654 3655 3656 3657
        for (i = 0; i < 4; i++)
            cpu_fprintf(f, "%%%c%d: " TARGET_FMT_lx "\t",
                    (x == 0 ? 'o' : (x == 1 ? 'l' : 'i')), i,
                    env->regwptr[i + x * 8]);
        cpu_fprintf(f, "\n");
        for (; i < 8; i++)
            cpu_fprintf(f, "%%%c%d: " TARGET_FMT_lx "\t",
                    (x == 0 ? 'o' : x == 1 ? 'l' : 'i'), i,
                    env->regwptr[i + x * 8]);
        cpu_fprintf(f, "\n");
3658
    }
B
bellard 已提交
3659
    cpu_fprintf(f, "\nFloating Point Registers:\n");
3660 3661
    for (i = 0; i < 32; i++) {
        if ((i & 3) == 0)
B
bellard 已提交
3662 3663
            cpu_fprintf(f, "%%f%02d:", i);
        cpu_fprintf(f, " %016lf", env->fpr[i]);
3664
        if ((i & 3) == 3)
B
bellard 已提交
3665
            cpu_fprintf(f, "\n");
3666
    }
P
pbrook 已提交
3667
#ifdef TARGET_SPARC64
3668
    cpu_fprintf(f, "pstate: 0x%08x ccr: 0x%02x asi: 0x%02x tl: %d fprs: %d\n",
B
blueswir1 已提交
3669
                env->pstate, GET_CCR(env), env->asi, env->tl, env->fprs);
P
pbrook 已提交
3670
    cpu_fprintf(f, "cansave: %d canrestore: %d otherwin: %d wstate %d cleanwin %d cwp %d\n",
B
blueswir1 已提交
3671 3672
                env->cansave, env->canrestore, env->otherwin, env->wstate,
                env->cleanwin, NWINDOWS - 1 - env->cwp);
P
pbrook 已提交
3673
#else
B
bellard 已提交
3674
    cpu_fprintf(f, "psr: 0x%08x -> %c%c%c%c %c%c%c wim: 0x%08x\n", GET_PSR(env),
B
blueswir1 已提交
3675 3676 3677 3678
            GET_FLAG(PSR_ZERO, 'Z'), GET_FLAG(PSR_OVF, 'V'),
            GET_FLAG(PSR_NEG, 'N'), GET_FLAG(PSR_CARRY, 'C'),
            env->psrs?'S':'-', env->psrps?'P':'-',
            env->psret?'E':'-', env->wim);
P
pbrook 已提交
3679
#endif
B
bellard 已提交
3680
    cpu_fprintf(f, "fsr: 0x%08x\n", GET_FSR32(env));
3681
}
B
bellard 已提交
3682

B
bellard 已提交
3683
#if defined(CONFIG_USER_ONLY)
3684
target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
B
bellard 已提交
3685 3686 3687
{
    return addr;
}
B
bellard 已提交
3688

B
bellard 已提交
3689
#else
3690 3691
extern int get_physical_address (CPUState *env, target_phys_addr_t *physical, int *prot,
                                 int *access_index, target_ulong address, int rw,
B
bellard 已提交
3692 3693
                                 int is_user);

3694
target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
B
bellard 已提交
3695
{
3696
    target_phys_addr_t phys_addr;
B
bellard 已提交
3697 3698 3699
    int prot, access_index;

    if (get_physical_address(env, &phys_addr, &prot, &access_index, addr, 2, 0) != 0)
3700 3701
        if (get_physical_address(env, &phys_addr, &prot, &access_index, addr, 0, 0) != 0)
            return -1;
3702 3703
    if (cpu_get_physical_page_desc(phys_addr) == IO_MEM_UNASSIGNED)
        return -1;
B
bellard 已提交
3704 3705 3706 3707
    return phys_addr;
}
#endif

B
bellard 已提交
3708 3709 3710 3711 3712
void helper_flush(target_ulong addr)
{
    addr &= ~7;
    tb_invalidate_page_range(addr, addr + 8);
}