translate.c 106.1 KB
Newer Older
B
bellard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 *  PPC emulation for qemu: main translation routines.
 * 
 *  Copyright (c) 2003 Jocelyn Mayer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
B
bellard 已提交
20 21 22 23 24 25
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>

B
bellard 已提交
26
#include "cpu.h"
B
bellard 已提交
27
#include "exec-all.h"
B
bellard 已提交
28 29 30
#include "disas.h"

//#define DO_SINGLE_STEP
31
//#define PPC_DEBUG_DISAS
B
bellard 已提交
32 33 34 35 36 37 38 39 40 41 42 43

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

static uint16_t *gen_opc_ptr;
static uint32_t *gen_opparam_ptr;

#include "gen-op.h"
44 45

#define GEN8(func, NAME) \
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
static GenOpFunc *NAME ## _table [8] = {                                      \
NAME ## 0, NAME ## 1, NAME ## 2, NAME ## 3,                                   \
NAME ## 4, NAME ## 5, NAME ## 6, NAME ## 7,                                   \
};                                                                            \
static inline void func(int n)                                                \
{                                                                             \
    NAME ## _table[n]();                                                      \
}

#define GEN16(func, NAME)                                                     \
static GenOpFunc *NAME ## _table [16] = {                                     \
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,                               \
};                                                                            \
static inline void func(int n)                                                \
{                                                                             \
    NAME ## _table[n]();                                                      \
65 66 67
}

#define GEN32(func, NAME) \
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
static GenOpFunc *NAME ## _table [32] = {                                     \
NAME ## 0, NAME ## 1, NAME ## 2, NAME ## 3,                                   \
NAME ## 4, NAME ## 5, NAME ## 6, NAME ## 7,                                   \
NAME ## 8, NAME ## 9, NAME ## 10, NAME ## 11,                                 \
NAME ## 12, NAME ## 13, NAME ## 14, NAME ## 15,                               \
NAME ## 16, NAME ## 17, NAME ## 18, NAME ## 19,                               \
NAME ## 20, NAME ## 21, NAME ## 22, NAME ## 23,                               \
NAME ## 24, NAME ## 25, NAME ## 26, NAME ## 27,                               \
NAME ## 28, NAME ## 29, NAME ## 30, NAME ## 31,                               \
};                                                                            \
static inline void func(int n)                                                \
{                                                                             \
    NAME ## _table[n]();                                                      \
}

/* Condition register moves */
GEN8(gen_op_load_crf_T0, gen_op_load_crf_T0_crf);
GEN8(gen_op_load_crf_T1, gen_op_load_crf_T1_crf);
GEN8(gen_op_store_T0_crf, gen_op_store_T0_crf_crf);
GEN8(gen_op_store_T1_crf, gen_op_store_T1_crf_crf);
88

B
bellard 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
/* Floating point condition and status register moves */
GEN8(gen_op_load_fpscr_T0, gen_op_load_fpscr_T0_fpscr);
GEN8(gen_op_store_T0_fpscr, gen_op_store_T0_fpscr_fpscr);
GEN8(gen_op_clear_fpscr, gen_op_clear_fpscr_fpscr);
static GenOpFunc1 *gen_op_store_T0_fpscri_fpscr_table[8] = {
    &gen_op_store_T0_fpscri_fpscr0,
    &gen_op_store_T0_fpscri_fpscr1,
    &gen_op_store_T0_fpscri_fpscr2,
    &gen_op_store_T0_fpscri_fpscr3,
    &gen_op_store_T0_fpscri_fpscr4,
    &gen_op_store_T0_fpscri_fpscr5,
    &gen_op_store_T0_fpscri_fpscr6,
    &gen_op_store_T0_fpscri_fpscr7,
};
static inline void gen_op_store_T0_fpscri(int n, uint8_t param)
{
    (*gen_op_store_T0_fpscri_fpscr_table[n])(param);
}

108 109 110
/* Segment register moves */
GEN16(gen_op_load_sr, gen_op_load_sr);
GEN16(gen_op_store_sr, gen_op_store_sr);
111

112 113 114 115 116 117 118 119
/* General purpose registers moves */
GEN32(gen_op_load_gpr_T0, gen_op_load_gpr_T0_gpr);
GEN32(gen_op_load_gpr_T1, gen_op_load_gpr_T1_gpr);
GEN32(gen_op_load_gpr_T2, gen_op_load_gpr_T2_gpr);

GEN32(gen_op_store_T0_gpr, gen_op_store_T0_gpr_gpr);
GEN32(gen_op_store_T1_gpr, gen_op_store_T1_gpr_gpr);
GEN32(gen_op_store_T2_gpr, gen_op_store_T2_gpr_gpr);
120

B
bellard 已提交
121 122 123 124 125 126 127
/* floating point registers moves */
GEN32(gen_op_load_fpr_FT0, gen_op_load_fpr_FT0_fpr);
GEN32(gen_op_load_fpr_FT1, gen_op_load_fpr_FT1_fpr);
GEN32(gen_op_load_fpr_FT2, gen_op_load_fpr_FT2_fpr);
GEN32(gen_op_store_FT0_fpr, gen_op_store_FT0_fpr_fpr);
GEN32(gen_op_store_FT1_fpr, gen_op_store_FT1_fpr_fpr);
GEN32(gen_op_store_FT2_fpr, gen_op_store_FT2_fpr_fpr);
B
bellard 已提交
128 129 130 131 132 133

static uint8_t  spr_access[1024 / 2];

/* internal defines */
typedef struct DisasContext {
    struct TranslationBlock *tb;
B
bellard 已提交
134
    uint32_t nip;
B
bellard 已提交
135
    uint32_t opcode;
136 137 138
    uint32_t exception;
    /* Execution mode */
#if !defined(CONFIG_USER_ONLY)
B
bellard 已提交
139
    int supervisor;
140 141 142
#endif
    /* Routine used to access memory */
    int mem_idx;
B
bellard 已提交
143 144 145 146 147
} DisasContext;

typedef struct opc_handler_t {
    /* invalid bits */
    uint32_t inval;
148 149
    /* instruction type */
    uint32_t type;
B
bellard 已提交
150 151 152 153
    /* handler */
    void (*handler)(DisasContext *ctx);
} opc_handler_t;

154
#define RET_EXCP(ctx, excp, error)                                            \
B
bellard 已提交
155
do {                                                                          \
156 157 158 159 160
    if ((ctx)->exception == EXCP_NONE) {                                      \
        gen_op_update_nip((ctx)->nip);                                        \
    }                                                                         \
    gen_op_raise_exception_err((excp), (error));                              \
    ctx->exception = (excp);                                                  \
B
bellard 已提交
161 162
} while (0)

163 164 165 166 167
#define RET_INVAL(ctx)                                                        \
RET_EXCP((ctx), EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_INVAL)

#define RET_PRIVOPC(ctx)                                                      \
RET_EXCP((ctx), EXCP_PROGRAM, EXCP_INVAL | EXCP_PRIV_OPC)
168

169 170
#define RET_PRIVREG(ctx)                                                      \
RET_EXCP((ctx), EXCP_PROGRAM, EXCP_INVAL | EXCP_PRIV_REG)
171

172 173
#define RET_MTMSR(ctx)                                                        \
RET_EXCP((ctx), EXCP_MTMSR, 0)
B
bellard 已提交
174 175 176 177 178 179 180 181 182 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

#define GEN_HANDLER(name, opc1, opc2, opc3, inval, type)                      \
static void gen_##name (DisasContext *ctx);                                   \
GEN_OPCODE(name, opc1, opc2, opc3, inval, type);                              \
static void gen_##name (DisasContext *ctx)

typedef struct opcode_t {
    unsigned char opc1, opc2, opc3;
    opc_handler_t handler;
} opcode_t;

/***                           Instruction decoding                        ***/
#define EXTRACT_HELPER(name, shift, nb)                                       \
static inline uint32_t name (uint32_t opcode)                                 \
{                                                                             \
    return (opcode >> (shift)) & ((1 << (nb)) - 1);                           \
}

#define EXTRACT_SHELPER(name, shift, nb)                                      \
static inline int32_t name (uint32_t opcode)                                  \
{                                                                             \
    return s_ext16((opcode >> (shift)) & ((1 << (nb)) - 1));                  \
}

/* Opcode part 1 */
EXTRACT_HELPER(opc1, 26, 6);
/* Opcode part 2 */
EXTRACT_HELPER(opc2, 1, 5);
/* Opcode part 3 */
EXTRACT_HELPER(opc3, 6, 5);
/* Update Cr0 flags */
EXTRACT_HELPER(Rc, 0, 1);
/* Destination */
EXTRACT_HELPER(rD, 21, 5);
/* Source */
EXTRACT_HELPER(rS, 21, 5);
/* First operand */
EXTRACT_HELPER(rA, 16, 5);
/* Second operand */
EXTRACT_HELPER(rB, 11, 5);
/* Third operand */
EXTRACT_HELPER(rC, 6, 5);
/***                               Get CRn                                 ***/
EXTRACT_HELPER(crfD, 23, 3);
EXTRACT_HELPER(crfS, 18, 3);
EXTRACT_HELPER(crbD, 21, 5);
EXTRACT_HELPER(crbA, 16, 5);
EXTRACT_HELPER(crbB, 11, 5);
/* SPR / TBL */
EXTRACT_HELPER(SPR, 11, 10);
/***                              Get constants                            ***/
EXTRACT_HELPER(IMM, 12, 8);
/* 16 bits signed immediate value */
EXTRACT_SHELPER(SIMM, 0, 16);
/* 16 bits unsigned immediate value */
EXTRACT_HELPER(UIMM, 0, 16);
/* Bit count */
EXTRACT_HELPER(NB, 11, 5);
/* Shift count */
EXTRACT_HELPER(SH, 11, 5);
/* Mask start */
EXTRACT_HELPER(MB, 6, 5);
/* Mask end */
EXTRACT_HELPER(ME, 1, 5);
B
bellard 已提交
238 239
/* Trap operand */
EXTRACT_HELPER(TO, 21, 5);
B
bellard 已提交
240 241 242 243

EXTRACT_HELPER(CRM, 12, 8);
EXTRACT_HELPER(FM, 17, 8);
EXTRACT_HELPER(SR, 16, 4);
B
bellard 已提交
244 245
EXTRACT_HELPER(FPIMM, 20, 4);

B
bellard 已提交
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
/***                            Jump target decoding                       ***/
/* Displacement */
EXTRACT_SHELPER(d, 0, 16);
/* Immediate address */
static inline uint32_t LI (uint32_t opcode)
{
    return (opcode >> 0) & 0x03FFFFFC;
}

static inline uint32_t BD (uint32_t opcode)
{
    return (opcode >> 0) & 0xFFFC;
}

EXTRACT_HELPER(BO, 21, 5);
EXTRACT_HELPER(BI, 16, 5);
/* Absolute/relative address */
EXTRACT_HELPER(AA, 1, 1);
/* Link */
EXTRACT_HELPER(LK, 0, 1);

/* Create a mask between <start> and <end> bits */
static inline uint32_t MASK (uint32_t start, uint32_t end)
{
    uint32_t ret;

    ret = (((uint32_t)(-1)) >> (start)) ^ (((uint32_t)(-1) >> (end)) >> 1);
    if (start > end)
        return ~ret;

    return ret;
}

#define GEN_OPCODE(name, op1, op2, op3, invl, _typ)                           \
B
bellard 已提交
280
__attribute__ ((section(".opcodes"), unused, aligned (8) ))                   \
B
bellard 已提交
281 282 283 284 285 286
static opcode_t opc_##name = {                                                \
    .opc1 = op1,                                                              \
    .opc2 = op2,                                                              \
    .opc3 = op3,                                                              \
    .handler = {                                                              \
        .inval   = invl,                                                      \
287
        .type = _typ,                                                         \
B
bellard 已提交
288 289 290 291 292
        .handler = &gen_##name,                                               \
    },                                                                        \
}

#define GEN_OPCODE_MARK(name)                                                 \
B
bellard 已提交
293
__attribute__ ((section(".opcodes"), unused, aligned (8) ))                   \
B
bellard 已提交
294 295 296 297 298 299
static opcode_t opc_##name = {                                                \
    .opc1 = 0xFF,                                                             \
    .opc2 = 0xFF,                                                             \
    .opc3 = 0xFF,                                                             \
    .handler = {                                                              \
        .inval   = 0x00000000,                                                \
300
        .type = 0x00,                                                         \
B
bellard 已提交
301 302 303 304 305 306 307 308
        .handler = NULL,                                                      \
    },                                                                        \
}

/* Start opcode list */
GEN_OPCODE_MARK(start);

/* Invalid instruction */
309 310
GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE)
{
311
    RET_INVAL(ctx);
312 313 314 315
}

/* Special opcode to stop emulation */
GEN_HANDLER(stop, 0x06, 0x00, 0xFF, 0x03FFFFC1, PPC_COMMON)
B
bellard 已提交
316
{
317
    RET_EXCP(ctx, EXCP_HLT, 0);
318 319 320 321 322
}

/* Special opcode to call open-firmware */
GEN_HANDLER(of_enter, 0x06, 0x01, 0xFF, 0x03FFFFC1, PPC_COMMON)
{
323
    RET_EXCP(ctx, EXCP_OFCALL, 0);
324 325 326 327 328 329
}

/* Special opcode to call RTAS */
GEN_HANDLER(rtas_enter, 0x06, 0x02, 0xFF, 0x03FFFFC1, PPC_COMMON)
{
    printf("RTAS entry point !\n");
330
    RET_EXCP(ctx, EXCP_RTASCALL, 0);
B
bellard 已提交
331 332 333 334
}

static opc_handler_t invalid_handler = {
    .inval   = 0xFFFFFFFF,
335
    .type    = PPC_NONE,
B
bellard 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 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 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 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
    .handler = gen_invalid,
};

/***                           Integer arithmetic                          ***/
#define __GEN_INT_ARITH2(name, opc1, opc2, opc3, inval)                       \
GEN_HANDLER(name, opc1, opc2, opc3, inval, PPC_INTEGER)                       \
{                                                                             \
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    if (Rc(ctx->opcode) != 0)                                                 \
        gen_op_set_Rc0();                                                     \
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
}

#define __GEN_INT_ARITH2_O(name, opc1, opc2, opc3, inval)                     \
GEN_HANDLER(name, opc1, opc2, opc3, inval, PPC_INTEGER)                       \
{                                                                             \
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    if (Rc(ctx->opcode) != 0)                                                 \
        gen_op_set_Rc0_ov();                                                  \
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
}

#define __GEN_INT_ARITH1(name, opc1, opc2, opc3)                              \
GEN_HANDLER(name, opc1, opc2, opc3, 0x0000F800, PPC_INTEGER)                  \
{                                                                             \
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    if (Rc(ctx->opcode) != 0)                                                 \
        gen_op_set_Rc0();                                                     \
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
}
#define __GEN_INT_ARITH1_O(name, opc1, opc2, opc3)                            \
GEN_HANDLER(name, opc1, opc2, opc3, 0x0000F800, PPC_INTEGER)                  \
{                                                                             \
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    if (Rc(ctx->opcode) != 0)                                                 \
        gen_op_set_Rc0_ov();                                                  \
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
}

/* Two operands arithmetic functions */
#define GEN_INT_ARITH2(name, opc1, opc2, opc3)                                \
__GEN_INT_ARITH2(name, opc1, opc2, opc3, 0x00000000)                          \
__GEN_INT_ARITH2_O(name##o, opc1, opc2, opc3 | 0x10, 0x00000000)

/* Two operands arithmetic functions with no overflow allowed */
#define GEN_INT_ARITHN(name, opc1, opc2, opc3)                                \
__GEN_INT_ARITH2(name, opc1, opc2, opc3, 0x00000400)

/* One operand arithmetic functions */
#define GEN_INT_ARITH1(name, opc1, opc2, opc3)                                \
__GEN_INT_ARITH1(name, opc1, opc2, opc3)                                      \
__GEN_INT_ARITH1_O(name##o, opc1, opc2, opc3 | 0x10)

/* add    add.    addo    addo.    */
GEN_INT_ARITH2 (add,    0x1F, 0x0A, 0x08);
/* addc   addc.   addco   addco.   */
GEN_INT_ARITH2 (addc,   0x1F, 0x0A, 0x00);
/* adde   adde.   addeo   addeo.   */
GEN_INT_ARITH2 (adde,   0x1F, 0x0A, 0x04);
/* addme  addme.  addmeo  addmeo.  */
GEN_INT_ARITH1 (addme,  0x1F, 0x0A, 0x07);
/* addze  addze.  addzeo  addzeo.  */
GEN_INT_ARITH1 (addze,  0x1F, 0x0A, 0x06);
/* divw   divw.   divwo   divwo.   */
GEN_INT_ARITH2 (divw,   0x1F, 0x0B, 0x0F);
/* divwu  divwu.  divwuo  divwuo.  */
GEN_INT_ARITH2 (divwu,  0x1F, 0x0B, 0x0E);
/* mulhw  mulhw.                   */
GEN_INT_ARITHN (mulhw,  0x1F, 0x0B, 0x02);
/* mulhwu mulhwu.                  */
GEN_INT_ARITHN (mulhwu, 0x1F, 0x0B, 0x00);
/* mullw  mullw.  mullwo  mullwo.  */
GEN_INT_ARITH2 (mullw,  0x1F, 0x0B, 0x07);
/* neg    neg.    nego    nego.    */
GEN_INT_ARITH1 (neg,    0x1F, 0x08, 0x03);
/* subf   subf.   subfo   subfo.   */
GEN_INT_ARITH2 (subf,   0x1F, 0x08, 0x01);
/* subfc  subfc.  subfco  subfco.  */
GEN_INT_ARITH2 (subfc,  0x1F, 0x08, 0x00);
/* subfe  subfe.  subfeo  subfeo.  */
GEN_INT_ARITH2 (subfe,  0x1F, 0x08, 0x04);
/* subfme subfme. subfmeo subfmeo. */
GEN_INT_ARITH1 (subfme, 0x1F, 0x08, 0x07);
/* subfze subfze. subfzeo subfzeo. */
GEN_INT_ARITH1 (subfze, 0x1F, 0x08, 0x06);
/* addi */
GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    int32_t simm = SIMM(ctx->opcode);

    if (rA(ctx->opcode) == 0) {
        gen_op_set_T0(simm);
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_addi(simm);
    }
    gen_op_store_T0_gpr(rD(ctx->opcode));
}
/* addic */
GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_addic(SIMM(ctx->opcode));
    gen_op_store_T0_gpr(rD(ctx->opcode));
}
/* addic. */
GEN_HANDLER(addic_, 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_addic(SIMM(ctx->opcode));
    gen_op_set_Rc0();
    gen_op_store_T0_gpr(rD(ctx->opcode));
}
/* addis */
GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    int32_t simm = SIMM(ctx->opcode);

    if (rA(ctx->opcode) == 0) {
        gen_op_set_T0(simm << 16);
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_addi(simm << 16);
    }
    gen_op_store_T0_gpr(rD(ctx->opcode));
}
/* mulli */
GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_mulli(SIMM(ctx->opcode));
    gen_op_store_T0_gpr(rD(ctx->opcode));
}
/* subfic */
GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_subfic(SIMM(ctx->opcode));
    gen_op_store_T0_gpr(rD(ctx->opcode));
}

/***                           Integer comparison                          ***/
#define GEN_CMP(name, opc)                                                    \
GEN_HANDLER(name, 0x1F, 0x00, opc, 0x00400000, PPC_INTEGER)                   \
{                                                                             \
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    gen_op_store_T0_crf(crfD(ctx->opcode));                                   \
}

/* cmp */
GEN_CMP(cmp, 0x00);
/* cmpi */
GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_cmpi(SIMM(ctx->opcode));
    gen_op_store_T0_crf(crfD(ctx->opcode));
}
/* cmpl */
GEN_CMP(cmpl, 0x01);
/* cmpli */
GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_cmpli(UIMM(ctx->opcode));
    gen_op_store_T0_crf(crfD(ctx->opcode));
}

/***                            Integer logical                            ***/
#define __GEN_LOGICAL2(name, opc2, opc3)                                      \
GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000000, PPC_INTEGER)                  \
{                                                                             \
    gen_op_load_gpr_T0(rS(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    if (Rc(ctx->opcode) != 0)                                                 \
        gen_op_set_Rc0();                                                     \
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}
#define GEN_LOGICAL2(name, opc)                                               \
__GEN_LOGICAL2(name, 0x1C, opc)

#define GEN_LOGICAL1(name, opc)                                               \
GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, PPC_INTEGER)                   \
{                                                                             \
    gen_op_load_gpr_T0(rS(ctx->opcode));                                      \
    gen_op_##name();                                                          \
    if (Rc(ctx->opcode) != 0)                                                 \
        gen_op_set_Rc0();                                                     \
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

/* and & and. */
GEN_LOGICAL2(and, 0x00);
/* andc & andc. */
GEN_LOGICAL2(andc, 0x01);
/* andi. */
GEN_HANDLER(andi_, 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_andi_(UIMM(ctx->opcode));
    gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}
/* andis. */
GEN_HANDLER(andis_, 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_andi_(UIMM(ctx->opcode) << 16);
    gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}

/* cntlzw */
GEN_LOGICAL1(cntlzw, 0x00);
/* eqv & eqv. */
GEN_LOGICAL2(eqv, 0x08);
/* extsb & extsb. */
GEN_LOGICAL1(extsb, 0x1D);
/* extsh & extsh. */
GEN_LOGICAL1(extsh, 0x1C);
/* nand & nand. */
GEN_LOGICAL2(nand, 0x0E);
/* nor & nor. */
GEN_LOGICAL2(nor, 0x03);
569

B
bellard 已提交
570
/* or & or. */
571 572 573 574 575 576 577 578 579 580 581 582 583
GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rS(ctx->opcode));
    /* Optimisation for mr case */
    if (rS(ctx->opcode) != rB(ctx->opcode)) {
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_or();
    }
    if (Rc(ctx->opcode) != 0)
        gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}

B
bellard 已提交
584 585 586
/* orc & orc. */
GEN_LOGICAL2(orc, 0x0C);
/* xor & xor. */
587 588 589 590 591 592 593 594 595 596 597 598 599 600
GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rS(ctx->opcode));
    /* Optimisation for "set to zero" case */
    if (rS(ctx->opcode) != rB(ctx->opcode)) {
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_xor();
    } else {
        gen_op_set_T0(0);
    }
    if (Rc(ctx->opcode) != 0)
        gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}
B
bellard 已提交
601 602 603 604 605
/* ori */
GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    uint32_t uimm = UIMM(ctx->opcode);

606 607 608
    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
        /* NOP */
        return;
B
bellard 已提交
609 610
        }
        gen_op_load_gpr_T0(rS(ctx->opcode));
611
    if (uimm != 0)
B
bellard 已提交
612 613 614 615 616 617 618 619
        gen_op_ori(uimm);
        gen_op_store_T0_gpr(rA(ctx->opcode));
}
/* oris */
GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    uint32_t uimm = UIMM(ctx->opcode);

620 621 622
    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
        /* NOP */
        return;
B
bellard 已提交
623 624
        }
        gen_op_load_gpr_T0(rS(ctx->opcode));
625
    if (uimm != 0)
B
bellard 已提交
626 627 628 629 630 631
        gen_op_ori(uimm << 16);
        gen_op_store_T0_gpr(rA(ctx->opcode));
}
/* xori */
GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
632 633 634 635 636 637
    uint32_t uimm = UIMM(ctx->opcode);

    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
        /* NOP */
        return;
    }
B
bellard 已提交
638
    gen_op_load_gpr_T0(rS(ctx->opcode));
639
    if (uimm != 0)
B
bellard 已提交
640
    gen_op_xori(uimm);
B
bellard 已提交
641 642 643 644 645 646
    gen_op_store_T0_gpr(rA(ctx->opcode));
}

/* xoris */
GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
647 648 649 650 651 652
    uint32_t uimm = UIMM(ctx->opcode);

    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
        /* NOP */
        return;
    }
B
bellard 已提交
653
    gen_op_load_gpr_T0(rS(ctx->opcode));
654
    if (uimm != 0)
B
bellard 已提交
655
    gen_op_xori(uimm << 16);
B
bellard 已提交
656 657 658 659 660 661 662 663 664 665 666 667
    gen_op_store_T0_gpr(rA(ctx->opcode));
}

/***                             Integer rotate                            ***/
/* rlwimi & rlwimi. */
GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    uint32_t mb, me;

    mb = MB(ctx->opcode);
    me = ME(ctx->opcode);
    gen_op_load_gpr_T0(rS(ctx->opcode));
B
bellard 已提交
668
    gen_op_load_gpr_T1(rA(ctx->opcode));
B
bellard 已提交
669 670 671 672 673 674 675 676 677 678 679 680 681 682
    gen_op_rlwimi(SH(ctx->opcode), MASK(mb, me), ~MASK(mb, me));
    if (Rc(ctx->opcode) != 0)
        gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}
/* rlwinm & rlwinm. */
GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    uint32_t mb, me, sh;
    
    sh = SH(ctx->opcode);
    mb = MB(ctx->opcode);
    me = ME(ctx->opcode);
    gen_op_load_gpr_T0(rS(ctx->opcode));
B
bellard 已提交
683 684 685 686 687 688
#if 1 // TRY
    if (sh == 0) {
        gen_op_andi_(MASK(mb, me));
        goto store;
    }
#endif
B
bellard 已提交
689 690 691 692
    if (mb == 0) {
        if (me == 31) {
            gen_op_rotlwi(sh);
            goto store;
B
bellard 已提交
693
#if 0
B
bellard 已提交
694 695 696
        } else if (me == (31 - sh)) {
            gen_op_slwi(sh);
            goto store;
B
bellard 已提交
697
#endif
B
bellard 已提交
698 699
        }
    } else if (me == 31) {
B
bellard 已提交
700
#if 0
B
bellard 已提交
701 702 703 704
        if (sh == (32 - mb)) {
            gen_op_srwi(mb);
            goto store;
        }
B
bellard 已提交
705
#endif
B
bellard 已提交
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
    }
    gen_op_rlwinm(sh, MASK(mb, me));
store:
    if (Rc(ctx->opcode) != 0)
        gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}
/* rlwnm & rlwnm. */
GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
    uint32_t mb, me;

    mb = MB(ctx->opcode);
    me = ME(ctx->opcode);
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_load_gpr_T1(rB(ctx->opcode));
    if (mb == 0 && me == 31) {
        gen_op_rotl();
    } else
    {
        gen_op_rlwnm(MASK(mb, me));
    }
    if (Rc(ctx->opcode) != 0)
        gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}

/***                             Integer shift                             ***/
/* slw & slw. */
__GEN_LOGICAL2(slw, 0x18, 0x00);
/* sraw & sraw. */
__GEN_LOGICAL2(sraw, 0x18, 0x18);
/* srawi & srawi. */
GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER)
{
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_srawi(SH(ctx->opcode), MASK(32 - SH(ctx->opcode), 31));
    if (Rc(ctx->opcode) != 0)
        gen_op_set_Rc0();
    gen_op_store_T0_gpr(rA(ctx->opcode));
}
/* srw & srw. */
__GEN_LOGICAL2(srw, 0x18, 0x10);

/***                       Floating-Point arithmetic                       ***/
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
#define _GEN_FLOAT_ACB(name, op1, op2)                                        \
GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, PPC_FLOAT)                   \
{                                                                             \
    gen_op_reset_scrfx();                                                     \
    gen_op_load_fpr_FT0(rA(ctx->opcode));                                     \
    gen_op_load_fpr_FT1(rC(ctx->opcode));                                     \
    gen_op_load_fpr_FT2(rB(ctx->opcode));                                     \
    gen_op_f##name();                                                         \
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
    if (Rc(ctx->opcode))                                                      \
        gen_op_set_Rc1();                                                     \
}

#define GEN_FLOAT_ACB(name, op2)                                              \
_GEN_FLOAT_ACB(name, 0x3F, op2);                                              \
_GEN_FLOAT_ACB(name##s, 0x3B, op2);

#define _GEN_FLOAT_AB(name, op1, op2, inval)                                  \
GEN_HANDLER(f##name, op1, op2, 0xFF, inval, PPC_FLOAT)                        \
{                                                                             \
    gen_op_reset_scrfx();                                                     \
    gen_op_load_fpr_FT0(rA(ctx->opcode));                                     \
    gen_op_load_fpr_FT1(rB(ctx->opcode));                                     \
    gen_op_f##name();                                                         \
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
    if (Rc(ctx->opcode))                                                      \
        gen_op_set_Rc1();                                                     \
}
#define GEN_FLOAT_AB(name, op2, inval)                                        \
_GEN_FLOAT_AB(name, 0x3F, op2, inval);                                        \
_GEN_FLOAT_AB(name##s, 0x3B, op2, inval);

#define _GEN_FLOAT_AC(name, op1, op2, inval)                                  \
GEN_HANDLER(f##name, op1, op2, 0xFF, inval, PPC_FLOAT)                        \
{                                                                             \
    gen_op_reset_scrfx();                                                     \
    gen_op_load_fpr_FT0(rA(ctx->opcode));                                     \
    gen_op_load_fpr_FT1(rC(ctx->opcode));                                     \
    gen_op_f##name();                                                         \
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
    if (Rc(ctx->opcode))                                                      \
        gen_op_set_Rc1();                                                     \
}
#define GEN_FLOAT_AC(name, op2, inval)                                        \
_GEN_FLOAT_AC(name, 0x3F, op2, inval);                                        \
_GEN_FLOAT_AC(name##s, 0x3B, op2, inval);

#define GEN_FLOAT_B(name, op2, op3)                                           \
GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, PPC_FLOAT)                   \
{                                                                             \
    gen_op_reset_scrfx();                                                     \
    gen_op_load_fpr_FT0(rB(ctx->opcode));                                     \
    gen_op_f##name();                                                         \
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
    if (Rc(ctx->opcode))                                                      \
        gen_op_set_Rc1();                                                     \
B
bellard 已提交
807 808
}

809 810 811 812 813 814 815 816 817
#define GEN_FLOAT_BS(name, op2)                                               \
GEN_HANDLER(f##name, 0x3F, op2, 0xFF, 0x001F07C0, PPC_FLOAT)                  \
{                                                                             \
    gen_op_reset_scrfx();                                                     \
    gen_op_load_fpr_FT0(rB(ctx->opcode));                                     \
    gen_op_f##name();                                                         \
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
    if (Rc(ctx->opcode))                                                      \
        gen_op_set_Rc1();                                                     \
B
bellard 已提交
818 819
}

820 821
/* fadd - fadds */
GEN_FLOAT_AB(add, 0x15, 0x000007C0);
B
bellard 已提交
822
/* fdiv */
823
GEN_FLOAT_AB(div, 0x12, 0x000007C0);
B
bellard 已提交
824
/* fmul */
825
GEN_FLOAT_AC(mul, 0x19, 0x0000F800);
B
bellard 已提交
826 827

/* fres */
828
GEN_FLOAT_BS(res, 0x18);
B
bellard 已提交
829 830

/* frsqrte */
831
GEN_FLOAT_BS(rsqrte, 0x1A);
B
bellard 已提交
832 833

/* fsel */
834
_GEN_FLOAT_ACB(sel, 0x3F, 0x17);
B
bellard 已提交
835
/* fsub */
836
GEN_FLOAT_AB(sub, 0x14, 0x000007C0);
B
bellard 已提交
837 838
/* Optional: */
/* fsqrt */
839
GEN_FLOAT_BS(sqrt, 0x16);
B
bellard 已提交
840

841
GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_OPT)
B
bellard 已提交
842
{
843 844 845 846 847 848
    gen_op_reset_scrfx();
    gen_op_load_fpr_FT0(rB(ctx->opcode));
    gen_op_fsqrts();
    gen_op_store_FT0_fpr(rD(ctx->opcode));
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
B
bellard 已提交
849 850 851 852
}

/***                     Floating-Point multiply-and-add                   ***/
/* fmadd */
853
GEN_FLOAT_ACB(madd, 0x1D);
B
bellard 已提交
854
/* fmsub */
855
GEN_FLOAT_ACB(msub, 0x1C);
B
bellard 已提交
856
/* fnmadd */
857
GEN_FLOAT_ACB(nmadd, 0x1F);
B
bellard 已提交
858
/* fnmsub */
859
GEN_FLOAT_ACB(nmsub, 0x1E);
B
bellard 已提交
860 861 862

/***                     Floating-Point round & convert                    ***/
/* fctiw */
863
GEN_FLOAT_B(ctiw, 0x0E, 0x00);
B
bellard 已提交
864
/* fctiwz */
865
GEN_FLOAT_B(ctiwz, 0x0F, 0x00);
B
bellard 已提交
866
/* frsp */
867
GEN_FLOAT_B(rsp, 0x0C, 0x00);
B
bellard 已提交
868 869 870 871 872

/***                         Floating-Point compare                        ***/
/* fcmpo */
GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT)
{
873 874 875 876 877
    gen_op_reset_scrfx();
    gen_op_load_fpr_FT0(rA(ctx->opcode));
    gen_op_load_fpr_FT1(rB(ctx->opcode));
    gen_op_fcmpo();
    gen_op_store_T0_crf(crfD(ctx->opcode));
B
bellard 已提交
878 879 880 881 882
}

/* fcmpu */
GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT)
{
883 884 885 886 887
    gen_op_reset_scrfx();
    gen_op_load_fpr_FT0(rA(ctx->opcode));
    gen_op_load_fpr_FT1(rB(ctx->opcode));
    gen_op_fcmpu();
    gen_op_store_T0_crf(crfD(ctx->opcode));
B
bellard 已提交
888 889
}

890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
/***                         Floating-point move                           ***/
/* fabs */
GEN_FLOAT_B(abs, 0x08, 0x08);

/* fmr  - fmr. */
GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT)
{
    gen_op_reset_scrfx();
    gen_op_load_fpr_FT0(rB(ctx->opcode));
    gen_op_store_FT0_fpr(rD(ctx->opcode));
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
}

/* fnabs */
GEN_FLOAT_B(nabs, 0x08, 0x04);
/* fneg */
GEN_FLOAT_B(neg, 0x08, 0x01);

B
bellard 已提交
909 910 911 912
/***                  Floating-Point status & ctrl register                ***/
/* mcrfs */
GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT)
{
B
bellard 已提交
913 914 915
    gen_op_load_fpscr_T0(crfS(ctx->opcode));
    gen_op_store_T0_crf(crfD(ctx->opcode));
    gen_op_clear_fpscr(crfS(ctx->opcode));
B
bellard 已提交
916 917 918 919 920
}

/* mffs */
GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT)
{
921
    gen_op_load_fpscr();
B
bellard 已提交
922 923 924
    gen_op_store_FT0_fpr(rD(ctx->opcode));
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
B
bellard 已提交
925 926 927 928 929
}

/* mtfsb0 */
GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT)
{
B
bellard 已提交
930 931 932 933 934 935 936 937
    uint8_t crb;
    
    crb = crbD(ctx->opcode) >> 2;
    gen_op_load_fpscr_T0(crb);
    gen_op_andi_(~(1 << (crbD(ctx->opcode) & 0x03)));
    gen_op_store_T0_fpscr(crb);
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
B
bellard 已提交
938 939 940 941 942
}

/* mtfsb1 */
GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT)
{
B
bellard 已提交
943 944 945 946 947 948 949 950
    uint8_t crb;
    
    crb = crbD(ctx->opcode) >> 2;
    gen_op_load_fpscr_T0(crb);
    gen_op_ori(1 << (crbD(ctx->opcode) & 0x03));
    gen_op_store_T0_fpscr(crb);
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
B
bellard 已提交
951 952 953 954 955
}

/* mtfsf */
GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x02010000, PPC_FLOAT)
{
B
bellard 已提交
956
    gen_op_load_fpr_FT0(rB(ctx->opcode));
957
    gen_op_store_fpscr(FM(ctx->opcode));
B
bellard 已提交
958 959
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
B
bellard 已提交
960 961 962 963 964
}

/* mtfsfi */
GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT)
{
B
bellard 已提交
965 966 967
    gen_op_store_T0_fpscri(crbD(ctx->opcode) >> 2, FPIMM(ctx->opcode));
    if (Rc(ctx->opcode))
        gen_op_set_Rc1();
B
bellard 已提交
968 969 970
}

/***                             Integer load                              ***/
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
#if defined(CONFIG_USER_ONLY)
#define op_ldst(name)        gen_op_##name##_raw()
#define OP_LD_TABLE(width)
#define OP_ST_TABLE(width)
#else
#define op_ldst(name)        (*gen_op_##name[ctx->mem_idx])()
#define OP_LD_TABLE(width)                                                    \
static GenOpFunc *gen_op_l##width[] = {                                       \
    &gen_op_l##width##_user,                                                  \
    &gen_op_l##width##_kernel,                                                \
}
#define OP_ST_TABLE(width)                                                    \
static GenOpFunc *gen_op_st##width[] = {                                      \
    &gen_op_st##width##_user,                                                 \
    &gen_op_st##width##_kernel,                                               \
}
#endif

#define GEN_LD(width, opc)                                                    \
B
bellard 已提交
990 991 992 993
GEN_HANDLER(l##width, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)               \
{                                                                             \
    uint32_t simm = SIMM(ctx->opcode);                                        \
    if (rA(ctx->opcode) == 0) {                                               \
994
        gen_op_set_T0(simm);                                                  \
B
bellard 已提交
995 996
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
997 998
        if (simm != 0)                                                        \
            gen_op_addi(simm);                                                \
B
bellard 已提交
999
    }                                                                         \
1000
    op_ldst(l##width);                                                        \
B
bellard 已提交
1001 1002 1003
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
}

1004
#define GEN_LDU(width, opc)                                                   \
B
bellard 已提交
1005 1006
GEN_HANDLER(l##width##u, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)            \
{                                                                             \
1007
    uint32_t simm = SIMM(ctx->opcode);                                        \
B
bellard 已提交
1008
    if (rA(ctx->opcode) == 0 ||                                               \
1009
        rA(ctx->opcode) == rD(ctx->opcode)) {                                 \
1010 1011
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1012
    }                                                                         \
B
bellard 已提交
1013
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
1014 1015 1016
    if (simm != 0)                                                            \
        gen_op_addi(simm);                                                    \
    op_ldst(l##width);                                                        \
B
bellard 已提交
1017 1018 1019 1020
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1021
#define GEN_LDUX(width, opc)                                                  \
B
bellard 已提交
1022 1023 1024
GEN_HANDLER(l##width##ux, 0x1F, 0x17, opc, 0x00000001, PPC_INTEGER)           \
{                                                                             \
    if (rA(ctx->opcode) == 0 ||                                               \
1025
        rA(ctx->opcode) == rD(ctx->opcode)) {                                 \
1026 1027
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1028
    }                                                                         \
B
bellard 已提交
1029 1030
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
1031 1032
    gen_op_add();                                                             \
    op_ldst(l##width);                                                        \
B
bellard 已提交
1033 1034 1035 1036
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1037
#define GEN_LDX(width, opc2, opc3)                                            \
B
bellard 已提交
1038 1039 1040 1041 1042 1043 1044
GEN_HANDLER(l##width##x, 0x1F, opc2, opc3, 0x00000001, PPC_INTEGER)           \
{                                                                             \
    if (rA(ctx->opcode) == 0) {                                               \
        gen_op_load_gpr_T0(rB(ctx->opcode));                                  \
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
        gen_op_load_gpr_T1(rB(ctx->opcode));                                  \
1045
        gen_op_add();                                                         \
B
bellard 已提交
1046
    }                                                                         \
1047
    op_ldst(l##width);                                                        \
B
bellard 已提交
1048 1049 1050
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
}

1051 1052 1053 1054 1055 1056
#define GEN_LDS(width, op)                                                    \
OP_LD_TABLE(width);                                                           \
GEN_LD(width, op | 0x20);                                                     \
GEN_LDU(width, op | 0x21);                                                    \
GEN_LDUX(width, op | 0x01);                                                   \
GEN_LDX(width, 0x17, op | 0x00)
B
bellard 已提交
1057 1058

/* lbz lbzu lbzux lbzx */
1059
GEN_LDS(bz, 0x02);
B
bellard 已提交
1060
/* lha lhau lhaux lhax */
1061
GEN_LDS(ha, 0x0A);
B
bellard 已提交
1062
/* lhz lhzu lhzux lhzx */
1063
GEN_LDS(hz, 0x08);
B
bellard 已提交
1064
/* lwz lwzu lwzux lwzx */
1065
GEN_LDS(wz, 0x00);
B
bellard 已提交
1066 1067

/***                              Integer store                            ***/
1068
#define GEN_ST(width, opc)                                                    \
B
bellard 已提交
1069 1070 1071 1072
GEN_HANDLER(st##width, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)              \
{                                                                             \
    uint32_t simm = SIMM(ctx->opcode);                                        \
    if (rA(ctx->opcode) == 0) {                                               \
1073
        gen_op_set_T0(simm);                                                  \
B
bellard 已提交
1074 1075
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
1076 1077
        if (simm != 0)                                                        \
            gen_op_addi(simm);                                                \
B
bellard 已提交
1078
    }                                                                         \
1079 1080
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1081 1082
}

1083
#define GEN_STU(width, opc)                                                   \
B
bellard 已提交
1084 1085
GEN_HANDLER(st##width##u, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)           \
{                                                                             \
1086 1087
    uint32_t simm = SIMM(ctx->opcode);                                        \
    if (rA(ctx->opcode) == 0) {                                               \
1088 1089
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1090
    }                                                                         \
B
bellard 已提交
1091
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
1092 1093
    if (simm != 0)                                                            \
        gen_op_addi(simm);                                                    \
B
bellard 已提交
1094
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
1095
    op_ldst(st##width);                                                       \
B
bellard 已提交
1096 1097 1098
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1099
#define GEN_STUX(width, opc)                                                  \
B
bellard 已提交
1100 1101
GEN_HANDLER(st##width##ux, 0x1F, 0x17, opc, 0x00000001, PPC_INTEGER)          \
{                                                                             \
1102
    if (rA(ctx->opcode) == 0) {                                               \
1103 1104
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1105
    }                                                                         \
B
bellard 已提交
1106 1107
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
1108 1109 1110
    gen_op_add();                                                             \
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1111 1112 1113
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1114
#define GEN_STX(width, opc2, opc3)                                            \
B
bellard 已提交
1115 1116 1117 1118 1119 1120 1121
GEN_HANDLER(st##width##x, 0x1F, opc2, opc3, 0x00000001, PPC_INTEGER)          \
{                                                                             \
    if (rA(ctx->opcode) == 0) {                                               \
        gen_op_load_gpr_T0(rB(ctx->opcode));                                  \
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
        gen_op_load_gpr_T1(rB(ctx->opcode));                                  \
1122
        gen_op_add();                                                         \
B
bellard 已提交
1123
    }                                                                         \
1124 1125
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1126 1127
}

1128 1129 1130 1131 1132 1133
#define GEN_STS(width, op)                                                    \
OP_ST_TABLE(width);                                                           \
GEN_ST(width, op | 0x20);                                                     \
GEN_STU(width, op | 0x21);                                                    \
GEN_STUX(width, op | 0x01);                                                   \
GEN_STX(width, 0x17, op | 0x00)
B
bellard 已提交
1134 1135

/* stb stbu stbux stbx */
1136
GEN_STS(b, 0x06);
B
bellard 已提交
1137
/* sth sthu sthux sthx */
1138
GEN_STS(h, 0x0C);
B
bellard 已提交
1139
/* stw stwu stwux stwx */
1140
GEN_STS(w, 0x04);
B
bellard 已提交
1141 1142 1143

/***                Integer load and store with byte reverse               ***/
/* lhbrx */
1144 1145
OP_LD_TABLE(hbr);
GEN_LDX(hbr, 0x16, 0x18);
B
bellard 已提交
1146
/* lwbrx */
1147 1148
OP_LD_TABLE(wbr);
GEN_LDX(wbr, 0x16, 0x10);
B
bellard 已提交
1149
/* sthbrx */
1150 1151
OP_ST_TABLE(hbr);
GEN_STX(hbr, 0x16, 0x1C);
B
bellard 已提交
1152
/* stwbrx */
1153 1154
OP_ST_TABLE(wbr);
GEN_STX(wbr, 0x16, 0x14);
B
bellard 已提交
1155 1156

/***                    Integer load and store multiple                    ***/
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
#if defined(CONFIG_USER_ONLY)
#define op_ldstm(name, reg) gen_op_##name##_raw(reg)
#else
#define op_ldstm(name, reg) (*gen_op_##name[ctx->mem_idx])(reg)
static GenOpFunc1 *gen_op_lmw[] = {
    &gen_op_lmw_user,
    &gen_op_lmw_kernel,
};
static GenOpFunc1 *gen_op_stmw[] = {
    &gen_op_stmw_user,
    &gen_op_stmw_kernel,
};
#endif

B
bellard 已提交
1171 1172 1173
/* lmw */
GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
1174 1175
    int simm = SIMM(ctx->opcode);

B
bellard 已提交
1176
    if (rA(ctx->opcode) == 0) {
1177
        gen_op_set_T0(simm);
B
bellard 已提交
1178 1179
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
1180 1181
        if (simm != 0)
            gen_op_addi(simm);
B
bellard 已提交
1182
    }
1183
    op_ldstm(lmw, rD(ctx->opcode));
B
bellard 已提交
1184 1185 1186 1187 1188
}

/* stmw */
GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
{
1189 1190
    int simm = SIMM(ctx->opcode);

B
bellard 已提交
1191
    if (rA(ctx->opcode) == 0) {
1192
        gen_op_set_T0(simm);
B
bellard 已提交
1193 1194
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
1195 1196
        if (simm != 0)
            gen_op_addi(simm);
B
bellard 已提交
1197
    }
1198
    op_ldstm(stmw, rS(ctx->opcode));
B
bellard 已提交
1199 1200 1201
}

/***                    Integer load and store strings                     ***/
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
#if defined(CONFIG_USER_ONLY)
#define op_ldsts(name, start) gen_op_##name##_raw(start)
#define op_ldstsx(name, rd, ra, rb) gen_op_##name##_raw(rd, ra, rb)
#else
#define op_ldsts(name, start) (*gen_op_##name[ctx->mem_idx])(start)
#define op_ldstsx(name, rd, ra, rb) (*gen_op_##name[ctx->mem_idx])(rd, ra, rb)
static GenOpFunc1 *gen_op_lswi[] = {
    &gen_op_lswi_user,
    &gen_op_lswi_kernel,
};
static GenOpFunc3 *gen_op_lswx[] = {
    &gen_op_lswx_user,
    &gen_op_lswx_kernel,
};
static GenOpFunc1 *gen_op_stsw[] = {
    &gen_op_stsw_user,
    &gen_op_stsw_kernel,
};
#endif

B
bellard 已提交
1222
/* lswi */
1223 1224 1225 1226 1227
/* PPC32 specification says we must generate an exception if
 * rA is in the range of registers to be loaded.
 * In an other hand, IBM says this is valid, but rA won't be loaded.
 * For now, I'll follow the spec...
 */
B
bellard 已提交
1228 1229 1230 1231
GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_INTEGER)
{
    int nb = NB(ctx->opcode);
    int start = rD(ctx->opcode);
1232
    int ra = rA(ctx->opcode);
B
bellard 已提交
1233 1234 1235 1236 1237
    int nr;

    if (nb == 0)
        nb = 32;
    nr = nb / 4;
B
bellard 已提交
1238 1239
    if (((start + nr) > 32  && start <= ra && (start + nr - 32) > ra) ||
        ((start + nr) <= 32 && start <= ra && (start + nr) > ra)) {
1240 1241
        RET_EXCP(ctx, EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_LSWX);
        return;
B
bellard 已提交
1242
    }
1243
    if (ra == 0) {
B
bellard 已提交
1244 1245
        gen_op_set_T0(0);
    } else {
1246
        gen_op_load_gpr_T0(ra);
B
bellard 已提交
1247
    }
1248 1249
    gen_op_set_T1(nb);
    op_ldsts(lswi, start);
B
bellard 已提交
1250 1251 1252 1253 1254
}

/* lswx */
GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_INTEGER)
{
1255 1256 1257 1258 1259 1260
    int ra = rA(ctx->opcode);
    int rb = rB(ctx->opcode);

    if (ra == 0) {
        gen_op_load_gpr_T0(rb);
        ra = rb;
B
bellard 已提交
1261
    } else {
1262 1263 1264
        gen_op_load_gpr_T0(ra);
        gen_op_load_gpr_T1(rb);
        gen_op_add();
B
bellard 已提交
1265
    }
1266 1267
    gen_op_load_xer_bc();
    op_ldstsx(lswx, rD(ctx->opcode), ra, rb);
B
bellard 已提交
1268 1269 1270 1271 1272
}

/* stswi */
GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_INTEGER)
{
B
bellard 已提交
1273 1274
    int nb = NB(ctx->opcode);

B
bellard 已提交
1275 1276 1277 1278 1279
    if (rA(ctx->opcode) == 0) {
        gen_op_set_T0(0);
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
    }
B
bellard 已提交
1280 1281 1282
    if (nb == 0)
        nb = 32;
    gen_op_set_T1(nb);
1283
    op_ldsts(stsw, rS(ctx->opcode));
B
bellard 已提交
1284 1285 1286 1287 1288
}

/* stswx */
GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_INTEGER)
{
1289 1290 1291 1292 1293
    int ra = rA(ctx->opcode);

    if (ra == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
        ra = rB(ctx->opcode);
B
bellard 已提交
1294
    } else {
1295 1296 1297
        gen_op_load_gpr_T0(ra);
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_add();
B
bellard 已提交
1298
    }
1299 1300
    gen_op_load_xer_bc();
    op_ldsts(stsw, rS(ctx->opcode));
B
bellard 已提交
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
}

/***                        Memory synchronisation                         ***/
/* eieio */
GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FF0801, PPC_MEM)
{
}

/* isync */
GEN_HANDLER(isync, 0x13, 0x16, 0xFF, 0x03FF0801, PPC_MEM)
{
}

/* lwarx */
1315
#if defined(CONFIG_USER_ONLY)
B
bellard 已提交
1316
#define op_lwarx() gen_op_lwarx_raw()
1317 1318
#define op_stwcx() gen_op_stwcx_raw()
#else
B
bellard 已提交
1319 1320 1321 1322 1323
#define op_lwarx() (*gen_op_lwarx[ctx->mem_idx])()
static GenOpFunc *gen_op_lwarx[] = {
    &gen_op_lwarx_user,
    &gen_op_lwarx_kernel,
};
1324 1325 1326 1327 1328 1329 1330 1331
#define op_stwcx() (*gen_op_stwcx[ctx->mem_idx])()
static GenOpFunc *gen_op_stwcx[] = {
    &gen_op_stwcx_user,
    &gen_op_stwcx_kernel,
};
#endif

GEN_HANDLER(lwarx, 0x1F, 0x14, 0xFF, 0x00000001, PPC_RES)
B
bellard 已提交
1332 1333 1334 1335 1336 1337
{
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
1338
        gen_op_add();
B
bellard 已提交
1339
    }
B
bellard 已提交
1340
    op_lwarx();
B
bellard 已提交
1341 1342 1343 1344
    gen_op_store_T1_gpr(rD(ctx->opcode));
}

/* stwcx. */
1345
GEN_HANDLER(stwcx_, 0x1F, 0x16, 0x04, 0x00000000, PPC_RES)
B
bellard 已提交
1346 1347 1348 1349 1350 1351
{
        if (rA(ctx->opcode) == 0) {
            gen_op_load_gpr_T0(rB(ctx->opcode));
        } else {
            gen_op_load_gpr_T0(rA(ctx->opcode));
            gen_op_load_gpr_T1(rB(ctx->opcode));
1352
        gen_op_add();
B
bellard 已提交
1353
        }
1354 1355
    gen_op_load_gpr_T1(rS(ctx->opcode));
    op_stwcx();
B
bellard 已提交
1356 1357 1358 1359 1360 1361 1362 1363
}

/* sync */
GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x03FF0801, PPC_MEM)
{
}

/***                         Floating-point load                           ***/
1364 1365
#define GEN_LDF(width, opc)                                                   \
GEN_HANDLER(l##width, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)               \
B
bellard 已提交
1366 1367 1368
{                                                                             \
    uint32_t simm = SIMM(ctx->opcode);                                        \
    if (rA(ctx->opcode) == 0) {                                               \
1369
        gen_op_set_T0(simm);                                                  \
B
bellard 已提交
1370 1371
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
1372 1373
        if (simm != 0)                                                        \
            gen_op_addi(simm);                                                \
B
bellard 已提交
1374
    }                                                                         \
1375 1376
    op_ldst(l##width);                                                        \
    gen_op_store_FT1_fpr(rD(ctx->opcode));                                    \
B
bellard 已提交
1377 1378
}

1379 1380
#define GEN_LDUF(width, opc)                                                  \
GEN_HANDLER(l##width##u, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)            \
B
bellard 已提交
1381
{                                                                             \
1382
    uint32_t simm = SIMM(ctx->opcode);                                        \
B
bellard 已提交
1383
    if (rA(ctx->opcode) == 0 ||                                               \
1384
        rA(ctx->opcode) == rD(ctx->opcode)) {                                 \
1385 1386
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1387
    }                                                                         \
B
bellard 已提交
1388
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
1389 1390 1391 1392
    if (simm != 0)                                                            \
        gen_op_addi(simm);                                                    \
    op_ldst(l##width);                                                        \
    gen_op_store_FT1_fpr(rD(ctx->opcode));                                    \
B
bellard 已提交
1393 1394 1395
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1396 1397
#define GEN_LDUXF(width, opc)                                                 \
GEN_HANDLER(l##width##ux, 0x1F, 0x17, opc, 0x00000001, PPC_INTEGER)           \
B
bellard 已提交
1398 1399
{                                                                             \
    if (rA(ctx->opcode) == 0 ||                                               \
1400
        rA(ctx->opcode) == rD(ctx->opcode)) {                                 \
1401 1402
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1403
    }                                                                         \
B
bellard 已提交
1404 1405
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
1406 1407 1408
    gen_op_add();                                                             \
    op_ldst(l##width);                                                        \
    gen_op_store_FT1_fpr(rD(ctx->opcode));                                    \
B
bellard 已提交
1409 1410 1411
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1412 1413
#define GEN_LDXF(width, opc2, opc3)                                           \
GEN_HANDLER(l##width##x, 0x1F, opc2, opc3, 0x00000001, PPC_INTEGER)           \
B
bellard 已提交
1414 1415 1416 1417 1418 1419
{                                                                             \
    if (rA(ctx->opcode) == 0) {                                               \
        gen_op_load_gpr_T0(rB(ctx->opcode));                                  \
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
        gen_op_load_gpr_T1(rB(ctx->opcode));                                  \
1420
        gen_op_add();                                                         \
B
bellard 已提交
1421
    }                                                                         \
1422 1423
    op_ldst(l##width);                                                        \
    gen_op_store_FT1_fpr(rD(ctx->opcode));                                    \
B
bellard 已提交
1424 1425
}

1426 1427 1428 1429 1430 1431
#define GEN_LDFS(width, op)                                                   \
OP_LD_TABLE(width);                                                           \
GEN_LDF(width, op | 0x20);                                                    \
GEN_LDUF(width, op | 0x21);                                                   \
GEN_LDUXF(width, op | 0x01);                                                  \
GEN_LDXF(width, 0x17, op | 0x00)
B
bellard 已提交
1432 1433

/* lfd lfdu lfdux lfdx */
1434
GEN_LDFS(fd, 0x12);
B
bellard 已提交
1435
/* lfs lfsu lfsux lfsx */
1436
GEN_LDFS(fs, 0x10);
B
bellard 已提交
1437 1438 1439

/***                         Floating-point store                          ***/
#define GEN_STF(width, opc)                                                   \
1440
GEN_HANDLER(st##width, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)              \
B
bellard 已提交
1441 1442 1443
{                                                                             \
    uint32_t simm = SIMM(ctx->opcode);                                        \
    if (rA(ctx->opcode) == 0) {                                               \
1444
        gen_op_set_T0(simm);                                                  \
B
bellard 已提交
1445 1446
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
1447 1448
        if (simm != 0)                                                        \
            gen_op_addi(simm);                                                \
B
bellard 已提交
1449
    }                                                                         \
1450 1451
    gen_op_load_fpr_FT1(rS(ctx->opcode));                                     \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1452 1453
}

1454 1455
#define GEN_STUF(width, opc)                                                  \
GEN_HANDLER(st##width##u, opc, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)           \
B
bellard 已提交
1456
{                                                                             \
1457 1458
    uint32_t simm = SIMM(ctx->opcode);                                        \
    if (rA(ctx->opcode) == 0) {                                               \
1459 1460
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1461
    }                                                                         \
B
bellard 已提交
1462
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
1463 1464 1465 1466
    if (simm != 0)                                                            \
        gen_op_addi(simm);                                                    \
    gen_op_load_fpr_FT1(rS(ctx->opcode));                                     \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1467 1468 1469
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1470 1471
#define GEN_STUXF(width, opc)                                                 \
GEN_HANDLER(st##width##ux, 0x1F, 0x17, opc, 0x00000001, PPC_INTEGER)          \
B
bellard 已提交
1472
{                                                                             \
1473
    if (rA(ctx->opcode) == 0) {                                               \
1474 1475
        RET_INVAL(ctx);                                                       \
        return;                                                               \
1476
    }                                                                         \
B
bellard 已提交
1477 1478
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
1479 1480 1481
    gen_op_add();                                                             \
    gen_op_load_fpr_FT1(rS(ctx->opcode));                                     \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1482 1483 1484
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
}

1485 1486
#define GEN_STXF(width, opc2, opc3)                                           \
GEN_HANDLER(st##width##x, 0x1F, opc2, opc3, 0x00000001, PPC_INTEGER)          \
B
bellard 已提交
1487 1488 1489 1490 1491 1492
{                                                                             \
    if (rA(ctx->opcode) == 0) {                                               \
        gen_op_load_gpr_T0(rB(ctx->opcode));                                  \
    } else {                                                                  \
        gen_op_load_gpr_T0(rA(ctx->opcode));                                  \
        gen_op_load_gpr_T1(rB(ctx->opcode));                                  \
1493
        gen_op_add();                                                         \
B
bellard 已提交
1494
    }                                                                         \
1495 1496
    gen_op_load_fpr_FT1(rS(ctx->opcode));                                     \
    op_ldst(st##width);                                                       \
B
bellard 已提交
1497 1498
}

1499 1500 1501 1502 1503 1504
#define GEN_STFS(width, op)                                                   \
OP_ST_TABLE(width);                                                           \
GEN_STF(width, op | 0x20);                                                    \
GEN_STUF(width, op | 0x21);                                                   \
GEN_STUXF(width, op | 0x01);                                                  \
GEN_STXF(width, 0x17, op | 0x00)
B
bellard 已提交
1505 1506

/* stfd stfdu stfdux stfdx */
1507
GEN_STFS(fd, 0x16);
B
bellard 已提交
1508
/* stfs stfsu stfsux stfsx */
1509
GEN_STFS(fs, 0x14);
B
bellard 已提交
1510 1511 1512 1513 1514

/* Optional: */
/* stfiwx */
GEN_HANDLER(stfiwx, 0x1F, 0x17, 0x1E, 0x00000001, PPC_FLOAT)
{
1515
    RET_INVAL(ctx);
B
bellard 已提交
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
}

/***                                Branch                                 ***/

/* b ba bl bla */
GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
{
    uint32_t li = s_ext24(LI(ctx->opcode)), target;

    if (AA(ctx->opcode) == 0)
B
bellard 已提交
1526
        target = ctx->nip + li - 4;
B
bellard 已提交
1527
    else
1528 1529
        target = li;
    if (LK(ctx->opcode)) {
B
bellard 已提交
1530
        gen_op_setlr(ctx->nip);
1531
    }
1532
    gen_op_b((long)ctx->tb, target);
1533
    ctx->exception = EXCP_BRANCH;
B
bellard 已提交
1534 1535
}

1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
#define BCOND_IM  0
#define BCOND_LR  1
#define BCOND_CTR 2

static inline void gen_bcond(DisasContext *ctx, int type) 
{                                                                             
    uint32_t target = 0;
    uint32_t bo = BO(ctx->opcode);                                            
    uint32_t bi = BI(ctx->opcode);                                            
    uint32_t mask;                                                            
    uint32_t li;

    if ((bo & 0x4) == 0)
        gen_op_dec_ctr();                                                     
    switch(type) {
    case BCOND_IM:
        li = s_ext16(BD(ctx->opcode));
        if (AA(ctx->opcode) == 0) {
B
bellard 已提交
1554
            target = ctx->nip + li - 4;
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567
        } else {
            target = li;
        }
        break;
    case BCOND_CTR:
        gen_op_movl_T1_ctr();
        break;
    default:
    case BCOND_LR:
        gen_op_movl_T1_lr();
        break;
    }
    if (LK(ctx->opcode)) {                                        
B
bellard 已提交
1568
        gen_op_setlr(ctx->nip);
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622
    }
    if (bo & 0x10) {
        /* No CR condition */                                                 
        switch (bo & 0x6) {                                                   
        case 0:                                                               
            gen_op_test_ctr();
            break;
        case 2:                                                               
            gen_op_test_ctrz();
            break;                                                            
        default:
        case 4:                                                               
        case 6:                                                               
            if (type == BCOND_IM) {
                gen_op_b((long)ctx->tb, target);
            } else {
                gen_op_b_T1();
            }
            goto no_test;
        }
    } else {                                                                  
        mask = 1 << (3 - (bi & 0x03));                                        
        gen_op_load_crf_T0(bi >> 2);                                          
        if (bo & 0x8) {                                                       
            switch (bo & 0x6) {                                               
            case 0:                                                           
                gen_op_test_ctr_true(mask);
                break;                                                        
            case 2:                                                           
                gen_op_test_ctrz_true(mask);
                break;                                                        
            default:                                                          
            case 4:                                                           
            case 6:                                                           
                gen_op_test_true(mask);
                break;                                                        
            }                                                                 
        } else {                                                              
            switch (bo & 0x6) {                                               
            case 0:                                                           
                gen_op_test_ctr_false(mask);
                break;                                                        
            case 2:                                                           
                gen_op_test_ctrz_false(mask);
                break;                                                        
            default:
            case 4:                                                           
            case 6:                                                           
                gen_op_test_false(mask);
                break;                                                        
            }                                                                 
        }                                                                     
    }                                                                         
    if (type == BCOND_IM) {
B
bellard 已提交
1623
        gen_op_btest((long)ctx->tb, target, ctx->nip);
1624
    } else {
B
bellard 已提交
1625
        gen_op_btest_T1(ctx->nip);
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
    }
 no_test:
    ctx->exception = EXCP_BRANCH;                                             
}

GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
{                                                                             
    gen_bcond(ctx, BCOND_IM);
}

GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW)
{                                                                             
    gen_bcond(ctx, BCOND_CTR);
}

GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW)
{                                                                             
    gen_bcond(ctx, BCOND_LR);
}
B
bellard 已提交
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 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687

/***                      Condition register logical                       ***/
#define GEN_CRLOGIC(op, opc)                                                  \
GEN_HANDLER(cr##op, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)                 \
{                                                                             \
    gen_op_load_crf_T0(crbA(ctx->opcode) >> 2);                               \
    gen_op_getbit_T0(3 - (crbA(ctx->opcode) & 0x03));                         \
    gen_op_load_crf_T1(crbB(ctx->opcode) >> 2);                               \
    gen_op_getbit_T1(3 - (crbB(ctx->opcode) & 0x03));                         \
    gen_op_##op();                                                            \
    gen_op_load_crf_T1(crbD(ctx->opcode) >> 2);                               \
    gen_op_setcrfbit(~(1 << (3 - (crbD(ctx->opcode) & 0x03))),                \
                     3 - (crbD(ctx->opcode) & 0x03));                         \
    gen_op_store_T1_crf(crbD(ctx->opcode) >> 2);                              \
}

/* crand */
GEN_CRLOGIC(and, 0x08)
/* crandc */
GEN_CRLOGIC(andc, 0x04)
/* creqv */
GEN_CRLOGIC(eqv, 0x09)
/* crnand */
GEN_CRLOGIC(nand, 0x07)
/* crnor */
GEN_CRLOGIC(nor, 0x01)
/* cror */
GEN_CRLOGIC(or, 0x0E)
/* crorc */
GEN_CRLOGIC(orc, 0x0D)
/* crxor */
GEN_CRLOGIC(xor, 0x06)
/* mcrf */
GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER)
{
    gen_op_load_crf_T0(crfS(ctx->opcode));
    gen_op_store_T0_crf(crfD(ctx->opcode));
}

/***                           System linkage                              ***/
/* rfi (supervisor only) */
GEN_HANDLER(rfi, 0x13, 0x12, 0xFF, 0x03FF8001, PPC_FLOW)
{
1688
#if defined(CONFIG_USER_ONLY)
1689
    RET_PRIVOPC(ctx);
1690 1691 1692
#else
    /* Restore CPU state */
    if (!ctx->supervisor) {
1693 1694
        RET_PRIVOPC(ctx);
        return;
1695 1696
    }
    gen_op_rfi();
1697
    RET_EXCP(ctx, EXCP_RFI, 0);
1698
#endif
B
bellard 已提交
1699 1700 1701 1702 1703
}

/* sc */
GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFFFFD, PPC_FLOW)
{
1704
#if defined(CONFIG_USER_ONLY)
1705
    RET_EXCP(ctx, EXCP_SYSCALL_USER, 0);
1706
#else
1707
    RET_EXCP(ctx, EXCP_SYSCALL, 0);
1708
#endif
B
bellard 已提交
1709 1710 1711 1712 1713 1714
}

/***                                Trap                                   ***/
/* tw */
GEN_HANDLER(tw, 0x1F, 0x04, 0xFF, 0x00000001, PPC_FLOW)
{
1715 1716 1717
    gen_op_load_gpr_T0(rA(ctx->opcode));
    gen_op_load_gpr_T1(rB(ctx->opcode));
    gen_op_tw(TO(ctx->opcode));
B
bellard 已提交
1718 1719 1720 1721 1722
}

/* twi */
GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
{
1723 1724 1725 1726 1727 1728
    gen_op_load_gpr_T0(rA(ctx->opcode));
#if 0
    printf("%s: param=0x%04x T0=0x%04x\n", __func__,
           SIMM(ctx->opcode), TO(ctx->opcode));
#endif
    gen_op_twi(SIMM(ctx->opcode), TO(ctx->opcode));
B
bellard 已提交
1729 1730 1731 1732 1733 1734 1735
}

/***                          Processor control                            ***/
static inline int check_spr_access (int spr, int rw, int supervisor)
{
    uint32_t rights = spr_access[spr >> 1] >> (4 * (spr & 1));

1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750
#if 0
    if (spr != LR && spr != CTR) {
    if (loglevel > 0) {
        fprintf(logfile, "%s reg=%d s=%d rw=%d r=0x%02x 0x%02x\n", __func__,
                SPR_ENCODE(spr), supervisor, rw, rights,
                (rights >> ((2 * supervisor) + rw)) & 1);
    } else {
        printf("%s reg=%d s=%d rw=%d r=0x%02x 0x%02x\n", __func__,
               SPR_ENCODE(spr), supervisor, rw, rights,
               (rights >> ((2 * supervisor) + rw)) & 1);
    }
    }
#endif
    if (rights == 0)
        return -1;
B
bellard 已提交
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
    rights = rights >> (2 * supervisor);
    rights = rights >> rw;

    return rights & 1;
}

/* mcrxr */
GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC)
{
    gen_op_load_xer_cr();
    gen_op_store_T0_crf(crfD(ctx->opcode));
    gen_op_clear_xer_cr();
}

/* mfcr */
GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x001FF801, PPC_MISC)
{
    gen_op_load_cr();
    gen_op_store_T0_gpr(rD(ctx->opcode));
}

/* mfmsr */
GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC)
{
1775
#if defined(CONFIG_USER_ONLY)
1776
    RET_PRIVREG(ctx);
1777 1778
#else
    if (!ctx->supervisor) {
1779 1780
        RET_PRIVREG(ctx);
        return;
1781
    }
B
bellard 已提交
1782 1783
    gen_op_load_msr();
    gen_op_store_T0_gpr(rD(ctx->opcode));
1784
#endif
B
bellard 已提交
1785 1786 1787 1788 1789 1790 1791
}

/* mfspr */
GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC)
{
    uint32_t sprn = SPR(ctx->opcode);

1792 1793 1794 1795 1796 1797 1798
#if defined(CONFIG_USER_ONLY)
    switch (check_spr_access(sprn, 0, 0))
#else
    switch (check_spr_access(sprn, 0, ctx->supervisor))
#endif
    {
    case -1:
1799 1800
        RET_EXCP(ctx, EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_SPR);
        return;
1801
    case 0:
1802 1803
        RET_PRIVREG(ctx);
        return;
1804 1805
    default:
        break;
B
bellard 已提交
1806
        }
1807 1808
    switch (sprn) {
    case XER:
B
bellard 已提交
1809 1810
        gen_op_load_xer();
        break;
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 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 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916
    case LR:
        gen_op_load_lr();
        break;
    case CTR:
        gen_op_load_ctr();
        break;
    case IBAT0U:
        gen_op_load_ibat(0, 0);
        break;
    case IBAT1U:
        gen_op_load_ibat(0, 1);
        break;
    case IBAT2U:
        gen_op_load_ibat(0, 2);
        break;
    case IBAT3U:
        gen_op_load_ibat(0, 3);
        break;
    case IBAT4U:
        gen_op_load_ibat(0, 4);
        break;
    case IBAT5U:
        gen_op_load_ibat(0, 5);
        break;
    case IBAT6U:
        gen_op_load_ibat(0, 6);
        break;
    case IBAT7U:
        gen_op_load_ibat(0, 7);
        break;
    case IBAT0L:
        gen_op_load_ibat(1, 0);
        break;
    case IBAT1L:
        gen_op_load_ibat(1, 1);
        break;
    case IBAT2L:
        gen_op_load_ibat(1, 2);
        break;
    case IBAT3L:
        gen_op_load_ibat(1, 3);
        break;
    case IBAT4L:
        gen_op_load_ibat(1, 4);
        break;
    case IBAT5L:
        gen_op_load_ibat(1, 5);
        break;
    case IBAT6L:
        gen_op_load_ibat(1, 6);
        break;
    case IBAT7L:
        gen_op_load_ibat(1, 7);
        break;
    case DBAT0U:
        gen_op_load_dbat(0, 0);
        break;
    case DBAT1U:
        gen_op_load_dbat(0, 1);
        break;
    case DBAT2U:
        gen_op_load_dbat(0, 2);
        break;
    case DBAT3U:
        gen_op_load_dbat(0, 3);
        break;
    case DBAT4U:
        gen_op_load_dbat(0, 4);
        break;
    case DBAT5U:
        gen_op_load_dbat(0, 5);
        break;
    case DBAT6U:
        gen_op_load_dbat(0, 6);
        break;
    case DBAT7U:
        gen_op_load_dbat(0, 7);
        break;
    case DBAT0L:
        gen_op_load_dbat(1, 0);
        break;
    case DBAT1L:
        gen_op_load_dbat(1, 1);
        break;
    case DBAT2L:
        gen_op_load_dbat(1, 2);
        break;
    case DBAT3L:
        gen_op_load_dbat(1, 3);
        break;
    case DBAT4L:
        gen_op_load_dbat(1, 4);
        break;
    case DBAT5L:
        gen_op_load_dbat(1, 5);
        break;
    case DBAT6L:
        gen_op_load_dbat(1, 6);
        break;
    case DBAT7L:
        gen_op_load_dbat(1, 7);
        break;
    case SDR1:
        gen_op_load_sdr1();
        break;
    case V_TBL:
1917
        gen_op_load_tbl();
B
bellard 已提交
1918
        break;
1919
    case V_TBU:
1920
        gen_op_load_tbu();
1921 1922
        break;
    case DECR:
1923
        gen_op_load_decr();
B
bellard 已提交
1924 1925 1926 1927 1928
        break;
    default:
        gen_op_load_spr(sprn);
        break;
    }
1929
    gen_op_store_T0_gpr(rD(ctx->opcode));
B
bellard 已提交
1930 1931 1932 1933 1934 1935 1936 1937
}

/* mftb */
GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MISC)
{
    uint32_t sprn = SPR(ctx->opcode);

        /* We need to update the time base before reading it */
1938 1939
    switch (sprn) {
    case V_TBL:
1940
        gen_op_load_tbl();
B
bellard 已提交
1941
        break;
1942
    case V_TBU:
1943
        gen_op_load_tbu();
B
bellard 已提交
1944 1945
        break;
    default:
1946 1947
        RET_INVAL(ctx);
        return;
B
bellard 已提交
1948
    }
1949
    gen_op_store_T0_gpr(rD(ctx->opcode));
B
bellard 已提交
1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
}

/* mtcrf */
GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00100801, PPC_MISC)
{
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_store_cr(CRM(ctx->opcode));
}

/* mtmsr */
GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC)
{
1962
#if defined(CONFIG_USER_ONLY)
1963
    RET_PRIVREG(ctx);
1964 1965
#else
    if (!ctx->supervisor) {
1966 1967
        RET_PRIVREG(ctx);
        return;
1968
    }
B
bellard 已提交
1969 1970 1971
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_store_msr();
    /* Must stop the translation as machine state (may have) changed */
1972
    RET_MTMSR(ctx);
1973
#endif
B
bellard 已提交
1974 1975 1976 1977 1978 1979 1980
}

/* mtspr */
GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC)
{
    uint32_t sprn = SPR(ctx->opcode);

1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
#if 0
    if (loglevel > 0) {
        fprintf(logfile, "MTSPR %d src=%d (%d)\n", SPR_ENCODE(sprn),
                rS(ctx->opcode), sprn);
    }
#endif
#if defined(CONFIG_USER_ONLY)
    switch (check_spr_access(sprn, 1, 0))
#else
    switch (check_spr_access(sprn, 1, ctx->supervisor))
#endif
    {
    case -1:
1994
        RET_EXCP(ctx, EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_SPR);
1995 1996
        break;
    case 0:
1997
        RET_PRIVREG(ctx);
1998 1999 2000 2001
        break;
    default:
        break;
    }
B
bellard 已提交
2002
    gen_op_load_gpr_T0(rS(ctx->opcode));
2003 2004
    switch (sprn) {
    case XER:
B
bellard 已提交
2005
        gen_op_store_xer();
2006 2007 2008 2009 2010 2011 2012 2013 2014
        break;
    case LR:
        gen_op_store_lr();
        break;
    case CTR:
        gen_op_store_ctr();
        break;
    case IBAT0U:
        gen_op_store_ibat(0, 0);
B
bellard 已提交
2015
        RET_MTMSR(ctx);
2016 2017 2018
        break;
    case IBAT1U:
        gen_op_store_ibat(0, 1);
B
bellard 已提交
2019
        RET_MTMSR(ctx);
2020 2021 2022
        break;
    case IBAT2U:
        gen_op_store_ibat(0, 2);
B
bellard 已提交
2023
        RET_MTMSR(ctx);
2024 2025 2026
        break;
    case IBAT3U:
        gen_op_store_ibat(0, 3);
B
bellard 已提交
2027
        RET_MTMSR(ctx);
2028 2029 2030
        break;
    case IBAT4U:
        gen_op_store_ibat(0, 4);
B
bellard 已提交
2031
        RET_MTMSR(ctx);
2032 2033 2034
        break;
    case IBAT5U:
        gen_op_store_ibat(0, 5);
B
bellard 已提交
2035
        RET_MTMSR(ctx);
2036 2037 2038
        break;
    case IBAT6U:
        gen_op_store_ibat(0, 6);
B
bellard 已提交
2039
        RET_MTMSR(ctx);
2040 2041 2042
        break;
    case IBAT7U:
        gen_op_store_ibat(0, 7);
B
bellard 已提交
2043
        RET_MTMSR(ctx);
2044 2045 2046
        break;
    case IBAT0L:
        gen_op_store_ibat(1, 0);
B
bellard 已提交
2047
        RET_MTMSR(ctx);
2048 2049 2050
        break;
    case IBAT1L:
        gen_op_store_ibat(1, 1);
B
bellard 已提交
2051
        RET_MTMSR(ctx);
2052 2053 2054
        break;
    case IBAT2L:
        gen_op_store_ibat(1, 2);
B
bellard 已提交
2055
        RET_MTMSR(ctx);
2056 2057 2058
        break;
    case IBAT3L:
        gen_op_store_ibat(1, 3);
B
bellard 已提交
2059
        RET_MTMSR(ctx);
2060 2061 2062
        break;
    case IBAT4L:
        gen_op_store_ibat(1, 4);
B
bellard 已提交
2063
        RET_MTMSR(ctx);
2064 2065 2066
        break;
    case IBAT5L:
        gen_op_store_ibat(1, 5);
B
bellard 已提交
2067
        RET_MTMSR(ctx);
2068 2069 2070
        break;
    case IBAT6L:
        gen_op_store_ibat(1, 6);
B
bellard 已提交
2071
        RET_MTMSR(ctx);
2072 2073 2074
        break;
    case IBAT7L:
        gen_op_store_ibat(1, 7);
B
bellard 已提交
2075
        RET_MTMSR(ctx);
2076 2077 2078
        break;
    case DBAT0U:
        gen_op_store_dbat(0, 0);
B
bellard 已提交
2079
        RET_MTMSR(ctx);
2080 2081 2082
        break;
    case DBAT1U:
        gen_op_store_dbat(0, 1);
B
bellard 已提交
2083
        RET_MTMSR(ctx);
2084 2085 2086
        break;
    case DBAT2U:
        gen_op_store_dbat(0, 2);
B
bellard 已提交
2087
        RET_MTMSR(ctx);
2088 2089 2090
        break;
    case DBAT3U:
        gen_op_store_dbat(0, 3);
B
bellard 已提交
2091
        RET_MTMSR(ctx);
2092 2093 2094
        break;
    case DBAT4U:
        gen_op_store_dbat(0, 4);
B
bellard 已提交
2095
        RET_MTMSR(ctx);
2096 2097 2098
        break;
    case DBAT5U:
        gen_op_store_dbat(0, 5);
B
bellard 已提交
2099
        RET_MTMSR(ctx);
2100 2101 2102
        break;
    case DBAT6U:
        gen_op_store_dbat(0, 6);
B
bellard 已提交
2103
        RET_MTMSR(ctx);
2104 2105 2106
        break;
    case DBAT7U:
        gen_op_store_dbat(0, 7);
B
bellard 已提交
2107
        RET_MTMSR(ctx);
2108 2109 2110
        break;
    case DBAT0L:
        gen_op_store_dbat(1, 0);
B
bellard 已提交
2111
        RET_MTMSR(ctx);
2112 2113 2114
        break;
    case DBAT1L:
        gen_op_store_dbat(1, 1);
B
bellard 已提交
2115
        RET_MTMSR(ctx);
2116 2117 2118
        break;
    case DBAT2L:
        gen_op_store_dbat(1, 2);
B
bellard 已提交
2119
        RET_MTMSR(ctx);
2120 2121 2122
        break;
    case DBAT3L:
        gen_op_store_dbat(1, 3);
B
bellard 已提交
2123
        RET_MTMSR(ctx);
2124 2125 2126
        break;
    case DBAT4L:
        gen_op_store_dbat(1, 4);
B
bellard 已提交
2127
        RET_MTMSR(ctx);
2128 2129 2130
        break;
    case DBAT5L:
        gen_op_store_dbat(1, 5);
B
bellard 已提交
2131
        RET_MTMSR(ctx);
2132 2133 2134
        break;
    case DBAT6L:
        gen_op_store_dbat(1, 6);
B
bellard 已提交
2135
        RET_MTMSR(ctx);
2136 2137 2138
        break;
    case DBAT7L:
        gen_op_store_dbat(1, 7);
B
bellard 已提交
2139
        RET_MTMSR(ctx);
2140 2141 2142
        break;
    case SDR1:
        gen_op_store_sdr1();
B
bellard 已提交
2143
        RET_MTMSR(ctx);
2144 2145
        break;
    case O_TBL:
2146
        gen_op_store_tbl();
2147 2148
        break;
    case O_TBU:
2149
        gen_op_store_tbu();
2150 2151 2152 2153
        break;
    case DECR:
        gen_op_store_decr();
        break;
B
bellard 已提交
2154 2155 2156 2157 2158
#if 0
    case HID0:
        gen_op_store_hid0();
        break;
#endif
2159
    default:
B
bellard 已提交
2160
        gen_op_store_spr(sprn);
2161
        break;
B
bellard 已提交
2162 2163 2164 2165 2166 2167
    }
}

/***                         Cache management                              ***/
/* For now, all those will be implemented as nop:
 * this is valid, regarding the PowerPC specs...
2168
 * We just have to flush tb while invalidating instruction cache lines...
B
bellard 已提交
2169 2170
 */
/* dcbf */
2171
GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2172
{
2173 2174 2175 2176 2177 2178 2179 2180
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_add();
    }
    op_ldst(lbz);
B
bellard 已提交
2181 2182 2183
}

/* dcbi (Supervisor only) */
2184
GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2185
{
2186
#if defined(CONFIG_USER_ONLY)
2187
    RET_PRIVOPC(ctx);
2188 2189
#else
    if (!ctx->supervisor) {
2190 2191
        RET_PRIVOPC(ctx);
        return;
2192
    }
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_add();
    }
    op_ldst(lbz);
    op_ldst(stb);
#endif
B
bellard 已提交
2203 2204 2205
}

/* dcdst */
2206
GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2207
{
2208 2209 2210 2211 2212 2213 2214 2215
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_add();
    }
    op_ldst(lbz);
B
bellard 已提交
2216 2217 2218
}

/* dcbt */
2219
GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2220 2221 2222 2223
{
}

/* dcbtst */
2224
GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2225 2226 2227 2228
{
}

/* dcbz */
2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239
#if defined(CONFIG_USER_ONLY)
#define op_dcbz() gen_op_dcbz_raw()
#else
#define op_dcbz() (*gen_op_dcbz[ctx->mem_idx])()
static GenOpFunc *gen_op_dcbz[] = {
    &gen_op_dcbz_user,
    &gen_op_dcbz_kernel,
};
#endif

GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2240
{
B
bellard 已提交
2241 2242 2243 2244 2245
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
2246
        gen_op_add();
B
bellard 已提交
2247
    }
2248
    op_dcbz();
B
bellard 已提交
2249
    gen_op_check_reservation();
B
bellard 已提交
2250 2251 2252
}

/* icbi */
2253
GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE)
B
bellard 已提交
2254
{
B
bellard 已提交
2255 2256 2257 2258 2259
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
2260
        gen_op_add();
B
bellard 已提交
2261
    }
2262
    gen_op_icbi();
B
bellard 已提交
2263 2264 2265 2266
}

/* Optional: */
/* dcba */
2267
GEN_HANDLER(dcba, 0x1F, 0x16, 0x07, 0x03E00001, PPC_CACHE_OPT)
B
bellard 已提交
2268 2269 2270 2271 2272 2273 2274 2275
{
}

/***                    Segment register manipulation                      ***/
/* Supervisor only: */
/* mfsr */
GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT)
{
2276
#if defined(CONFIG_USER_ONLY)
2277
    RET_PRIVREG(ctx);
2278 2279
#else
    if (!ctx->supervisor) {
2280 2281
        RET_PRIVREG(ctx);
        return;
2282 2283 2284 2285
    }
    gen_op_load_sr(SR(ctx->opcode));
    gen_op_store_T0_gpr(rD(ctx->opcode));
#endif
B
bellard 已提交
2286 2287 2288
}

/* mfsrin */
2289
GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT)
B
bellard 已提交
2290
{
2291
#if defined(CONFIG_USER_ONLY)
2292
    RET_PRIVREG(ctx);
2293 2294
#else
    if (!ctx->supervisor) {
2295 2296
        RET_PRIVREG(ctx);
        return;
2297 2298 2299 2300 2301
    }
    gen_op_load_gpr_T1(rB(ctx->opcode));
    gen_op_load_srin();
    gen_op_store_T0_gpr(rD(ctx->opcode));
#endif
B
bellard 已提交
2302 2303 2304
}

/* mtsr */
B
bellard 已提交
2305
GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT)
B
bellard 已提交
2306
{
2307
#if defined(CONFIG_USER_ONLY)
2308
    RET_PRIVREG(ctx);
2309 2310
#else
    if (!ctx->supervisor) {
2311 2312
        RET_PRIVREG(ctx);
        return;
2313 2314 2315 2316
    }
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_store_sr(SR(ctx->opcode));
#endif
B
bellard 已提交
2317 2318 2319
}

/* mtsrin */
2320
GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT)
B
bellard 已提交
2321
{
2322
#if defined(CONFIG_USER_ONLY)
2323
    RET_PRIVREG(ctx);
2324 2325
#else
    if (!ctx->supervisor) {
2326 2327
        RET_PRIVREG(ctx);
        return;
2328 2329 2330 2331 2332
    }
    gen_op_load_gpr_T0(rS(ctx->opcode));
    gen_op_load_gpr_T1(rB(ctx->opcode));
    gen_op_store_srin();
#endif
B
bellard 已提交
2333 2334 2335 2336 2337
}

/***                      Lookaside buffer management                      ***/
/* Optional & supervisor only: */
/* tlbia */
2338
GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_OPT)
B
bellard 已提交
2339
{
2340
#if defined(CONFIG_USER_ONLY)
2341
    RET_PRIVOPC(ctx);
2342 2343
#else
    if (!ctx->supervisor) {
2344 2345 2346 2347
        if (loglevel)
            fprintf(logfile, "%s: ! supervisor\n", __func__);
        RET_PRIVOPC(ctx);
        return;
2348 2349
    }
    gen_op_tlbia();
B
bellard 已提交
2350
    RET_MTMSR(ctx);
2351
#endif
B
bellard 已提交
2352 2353 2354
}

/* tlbie */
2355
GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM)
B
bellard 已提交
2356
{
2357
#if defined(CONFIG_USER_ONLY)
2358
    RET_PRIVOPC(ctx);
2359 2360
#else
    if (!ctx->supervisor) {
2361 2362
        RET_PRIVOPC(ctx);
        return;
2363 2364 2365
    }
    gen_op_load_gpr_T0(rB(ctx->opcode));
    gen_op_tlbie();
B
bellard 已提交
2366
    RET_MTMSR(ctx);
2367
#endif
B
bellard 已提交
2368 2369 2370
}

/* tlbsync */
B
bellard 已提交
2371
GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM)
B
bellard 已提交
2372
{
2373
#if defined(CONFIG_USER_ONLY)
2374
    RET_PRIVOPC(ctx);
2375 2376
#else
    if (!ctx->supervisor) {
2377 2378
        RET_PRIVOPC(ctx);
        return;
2379 2380 2381 2382
    }
    /* This has no effect: it should ensure that all previous
     * tlbie have completed
     */
B
bellard 已提交
2383
    RET_MTMSR(ctx);
2384
#endif
B
bellard 已提交
2385 2386 2387 2388 2389
}

/***                              External control                         ***/
/* Optional: */
/* eciwx */
2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405
#if defined(CONFIG_USER_ONLY)
#define op_eciwx() gen_op_eciwx_raw()
#define op_ecowx() gen_op_ecowx_raw()
#else
#define op_eciwx() (*gen_op_eciwx[ctx->mem_idx])()
#define op_ecowx() (*gen_op_ecowx[ctx->mem_idx])()
static GenOpFunc *gen_op_eciwx[] = {
    &gen_op_eciwx_user,
    &gen_op_eciwx_kernel,
};
static GenOpFunc *gen_op_ecowx[] = {
    &gen_op_ecowx_user,
    &gen_op_ecowx_kernel,
};
#endif

B
bellard 已提交
2406 2407
GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN)
{
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417
    /* Should check EAR[E] & alignment ! */
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_add();
    }
    op_eciwx();
    gen_op_store_T0_gpr(rD(ctx->opcode));
B
bellard 已提交
2418 2419 2420 2421 2422
}

/* ecowx */
GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN)
{
2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
    /* Should check EAR[E] & alignment ! */
    if (rA(ctx->opcode) == 0) {
        gen_op_load_gpr_T0(rB(ctx->opcode));
    } else {
        gen_op_load_gpr_T0(rA(ctx->opcode));
        gen_op_load_gpr_T1(rB(ctx->opcode));
        gen_op_add();
    }
    gen_op_load_gpr_T2(rS(ctx->opcode));
    op_ecowx();
B
bellard 已提交
2433 2434 2435 2436 2437 2438
}

/* End opcode list */
GEN_OPCODE_MARK(end);

/*****************************************************************************/
2439
#include <stdlib.h>
B
bellard 已提交
2440
#include <string.h>
2441 2442

int fflush (FILE *stream);
B
bellard 已提交
2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464

/* Main ppc opcodes table:
 * at init, all opcodes are invalids
 */
static opc_handler_t *ppc_opcodes[0x40];

/* Opcode types */
enum {
    PPC_DIRECT   = 0, /* Opcode routine        */
    PPC_INDIRECT = 1, /* Indirect opcode table */
};

static inline int is_indirect_opcode (void *handler)
{
    return ((unsigned long)handler & 0x03) == PPC_INDIRECT;
}

static inline opc_handler_t **ind_table(void *handler)
{
    return (opc_handler_t **)((unsigned long)handler & ~3);
}

2465
/* Instruction table creation */
B
bellard 已提交
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
/* Opcodes tables creation */
static void fill_new_table (opc_handler_t **table, int len)
{
    int i;

    for (i = 0; i < len; i++)
        table[i] = &invalid_handler;
}

static int create_new_table (opc_handler_t **table, unsigned char idx)
{
    opc_handler_t **tmp;

    tmp = malloc(0x20 * sizeof(opc_handler_t));
    if (tmp == NULL)
        return -1;
    fill_new_table(tmp, 0x20);
    table[idx] = (opc_handler_t *)((unsigned long)tmp | PPC_INDIRECT);

    return 0;
}

static int insert_in_table (opc_handler_t **table, unsigned char idx,
                            opc_handler_t *handler)
{
    if (table[idx] != &invalid_handler)
        return -1;
    table[idx] = handler;

    return 0;
}

2498 2499
static int register_direct_insn (opc_handler_t **ppc_opcodes,
                                 unsigned char idx, opc_handler_t *handler)
B
bellard 已提交
2500 2501
{
    if (insert_in_table(ppc_opcodes, idx, handler) < 0) {
2502
        printf("*** ERROR: opcode %02x already assigned in main "
B
bellard 已提交
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
                "opcode table\n", idx);
        return -1;
    }

    return 0;
}

static int register_ind_in_table (opc_handler_t **table,
                                  unsigned char idx1, unsigned char idx2,
                                  opc_handler_t *handler)
{
    if (table[idx1] == &invalid_handler) {
        if (create_new_table(table, idx1) < 0) {
2516
            printf("*** ERROR: unable to create indirect table "
B
bellard 已提交
2517 2518 2519 2520 2521
                    "idx=%02x\n", idx1);
            return -1;
        }
    } else {
        if (!is_indirect_opcode(table[idx1])) {
2522
            printf("*** ERROR: idx %02x already assigned to a direct "
B
bellard 已提交
2523 2524 2525 2526 2527 2528
                    "opcode\n", idx1);
            return -1;
        }
    }
    if (handler != NULL &&
        insert_in_table(ind_table(table[idx1]), idx2, handler) < 0) {
2529
        printf("*** ERROR: opcode %02x already assigned in "
B
bellard 已提交
2530 2531 2532 2533 2534 2535 2536
                "opcode table %02x\n", idx2, idx1);
        return -1;
    }

    return 0;
}

2537 2538
static int register_ind_insn (opc_handler_t **ppc_opcodes,
                              unsigned char idx1, unsigned char idx2,
B
bellard 已提交
2539 2540 2541 2542 2543 2544 2545 2546 2547
                               opc_handler_t *handler)
{
    int ret;

    ret = register_ind_in_table(ppc_opcodes, idx1, idx2, handler);

    return ret;
}

2548 2549
static int register_dblind_insn (opc_handler_t **ppc_opcodes, 
                                 unsigned char idx1, unsigned char idx2,
B
bellard 已提交
2550 2551 2552
                                  unsigned char idx3, opc_handler_t *handler)
{
    if (register_ind_in_table(ppc_opcodes, idx1, idx2, NULL) < 0) {
2553
        printf("*** ERROR: unable to join indirect table idx "
B
bellard 已提交
2554 2555 2556 2557 2558
                "[%02x-%02x]\n", idx1, idx2);
        return -1;
    }
    if (register_ind_in_table(ind_table(ppc_opcodes[idx1]), idx2, idx3,
                              handler) < 0) {
2559
        printf("*** ERROR: unable to insert opcode "
B
bellard 已提交
2560 2561 2562 2563 2564 2565 2566
                "[%02x-%02x-%02x]\n", idx1, idx2, idx3);
        return -1;
    }

    return 0;
}

2567
static int register_insn (opc_handler_t **ppc_opcodes, opcode_t *insn)
B
bellard 已提交
2568 2569 2570
{
    if (insn->opc2 != 0xFF) {
        if (insn->opc3 != 0xFF) {
2571 2572
            if (register_dblind_insn(ppc_opcodes, insn->opc1, insn->opc2,
                                     insn->opc3, &insn->handler) < 0)
B
bellard 已提交
2573 2574
                return -1;
        } else {
2575 2576
            if (register_ind_insn(ppc_opcodes, insn->opc1,
                                  insn->opc2, &insn->handler) < 0)
B
bellard 已提交
2577 2578 2579
                return -1;
        }
    } else {
2580
        if (register_direct_insn(ppc_opcodes, insn->opc1, &insn->handler) < 0)
B
bellard 已提交
2581 2582 2583 2584 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
            return -1;
    }

    return 0;
}

static int test_opcode_table (opc_handler_t **table, int len)
{
    int i, count, tmp;

    for (i = 0, count = 0; i < len; i++) {
        /* Consistency fixup */
        if (table[i] == NULL)
            table[i] = &invalid_handler;
        if (table[i] != &invalid_handler) {
            if (is_indirect_opcode(table[i])) {
                tmp = test_opcode_table(ind_table(table[i]), 0x20);
                if (tmp == 0) {
                    free(table[i]);
                    table[i] = &invalid_handler;
                } else {
                    count++;
                }
            } else {
                count++;
            }
        }
    }

    return count;
}

2613
static void fix_opcode_tables (opc_handler_t **ppc_opcodes)
B
bellard 已提交
2614 2615
{
    if (test_opcode_table(ppc_opcodes, 0x40) == 0)
2616
        printf("*** WARNING: no opcode defined !\n");
B
bellard 已提交
2617 2618
}

2619
#define SPR_RIGHTS(rw, priv) (1 << ((2 * (priv)) + (rw)))
B
bellard 已提交
2620 2621 2622 2623 2624 2625 2626 2627 2628 2629
#define SPR_UR SPR_RIGHTS(0, 0)
#define SPR_UW SPR_RIGHTS(1, 0)
#define SPR_SR SPR_RIGHTS(0, 1)
#define SPR_SW SPR_RIGHTS(1, 1)

#define spr_set_rights(spr, rights)                            \
do {                                                           \
    spr_access[(spr) >> 1] |= ((rights) << (4 * ((spr) & 1))); \
} while (0)

2630
static void init_spr_rights (uint32_t pvr)
B
bellard 已提交
2631 2632
{
    /* XER    (SPR 1) */
2633
    spr_set_rights(XER,    SPR_UR | SPR_UW | SPR_SR | SPR_SW);
B
bellard 已提交
2634
    /* LR     (SPR 8) */
2635
    spr_set_rights(LR,     SPR_UR | SPR_UW | SPR_SR | SPR_SW);
B
bellard 已提交
2636
    /* CTR    (SPR 9) */
2637
    spr_set_rights(CTR,    SPR_UR | SPR_UW | SPR_SR | SPR_SW);
B
bellard 已提交
2638
    /* TBL    (SPR 268) */
2639
    spr_set_rights(V_TBL,  SPR_UR | SPR_SR);
B
bellard 已提交
2640
    /* TBU    (SPR 269) */
2641
    spr_set_rights(V_TBU,  SPR_UR | SPR_SR);
B
bellard 已提交
2642
    /* DSISR  (SPR 18) */
2643
    spr_set_rights(DSISR,  SPR_SR | SPR_SW);
B
bellard 已提交
2644
    /* DAR    (SPR 19) */
2645
    spr_set_rights(DAR,    SPR_SR | SPR_SW);
B
bellard 已提交
2646
    /* DEC    (SPR 22) */
2647
    spr_set_rights(DECR,   SPR_SR | SPR_SW);
B
bellard 已提交
2648
    /* SDR1   (SPR 25) */
2649 2650 2651 2652 2653
    spr_set_rights(SDR1,   SPR_SR | SPR_SW);
    /* SRR0   (SPR 26) */
    spr_set_rights(SRR0,   SPR_SR | SPR_SW);
    /* SRR1   (SPR 27) */
    spr_set_rights(SRR1,   SPR_SR | SPR_SW);
B
bellard 已提交
2654
    /* SPRG0  (SPR 272) */
2655
    spr_set_rights(SPRG0,  SPR_SR | SPR_SW);
B
bellard 已提交
2656
    /* SPRG1  (SPR 273) */
2657
    spr_set_rights(SPRG1,  SPR_SR | SPR_SW);
B
bellard 已提交
2658
    /* SPRG2  (SPR 274) */
2659
    spr_set_rights(SPRG2,  SPR_SR | SPR_SW);
B
bellard 已提交
2660
    /* SPRG3  (SPR 275) */
2661
    spr_set_rights(SPRG3,  SPR_SR | SPR_SW);
B
bellard 已提交
2662
    /* ASR    (SPR 280) */
2663
    spr_set_rights(ASR,    SPR_SR | SPR_SW);
B
bellard 已提交
2664
    /* EAR    (SPR 282) */
2665 2666 2667 2668 2669 2670 2671
    spr_set_rights(EAR,    SPR_SR | SPR_SW);
    /* TBL    (SPR 284) */
    spr_set_rights(O_TBL,  SPR_SW);
    /* TBU    (SPR 285) */
    spr_set_rights(O_TBU,  SPR_SW);
    /* PVR    (SPR 287) */
    spr_set_rights(PVR,    SPR_SR);
B
bellard 已提交
2672
    /* IBAT0U (SPR 528) */
2673
    spr_set_rights(IBAT0U, SPR_SR | SPR_SW);
B
bellard 已提交
2674
    /* IBAT0L (SPR 529) */
2675
    spr_set_rights(IBAT0L, SPR_SR | SPR_SW);
B
bellard 已提交
2676
    /* IBAT1U (SPR 530) */
2677
    spr_set_rights(IBAT1U, SPR_SR | SPR_SW);
B
bellard 已提交
2678
    /* IBAT1L (SPR 531) */
2679
    spr_set_rights(IBAT1L, SPR_SR | SPR_SW);
B
bellard 已提交
2680
    /* IBAT2U (SPR 532) */
2681
    spr_set_rights(IBAT2U, SPR_SR | SPR_SW);
B
bellard 已提交
2682
    /* IBAT2L (SPR 533) */
2683
    spr_set_rights(IBAT2L, SPR_SR | SPR_SW);
B
bellard 已提交
2684
    /* IBAT3U (SPR 534) */
2685
    spr_set_rights(IBAT3U, SPR_SR | SPR_SW);
B
bellard 已提交
2686
    /* IBAT3L (SPR 535) */
2687
    spr_set_rights(IBAT3L, SPR_SR | SPR_SW);
B
bellard 已提交
2688
    /* DBAT0U (SPR 536) */
2689
    spr_set_rights(DBAT0U, SPR_SR | SPR_SW);
B
bellard 已提交
2690
    /* DBAT0L (SPR 537) */
2691
    spr_set_rights(DBAT0L, SPR_SR | SPR_SW);
B
bellard 已提交
2692
    /* DBAT1U (SPR 538) */
2693
    spr_set_rights(DBAT1U, SPR_SR | SPR_SW);
B
bellard 已提交
2694
    /* DBAT1L (SPR 539) */
2695
    spr_set_rights(DBAT1L, SPR_SR | SPR_SW);
B
bellard 已提交
2696
    /* DBAT2U (SPR 540) */
2697
    spr_set_rights(DBAT2U, SPR_SR | SPR_SW);
B
bellard 已提交
2698
    /* DBAT2L (SPR 541) */
2699
    spr_set_rights(DBAT2L, SPR_SR | SPR_SW);
B
bellard 已提交
2700
    /* DBAT3U (SPR 542) */
2701
    spr_set_rights(DBAT3U, SPR_SR | SPR_SW);
B
bellard 已提交
2702
    /* DBAT3L (SPR 543) */
2703
    spr_set_rights(DBAT3L, SPR_SR | SPR_SW);
B
bellard 已提交
2704
    /* FPECR  (SPR 1022) */
2705
    spr_set_rights(FPECR,  SPR_SR | SPR_SW);
B
bellard 已提交
2706 2707 2708 2709 2710 2711 2712 2713 2714
    /* Special registers for PPC 604 */
    if ((pvr & 0xFFFF0000) == 0x00040000) {
        /* IABR */
        spr_set_rights(IABR ,  SPR_SR | SPR_SW);
        /* DABR   (SPR 1013) */
        spr_set_rights(DABR,   SPR_SR | SPR_SW);
        /* HID0 */
        spr_set_rights(HID0,   SPR_SR | SPR_SW);
        /* PIR */
2715
    spr_set_rights(PIR,    SPR_SR | SPR_SW);
B
bellard 已提交
2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726
        /* PMC1 */
        spr_set_rights(PMC1,   SPR_SR | SPR_SW);
        /* PMC2 */
        spr_set_rights(PMC2,   SPR_SR | SPR_SW);
        /* MMCR0 */
        spr_set_rights(MMCR0,  SPR_SR | SPR_SW);
        /* SIA */
        spr_set_rights(SIA,    SPR_SR | SPR_SW);
        /* SDA */
        spr_set_rights(SDA,    SPR_SR | SPR_SW);
    }
2727 2728 2729 2730
    /* Special registers for MPC740/745/750/755 (aka G3) & IBM 750 */
    if ((pvr & 0xFFFF0000) == 0x00080000 ||
        (pvr & 0xFFFF0000) == 0x70000000) {
        /* HID0 */
B
bellard 已提交
2731
        spr_set_rights(HID0,   SPR_SR | SPR_SW);
2732
        /* HID1 */
B
bellard 已提交
2733
        spr_set_rights(HID1,   SPR_SR | SPR_SW);
2734
        /* IABR */
B
bellard 已提交
2735
        spr_set_rights(IABR,   SPR_SR | SPR_SW);
2736
        /* ICTC */
B
bellard 已提交
2737
        spr_set_rights(ICTC,   SPR_SR | SPR_SW);
2738
        /* L2CR */
B
bellard 已提交
2739
        spr_set_rights(L2CR,   SPR_SR | SPR_SW);
2740
        /* MMCR0 */
B
bellard 已提交
2741
        spr_set_rights(MMCR0,  SPR_SR | SPR_SW);
2742
        /* MMCR1 */
B
bellard 已提交
2743
        spr_set_rights(MMCR1,  SPR_SR | SPR_SW);
2744
        /* PMC1 */
B
bellard 已提交
2745
        spr_set_rights(PMC1,   SPR_SR | SPR_SW);
2746
        /* PMC2 */
B
bellard 已提交
2747
        spr_set_rights(PMC2,   SPR_SR | SPR_SW);
2748
        /* PMC3 */
B
bellard 已提交
2749
        spr_set_rights(PMC3,   SPR_SR | SPR_SW);
2750
        /* PMC4 */
B
bellard 已提交
2751
        spr_set_rights(PMC4,   SPR_SR | SPR_SW);
2752
        /* SIA */
B
bellard 已提交
2753 2754 2755
        spr_set_rights(SIA,    SPR_SR | SPR_SW);
        /* SDA */
        spr_set_rights(SDA,    SPR_SR | SPR_SW);
2756
        /* THRM1 */
B
bellard 已提交
2757
        spr_set_rights(THRM1,  SPR_SR | SPR_SW);
2758
        /* THRM2 */
B
bellard 已提交
2759
        spr_set_rights(THRM2,  SPR_SR | SPR_SW);
2760
        /* THRM3 */
B
bellard 已提交
2761
        spr_set_rights(THRM3,  SPR_SR | SPR_SW);
2762
        /* UMMCR0 */
B
bellard 已提交
2763
        spr_set_rights(UMMCR0, SPR_UR | SPR_UW);
2764
        /* UMMCR1 */
B
bellard 已提交
2765
        spr_set_rights(UMMCR1, SPR_UR | SPR_UW);
2766
        /* UPMC1 */
B
bellard 已提交
2767
        spr_set_rights(UPMC1,  SPR_UR | SPR_UW);
2768
        /* UPMC2 */
B
bellard 已提交
2769
        spr_set_rights(UPMC2,  SPR_UR | SPR_UW);
2770
        /* UPMC3 */
B
bellard 已提交
2771
        spr_set_rights(UPMC3,  SPR_UR | SPR_UW);
2772
        /* UPMC4 */
B
bellard 已提交
2773
        spr_set_rights(UPMC4,  SPR_UR | SPR_UW);
2774
        /* USIA */
B
bellard 已提交
2775
        spr_set_rights(USIA,   SPR_UR | SPR_UW);
2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819
    }
    /* MPC755 has special registers */
    if (pvr == 0x00083100) {
        /* SPRG4 */
        spr_set_rights(SPRG4, SPR_SR | SPR_SW);
        /* SPRG5 */
        spr_set_rights(SPRG5, SPR_SR | SPR_SW);
        /* SPRG6 */
        spr_set_rights(SPRG6, SPR_SR | SPR_SW);
        /* SPRG7 */
        spr_set_rights(SPRG7, SPR_SR | SPR_SW);
        /* IBAT4U */
        spr_set_rights(IBAT4U, SPR_SR | SPR_SW);
        /* IBAT4L */
        spr_set_rights(IBAT4L, SPR_SR | SPR_SW);
        /* IBAT5U */
        spr_set_rights(IBAT5U, SPR_SR | SPR_SW);
        /* IBAT5L */
        spr_set_rights(IBAT5L, SPR_SR | SPR_SW);
        /* IBAT6U */
        spr_set_rights(IBAT6U, SPR_SR | SPR_SW);
        /* IBAT6L */
        spr_set_rights(IBAT6L, SPR_SR | SPR_SW);
        /* IBAT7U */
        spr_set_rights(IBAT7U, SPR_SR | SPR_SW);
        /* IBAT7L */
        spr_set_rights(IBAT7L, SPR_SR | SPR_SW);
        /* DBAT4U */
        spr_set_rights(DBAT4U, SPR_SR | SPR_SW);
        /* DBAT4L */
        spr_set_rights(DBAT4L, SPR_SR | SPR_SW);
        /* DBAT5U */
        spr_set_rights(DBAT5U, SPR_SR | SPR_SW);
        /* DBAT5L */
        spr_set_rights(DBAT5L, SPR_SR | SPR_SW);
        /* DBAT6U */
        spr_set_rights(DBAT6U, SPR_SR | SPR_SW);
        /* DBAT6L */
        spr_set_rights(DBAT6L, SPR_SR | SPR_SW);
        /* DBAT7U */
        spr_set_rights(DBAT7U, SPR_SR | SPR_SW);
        /* DBAT7L */
        spr_set_rights(DBAT7L, SPR_SR | SPR_SW);
        /* DMISS */
B
bellard 已提交
2820
        spr_set_rights(DMISS,  SPR_SR | SPR_SW);
2821
        /* DCMP */
B
bellard 已提交
2822
        spr_set_rights(DCMP,   SPR_SR | SPR_SW);
2823
        /* DHASH1 */
B
bellard 已提交
2824
        spr_set_rights(DHASH1, SPR_SR | SPR_SW);
2825
        /* DHASH2 */
B
bellard 已提交
2826
        spr_set_rights(DHASH2, SPR_SR | SPR_SW);
2827
        /* IMISS */
B
bellard 已提交
2828
        spr_set_rights(IMISS,  SPR_SR | SPR_SW);
2829
        /* ICMP */
B
bellard 已提交
2830
        spr_set_rights(ICMP,   SPR_SR | SPR_SW);
2831
        /* RPA */
B
bellard 已提交
2832
        spr_set_rights(RPA,    SPR_SR | SPR_SW);
2833
        /* HID2 */
B
bellard 已提交
2834
        spr_set_rights(HID2,   SPR_SR | SPR_SW);
2835
        /* L2PM */
B
bellard 已提交
2836
        spr_set_rights(L2PM,   SPR_SR | SPR_SW);
2837
    }
B
bellard 已提交
2838 2839
}

2840 2841
/*****************************************************************************/
/* PPC "main stream" common instructions (no optional ones) */
B
bellard 已提交
2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858

typedef struct ppc_proc_t {
    int flags;
    void *specific;
} ppc_proc_t;

typedef struct ppc_def_t {
    unsigned long pvr;
    unsigned long pvr_mask;
    ppc_proc_t *proc;
} ppc_def_t;

static ppc_proc_t ppc_proc_common = {
    .flags    = PPC_COMMON,
    .specific = NULL,
};

2859 2860 2861 2862 2863
static ppc_proc_t ppc_proc_G3 = {
    .flags    = PPC_750,
    .specific = NULL,
};

B
bellard 已提交
2864 2865
static ppc_def_t ppc_defs[] =
{
2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878
    /* MPC740/745/750/755 (G3) */
    {
        .pvr      = 0x00080000,
        .pvr_mask = 0xFFFF0000,
        .proc     = &ppc_proc_G3,
    },
    /* IBM 750FX (G3 embedded) */
    {
        .pvr      = 0x70000000,
        .pvr_mask = 0xFFFF0000,
        .proc     = &ppc_proc_G3,
    },
    /* Fallback (generic PPC) */
B
bellard 已提交
2879 2880 2881 2882 2883 2884 2885
    {
        .pvr      = 0x00000000,
        .pvr_mask = 0x00000000,
        .proc     = &ppc_proc_common,
    },
};

2886
static int create_ppc_proc (opc_handler_t **ppc_opcodes, unsigned long pvr)
B
bellard 已提交
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900
{
    opcode_t *opc;
    int i, flags;

    fill_new_table(ppc_opcodes, 0x40);
    for (i = 0; ; i++) {
        if ((ppc_defs[i].pvr & ppc_defs[i].pvr_mask) ==
            (pvr & ppc_defs[i].pvr_mask)) {
            flags = ppc_defs[i].proc->flags;
            break;
        }
    }
    
    for (opc = &opc_start + 1; opc != &opc_end; opc++) {
2901 2902 2903
        if ((opc->handler.type & flags) != 0)
            if (register_insn(ppc_opcodes, opc) < 0) {
                printf("*** ERROR initializing PPC instruction "
B
bellard 已提交
2904 2905 2906 2907 2908
                        "0x%02x 0x%02x 0x%02x\n", opc->opc1, opc->opc2,
                        opc->opc3);
                return -1;
            }
    }
2909
    fix_opcode_tables(ppc_opcodes);
B
bellard 已提交
2910 2911 2912 2913

    return 0;
}

2914

B
bellard 已提交
2915
/*****************************************************************************/
2916
/* Misc PPC helpers */
B
bellard 已提交
2917 2918 2919 2920 2921

void cpu_ppc_dump_state(CPUPPCState *env, FILE *f, int flags)
{
    int i;

2922 2923
    fprintf(f, "nip=0x%08x LR=0x%08x CTR=0x%08x XER=0x%08x "
            "MSR=0x%08x\n", env->nip, env->lr, env->ctr,
2924
            _load_xer(env), _load_msr(env));
B
bellard 已提交
2925 2926
        for (i = 0; i < 32; i++) {
            if ((i & 7) == 0)
2927 2928
            fprintf(f, "GPR%02d:", i);
        fprintf(f, " %08x", env->gpr[i]);
B
bellard 已提交
2929
            if ((i & 7) == 7)
2930
            fprintf(f, "\n");
B
bellard 已提交
2931
        }
2932
    fprintf(f, "CR: 0x");
B
bellard 已提交
2933
        for (i = 0; i < 8; i++)
2934 2935
        fprintf(f, "%01x", env->crf[i]);
    fprintf(f, "  [");
B
bellard 已提交
2936 2937 2938 2939 2940 2941 2942 2943
        for (i = 0; i < 8; i++) {
            char a = '-';
            if (env->crf[i] & 0x08)
                a = 'L';
            else if (env->crf[i] & 0x04)
                a = 'G';
            else if (env->crf[i] & 0x02)
                a = 'E';
2944
        fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
B
bellard 已提交
2945
        }
2946
    fprintf(f, " ] ");
2947 2948
    fprintf(f, "TB: 0x%08x %08x\n", cpu_ppc_load_tbu(env),
            cpu_ppc_load_tbl(env));
B
bellard 已提交
2949 2950
        for (i = 0; i < 16; i++) {
            if ((i & 3) == 0)
2951 2952
            fprintf(f, "FPR%02d:", i);
        fprintf(f, " %016llx", *((uint64_t *)&env->fpr[i]));
B
bellard 已提交
2953
            if ((i & 3) == 3)
2954
            fprintf(f, "\n");
B
bellard 已提交
2955
    }
2956 2957
    fprintf(f, "SRR0 0x%08x SRR1 0x%08x DECR=0x%08x\n",
            env->spr[SRR0], env->spr[SRR1], cpu_ppc_load_decr(env));
2958 2959
    fprintf(f, "reservation 0x%08x\n", env->reserve);
    fflush(f);
B
bellard 已提交
2960 2961
}

2962 2963 2964 2965
#if !defined(CONFIG_USER_ONLY) && defined (USE_OPENFIRMWARE)
int setup_machine (CPUPPCState *env, uint32_t mid);
#endif

B
bellard 已提交
2966 2967 2968 2969 2970 2971
CPUPPCState *cpu_ppc_init(void)
{
    CPUPPCState *env;

    cpu_exec_init();

B
bellard 已提交
2972
    env = qemu_mallocz(sizeof(CPUPPCState));
B
bellard 已提交
2973 2974
    if (!env)
        return NULL;
2975 2976 2977 2978 2979 2980 2981 2982
#if !defined(CONFIG_USER_ONLY) && defined (USE_OPEN_FIRMWARE)
    setup_machine(env, 0);
#else
//    env->spr[PVR] = 0; /* Basic PPC */
    env->spr[PVR] = 0x00080100; /* G3 CPU */
//    env->spr[PVR] = 0x00083100; /* MPC755 (G3 embedded) */
//    env->spr[PVR] = 0x00070100; /* IBM 750FX */
#endif
B
bellard 已提交
2983
    tlb_flush(env, 1);
2984 2985 2986 2987
#if defined (DO_SINGLE_STEP)
    /* Single step trace mode */
    msr_se = 1;
#endif
B
bellard 已提交
2988 2989
    msr_fp = 1; /* Allow floating point exceptions */
    msr_me = 1; /* Allow machine check exceptions  */
2990 2991
#if defined(CONFIG_USER_ONLY)
    msr_pr = 1;
B
bellard 已提交
2992 2993 2994
    cpu_ppc_register(env, 0x00080000);
#else
    env->nip = 0xFFFFFFFC;
2995
#endif
2996
    env->access_type = ACCESS_INT;
B
bellard 已提交
2997
    cpu_single_env = env;
B
bellard 已提交
2998 2999 3000
    return env;
}

B
bellard 已提交
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010
int cpu_ppc_register (CPUPPCState *env, uint32_t pvr)
{
    env->spr[PVR] = pvr;
    if (create_ppc_proc(ppc_opcodes, env->spr[PVR]) < 0)
        return -1;
    init_spr_rights(env->spr[PVR]);

    return 0;
}

B
bellard 已提交
3011 3012 3013 3014 3015 3016
void cpu_ppc_close(CPUPPCState *env)
{
    /* Should also remove all opcode tables... */
    free(env);
}

3017 3018 3019 3020
/*****************************************************************************/
int print_insn_powerpc (FILE *out, unsigned long insn, unsigned memaddr,
                        int dialect);

B
bellard 已提交
3021 3022 3023
int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
                                    int search_pc)
{
3024
    DisasContext ctx, *ctxp = &ctx;
B
bellard 已提交
3025 3026 3027 3028 3029 3030 3031 3032 3033
    opc_handler_t **table, *handler;
    uint32_t pc_start;
    uint16_t *gen_opc_end;
    int j, lj = -1;

    pc_start = tb->pc;
    gen_opc_ptr = gen_opc_buf;
    gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
    gen_opparam_ptr = gen_opparam_buf;
B
bellard 已提交
3034
    ctx.nip = pc_start;
B
bellard 已提交
3035
    ctx.tb = tb;
3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046
    ctx.exception = EXCP_NONE;
#if defined(CONFIG_USER_ONLY)
    ctx.mem_idx = 0;
#else
    ctx.supervisor = 1 - msr_pr;
    ctx.mem_idx = (1 - msr_pr);
#endif
#if defined (DO_SINGLE_STEP)
    /* Single step trace mode */
    msr_se = 1;
#endif
3047
    env->access_type = ACCESS_CODE;
3048 3049
    /* Set env in case of segfault during code fetch */
    while (ctx.exception == EXCP_NONE && gen_opc_ptr < gen_opc_end) {
B
bellard 已提交
3050 3051 3052 3053 3054 3055 3056 3057
        if (search_pc) {
            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;
B
bellard 已提交
3058
                gen_opc_pc[lj] = ctx.nip;
B
bellard 已提交
3059 3060 3061
                gen_opc_instr_start[lj] = 1;
            }
        }
3062 3063
#if defined PPC_DEBUG_DISAS
        if (loglevel & CPU_LOG_TB_IN_ASM) {
B
bellard 已提交
3064
            fprintf(logfile, "----------------\n");
B
bellard 已提交
3065
            fprintf(logfile, "nip=%08x super=%d ir=%d\n",
3066 3067 3068
                    ctx.nip, 1 - msr_pr, msr_ir);
        }
#endif
B
bellard 已提交
3069
        ctx.opcode = ldl_code((void *)ctx.nip);
3070 3071
#if defined PPC_DEBUG_DISAS
        if (loglevel & CPU_LOG_TB_IN_ASM) {
3072 3073 3074
            fprintf(logfile, "translate opcode %08x (%02x %02x %02x)\n",
                    ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
                    opc3(ctx.opcode));
B
bellard 已提交
3075 3076
        }
#endif
B
bellard 已提交
3077
        ctx.nip += 4;
B
bellard 已提交
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089
        table = ppc_opcodes;
        handler = table[opc1(ctx.opcode)];
        if (is_indirect_opcode(handler)) {
            table = ind_table(handler);
            handler = table[opc2(ctx.opcode)];
            if (is_indirect_opcode(handler)) {
                table = ind_table(handler);
                handler = table[opc3(ctx.opcode)];
            }
        }
        /* Is opcode *REALLY* valid ? */
                if (handler->handler == &gen_invalid) {
B
bellard 已提交
3090
            if (loglevel > 0) {
B
bellard 已提交
3091
                    fprintf(logfile, "invalid/unsupported opcode: "
B
bellard 已提交
3092
                        "%02x - %02x - %02x (%08x) 0x%08x %d\n",
3093
                            opc1(ctx.opcode), opc2(ctx.opcode),
B
bellard 已提交
3094 3095 3096 3097 3098 3099 3100
                        opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, msr_ir);
            } else {
                printf("invalid/unsupported opcode: "
                       "%02x - %02x - %02x (%08x) 0x%08x %d\n",
                       opc1(ctx.opcode), opc2(ctx.opcode),
                       opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, msr_ir);
            }
B
bellard 已提交
3101
                } else {
B
bellard 已提交
3102 3103
            if ((ctx.opcode & handler->inval) != 0) {
                if (loglevel > 0) {
B
bellard 已提交
3104
                    fprintf(logfile, "invalid bits: %08x for opcode: "
B
bellard 已提交
3105
                            "%02x -%02x - %02x (0x%08x) (0x%08x)\n",
B
bellard 已提交
3106 3107
                            ctx.opcode & handler->inval, opc1(ctx.opcode),
                            opc2(ctx.opcode), opc3(ctx.opcode),
B
bellard 已提交
3108
                            ctx.opcode, ctx.nip - 4);
3109 3110
                } else {
                    printf("invalid bits: %08x for opcode: "
B
bellard 已提交
3111
                           "%02x -%02x - %02x (0x%08x) (0x%08x)\n",
3112 3113
                            ctx.opcode & handler->inval, opc1(ctx.opcode),
                            opc2(ctx.opcode), opc3(ctx.opcode),
B
bellard 已提交
3114
                           ctx.opcode, ctx.nip - 4);
3115
            }
B
bellard 已提交
3116 3117
                RET_INVAL(ctxp);
                break;
B
bellard 已提交
3118 3119
            }
        }
B
bellard 已提交
3120
        (*(handler->handler))(&ctx);
3121 3122 3123 3124 3125 3126 3127
        /* Check trace mode exceptions */
        if ((msr_be && ctx.exception == EXCP_BRANCH) ||
            /* Check in single step trace mode
             * we need to stop except if:
             * - rfi, trap or syscall
             * - first instruction of an exception handler
             */
B
bellard 已提交
3128 3129 3130
            (msr_se && (ctx.nip < 0x100 ||
                        ctx.nip > 0xF00 ||
                        (ctx.nip & 0xFC) != 0x04) &&
3131 3132
             ctx.exception != EXCP_SYSCALL && ctx.exception != EXCP_RFI &&
             ctx.exception != EXCP_TRAP)) {
3133
            RET_EXCP(ctxp, EXCP_TRACE, 0);
3134
        }
3135
        /* if we reach a page boundary, stop generation */
B
bellard 已提交
3136
        if ((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) {
3137
            RET_EXCP(ctxp, EXCP_BRANCH, 0);
B
bellard 已提交
3138
    }
3139
    }
3140 3141 3142 3143
    if (ctx.exception == EXCP_NONE) {
        gen_op_b((unsigned long)ctx.tb, ctx.nip);
    } else if (ctx.exception != EXCP_BRANCH) {
        gen_op_set_T0(0);
3144 3145
    }
#if 1
B
bellard 已提交
3146 3147 3148 3149
    /* TO BE FIXED: T0 hasn't got a proper value, which makes tb_add_jump
     *              do bad business and then qemu crashes !
     */
    gen_op_set_T0(0);
3150
#endif
B
bellard 已提交
3151 3152 3153
    /* Generate the return instruction */
    gen_op_exit_tb();
    *gen_opc_ptr = INDEX_op_end;
3154 3155 3156 3157 3158
    if (search_pc) {
        j = gen_opc_ptr - gen_opc_buf;
        lj++;
        while (lj <= j)
            gen_opc_instr_start[lj++] = 0;
B
bellard 已提交
3159
        tb->size = 0;
B
bellard 已提交
3160
#if 0
3161 3162 3163
        if (loglevel > 0) {
            page_dump(logfile);
        }
B
bellard 已提交
3164
#endif
3165
    } else {
B
bellard 已提交
3166
        tb->size = ctx.nip - pc_start;
3167
    }
B
bellard 已提交
3168
#ifdef DEBUG_DISAS
3169
    if (loglevel & CPU_LOG_TB_CPU) {
3170 3171
        fprintf(logfile, "---------------- excp: %04x\n", ctx.exception);
        cpu_ppc_dump_state(env, logfile, 0);
3172 3173
    }
    if (loglevel & CPU_LOG_TB_IN_ASM) {
B
bellard 已提交
3174
        fprintf(logfile, "IN: %s\n", lookup_symbol((void *)pc_start));
B
bellard 已提交
3175
	disas(logfile, (void *)pc_start, ctx.nip - pc_start, 0, 0);
B
bellard 已提交
3176
        fprintf(logfile, "\n");
3177 3178
    }
    if (loglevel & CPU_LOG_TB_OP) {
B
bellard 已提交
3179 3180 3181 3182 3183
        fprintf(logfile, "OP:\n");
        dump_ops(gen_opc_buf, gen_opparam_buf);
        fprintf(logfile, "\n");
    }
#endif
B
bellard 已提交
3184
    env->access_type = ACCESS_INT;
B
bellard 已提交
3185 3186 3187 3188

    return 0;
}

3189
int gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
B
bellard 已提交
3190 3191 3192 3193
{
    return gen_intermediate_code_internal(env, tb, 0);
}

3194
int gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
B
bellard 已提交
3195 3196 3197
{
    return gen_intermediate_code_internal(env, tb, 1);
}