Statistics
| Branch: | Revision:

root / target-ppc / translate.c @ a9d9eb8f

History | View | Annotate | Download (235.6 kB)

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

    
26
#include "cpu.h"
27
#include "exec-all.h"
28
#include "disas.h"
29

    
30
/* Include definitions for instructions classes and implementations flags */
31
//#define DO_SINGLE_STEP
32
//#define PPC_DEBUG_DISAS
33
//#define DEBUG_MEMORY_ACCESSES
34
//#define DO_PPC_STATISTICS
35

    
36
/*****************************************************************************/
37
/* Code translation helpers                                                  */
38
#if defined(USE_DIRECT_JUMP)
39
#define TBPARAM(x)
40
#else
41
#define TBPARAM(x) (long)(x)
42
#endif
43

    
44
enum {
45
#define DEF(s, n, copy_size) INDEX_op_ ## s,
46
#include "opc.h"
47
#undef DEF
48
    NB_OPS,
49
};
50

    
51
static uint16_t *gen_opc_ptr;
52
static uint32_t *gen_opparam_ptr;
53

    
54
#include "gen-op.h"
55

    
56
static always_inline void gen_set_T0 (target_ulong val)
57
{
58
#if defined(TARGET_PPC64)
59
    if (val >> 32)
60
        gen_op_set_T0_64(val >> 32, val);
61
    else
62
#endif
63
        gen_op_set_T0(val);
64
}
65

    
66
static always_inline void gen_set_T1 (target_ulong val)
67
{
68
#if defined(TARGET_PPC64)
69
    if (val >> 32)
70
        gen_op_set_T1_64(val >> 32, val);
71
    else
72
#endif
73
        gen_op_set_T1(val);
74
}
75

    
76
#define GEN8(func, NAME)                                                      \
77
static GenOpFunc *NAME ## _table [8] = {                                      \
78
NAME ## 0, NAME ## 1, NAME ## 2, NAME ## 3,                                   \
79
NAME ## 4, NAME ## 5, NAME ## 6, NAME ## 7,                                   \
80
};                                                                            \
81
static always_inline void func (int n)                                        \
82
{                                                                             \
83
    NAME ## _table[n]();                                                      \
84
}
85

    
86
#define GEN16(func, NAME)                                                     \
87
static GenOpFunc *NAME ## _table [16] = {                                     \
88
NAME ## 0, NAME ## 1, NAME ## 2, NAME ## 3,                                   \
89
NAME ## 4, NAME ## 5, NAME ## 6, NAME ## 7,                                   \
90
NAME ## 8, NAME ## 9, NAME ## 10, NAME ## 11,                                 \
91
NAME ## 12, NAME ## 13, NAME ## 14, NAME ## 15,                               \
92
};                                                                            \
93
static always_inline void func (int n)                                        \
94
{                                                                             \
95
    NAME ## _table[n]();                                                      \
96
}
97

    
98
#define GEN32(func, NAME)                                                     \
99
static GenOpFunc *NAME ## _table [32] = {                                     \
100
NAME ## 0, NAME ## 1, NAME ## 2, NAME ## 3,                                   \
101
NAME ## 4, NAME ## 5, NAME ## 6, NAME ## 7,                                   \
102
NAME ## 8, NAME ## 9, NAME ## 10, NAME ## 11,                                 \
103
NAME ## 12, NAME ## 13, NAME ## 14, NAME ## 15,                               \
104
NAME ## 16, NAME ## 17, NAME ## 18, NAME ## 19,                               \
105
NAME ## 20, NAME ## 21, NAME ## 22, NAME ## 23,                               \
106
NAME ## 24, NAME ## 25, NAME ## 26, NAME ## 27,                               \
107
NAME ## 28, NAME ## 29, NAME ## 30, NAME ## 31,                               \
108
};                                                                            \
109
static always_inline void func (int n)                                        \
110
{                                                                             \
111
    NAME ## _table[n]();                                                      \
112
}
113

    
114
/* Condition register moves */
115
GEN8(gen_op_load_crf_T0, gen_op_load_crf_T0_crf);
116
GEN8(gen_op_load_crf_T1, gen_op_load_crf_T1_crf);
117
GEN8(gen_op_store_T0_crf, gen_op_store_T0_crf_crf);
118
GEN8(gen_op_store_T1_crf, gen_op_store_T1_crf_crf);
119

    
120
/* Floating point condition and status register moves */
121
GEN8(gen_op_load_fpscr_T0, gen_op_load_fpscr_T0_fpscr);
122
GEN8(gen_op_store_T0_fpscr, gen_op_store_T0_fpscr_fpscr);
123
GEN8(gen_op_clear_fpscr, gen_op_clear_fpscr_fpscr);
124
static always_inline void gen_op_store_T0_fpscri (int n, uint8_t param)
125
{
126
    gen_op_set_T0(param);
127
    gen_op_store_T0_fpscr(n);
128
}
129

    
130
/* General purpose registers moves */
131
GEN32(gen_op_load_gpr_T0, gen_op_load_gpr_T0_gpr);
132
GEN32(gen_op_load_gpr_T1, gen_op_load_gpr_T1_gpr);
133
GEN32(gen_op_load_gpr_T2, gen_op_load_gpr_T2_gpr);
134

    
135
GEN32(gen_op_store_T0_gpr, gen_op_store_T0_gpr_gpr);
136
GEN32(gen_op_store_T1_gpr, gen_op_store_T1_gpr_gpr);
137
#if 0 // unused
138
GEN32(gen_op_store_T2_gpr, gen_op_store_T2_gpr_gpr);
139
#endif
140

    
141
/* floating point registers moves */
142
GEN32(gen_op_load_fpr_FT0, gen_op_load_fpr_FT0_fpr);
143
GEN32(gen_op_load_fpr_FT1, gen_op_load_fpr_FT1_fpr);
144
GEN32(gen_op_load_fpr_FT2, gen_op_load_fpr_FT2_fpr);
145
GEN32(gen_op_store_FT0_fpr, gen_op_store_FT0_fpr_fpr);
146
GEN32(gen_op_store_FT1_fpr, gen_op_store_FT1_fpr_fpr);
147
#if 0 // unused
148
GEN32(gen_op_store_FT2_fpr, gen_op_store_FT2_fpr_fpr);
149
#endif
150

    
151
/* internal defines */
152
typedef struct DisasContext {
153
    struct TranslationBlock *tb;
154
    target_ulong nip;
155
    uint32_t opcode;
156
    uint32_t exception;
157
    /* Routine used to access memory */
158
    int mem_idx;
159
    /* Translation flags */
160
#if !defined(CONFIG_USER_ONLY)
161
    int supervisor;
162
#endif
163
#if defined(TARGET_PPC64)
164
    int sf_mode;
165
#endif
166
    int fpu_enabled;
167
    int altivec_enabled;
168
#if defined(TARGET_PPCEMB)
169
    int spe_enabled;
170
#endif
171
    ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */
172
    int singlestep_enabled;
173
    int dcache_line_size;
174
} DisasContext;
175

    
176
struct opc_handler_t {
177
    /* invalid bits */
178
    uint32_t inval;
179
    /* instruction type */
180
    uint64_t type;
181
    /* handler */
182
    void (*handler)(DisasContext *ctx);
183
#if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
184
    const unsigned char *oname;
185
#endif
186
#if defined(DO_PPC_STATISTICS)
187
    uint64_t count;
188
#endif
189
};
190

    
191
static always_inline void gen_set_Rc0 (DisasContext *ctx)
192
{
193
#if defined(TARGET_PPC64)
194
    if (ctx->sf_mode)
195
        gen_op_cmpi_64(0);
196
    else
197
#endif
198
        gen_op_cmpi(0);
199
    gen_op_set_Rc0();
200
}
201

    
202
static always_inline void gen_update_nip (DisasContext *ctx, target_ulong nip)
203
{
204
#if defined(TARGET_PPC64)
205
    if (ctx->sf_mode)
206
        gen_op_update_nip_64(nip >> 32, nip);
207
    else
208
#endif
209
        gen_op_update_nip(nip);
210
}
211

    
212
#define GEN_EXCP(ctx, excp, error)                                            \
213
do {                                                                          \
214
    if ((ctx)->exception == POWERPC_EXCP_NONE) {                              \
215
        gen_update_nip(ctx, (ctx)->nip);                                      \
216
    }                                                                         \
217
    gen_op_raise_exception_err((excp), (error));                              \
218
    ctx->exception = (excp);                                                  \
219
} while (0)
220

    
221
#define GEN_EXCP_INVAL(ctx)                                                   \
222
GEN_EXCP((ctx), POWERPC_EXCP_PROGRAM,                                         \
223
         POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL)
224

    
225
#define GEN_EXCP_PRIVOPC(ctx)                                                 \
226
GEN_EXCP((ctx), POWERPC_EXCP_PROGRAM,                                         \
227
         POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_OPC)
228

    
229
#define GEN_EXCP_PRIVREG(ctx)                                                 \
230
GEN_EXCP((ctx), POWERPC_EXCP_PROGRAM,                                         \
231
         POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_REG)
232

    
233
#define GEN_EXCP_NO_FP(ctx)                                                   \
234
GEN_EXCP(ctx, POWERPC_EXCP_FPU, 0)
235

    
236
#define GEN_EXCP_NO_AP(ctx)                                                   \
237
GEN_EXCP(ctx, POWERPC_EXCP_APU, 0)
238

    
239
#define GEN_EXCP_NO_VR(ctx)                                                   \
240
GEN_EXCP(ctx, POWERPC_EXCP_VPU, 0)
241

    
242
/* Stop translation */
243
static always_inline void GEN_STOP (DisasContext *ctx)
244
{
245
    gen_update_nip(ctx, ctx->nip);
246
    ctx->exception = POWERPC_EXCP_STOP;
247
}
248

    
249
/* No need to update nip here, as execution flow will change */
250
static always_inline void GEN_SYNC (DisasContext *ctx)
251
{
252
    ctx->exception = POWERPC_EXCP_SYNC;
253
}
254

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

    
260
typedef struct opcode_t {
261
    unsigned char opc1, opc2, opc3;
262
#if HOST_LONG_BITS == 64 /* Explicitely align to 64 bits */
263
    unsigned char pad[5];
264
#else
265
    unsigned char pad[1];
266
#endif
267
    opc_handler_t handler;
268
    const unsigned char *oname;
269
} opcode_t;
270

    
271
/*****************************************************************************/
272
/***                           Instruction decoding                        ***/
273
#define EXTRACT_HELPER(name, shift, nb)                                       \
274
static always_inline uint32_t name (uint32_t opcode)                          \
275
{                                                                             \
276
    return (opcode >> (shift)) & ((1 << (nb)) - 1);                           \
277
}
278

    
279
#define EXTRACT_SHELPER(name, shift, nb)                                      \
280
static always_inline int32_t name (uint32_t opcode)                           \
281
{                                                                             \
282
    return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1));                \
283
}
284

    
285
/* Opcode part 1 */
286
EXTRACT_HELPER(opc1, 26, 6);
287
/* Opcode part 2 */
288
EXTRACT_HELPER(opc2, 1, 5);
289
/* Opcode part 3 */
290
EXTRACT_HELPER(opc3, 6, 5);
291
/* Update Cr0 flags */
292
EXTRACT_HELPER(Rc, 0, 1);
293
/* Destination */
294
EXTRACT_HELPER(rD, 21, 5);
295
/* Source */
296
EXTRACT_HELPER(rS, 21, 5);
297
/* First operand */
298
EXTRACT_HELPER(rA, 16, 5);
299
/* Second operand */
300
EXTRACT_HELPER(rB, 11, 5);
301
/* Third operand */
302
EXTRACT_HELPER(rC, 6, 5);
303
/***                               Get CRn                                 ***/
304
EXTRACT_HELPER(crfD, 23, 3);
305
EXTRACT_HELPER(crfS, 18, 3);
306
EXTRACT_HELPER(crbD, 21, 5);
307
EXTRACT_HELPER(crbA, 16, 5);
308
EXTRACT_HELPER(crbB, 11, 5);
309
/* SPR / TBL */
310
EXTRACT_HELPER(_SPR, 11, 10);
311
static always_inline uint32_t SPR (uint32_t opcode)
312
{
313
    uint32_t sprn = _SPR(opcode);
314

    
315
    return ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
316
}
317
/***                              Get constants                            ***/
318
EXTRACT_HELPER(IMM, 12, 8);
319
/* 16 bits signed immediate value */
320
EXTRACT_SHELPER(SIMM, 0, 16);
321
/* 16 bits unsigned immediate value */
322
EXTRACT_HELPER(UIMM, 0, 16);
323
/* Bit count */
324
EXTRACT_HELPER(NB, 11, 5);
325
/* Shift count */
326
EXTRACT_HELPER(SH, 11, 5);
327
/* Mask start */
328
EXTRACT_HELPER(MB, 6, 5);
329
/* Mask end */
330
EXTRACT_HELPER(ME, 1, 5);
331
/* Trap operand */
332
EXTRACT_HELPER(TO, 21, 5);
333

    
334
EXTRACT_HELPER(CRM, 12, 8);
335
EXTRACT_HELPER(FM, 17, 8);
336
EXTRACT_HELPER(SR, 16, 4);
337
EXTRACT_HELPER(FPIMM, 20, 4);
338

    
339
/***                            Jump target decoding                       ***/
340
/* Displacement */
341
EXTRACT_SHELPER(d, 0, 16);
342
/* Immediate address */
343
static always_inline target_ulong LI (uint32_t opcode)
344
{
345
    return (opcode >> 0) & 0x03FFFFFC;
346
}
347

    
348
static always_inline uint32_t BD (uint32_t opcode)
349
{
350
    return (opcode >> 0) & 0xFFFC;
351
}
352

    
353
EXTRACT_HELPER(BO, 21, 5);
354
EXTRACT_HELPER(BI, 16, 5);
355
/* Absolute/relative address */
356
EXTRACT_HELPER(AA, 1, 1);
357
/* Link */
358
EXTRACT_HELPER(LK, 0, 1);
359

    
360
/* Create a mask between <start> and <end> bits */
361
static always_inline target_ulong MASK (uint32_t start, uint32_t end)
362
{
363
    target_ulong ret;
364

    
365
#if defined(TARGET_PPC64)
366
    if (likely(start == 0)) {
367
        ret = (uint64_t)(-1ULL) << (63 - end);
368
    } else if (likely(end == 63)) {
369
        ret = (uint64_t)(-1ULL) >> start;
370
    }
371
#else
372
    if (likely(start == 0)) {
373
        ret = (uint32_t)(-1ULL) << (31  - end);
374
    } else if (likely(end == 31)) {
375
        ret = (uint32_t)(-1ULL) >> start;
376
    }
377
#endif
378
    else {
379
        ret = (((target_ulong)(-1ULL)) >> (start)) ^
380
            (((target_ulong)(-1ULL) >> (end)) >> 1);
381
        if (unlikely(start > end))
382
            return ~ret;
383
    }
384

    
385
    return ret;
386
}
387

    
388
/*****************************************************************************/
389
/* PowerPC Instructions types definitions                                    */
390
enum {
391
    PPC_NONE          = 0x0000000000000000ULL,
392
    /* PowerPC base instructions set                                         */
393
    PPC_INSNS_BASE    = 0x0000000000000001ULL,
394
    /* integer operations instructions                                       */
395
#define PPC_INTEGER PPC_INSNS_BASE
396
    /* flow control instructions                                             */
397
#define PPC_FLOW    PPC_INSNS_BASE
398
    /* virtual memory instructions                                           */
399
#define PPC_MEM     PPC_INSNS_BASE
400
    /* ld/st with reservation instructions                                   */
401
#define PPC_RES     PPC_INSNS_BASE
402
    /* cache control instructions                                            */
403
#define PPC_CACHE   PPC_INSNS_BASE
404
    /* spr/msr access instructions                                           */
405
#define PPC_MISC    PPC_INSNS_BASE
406
    /* Optional floating point instructions                                  */
407
    PPC_FLOAT         = 0x0000000000000002ULL,
408
    PPC_FLOAT_FSQRT   = 0x0000000000000004ULL,
409
    PPC_FLOAT_FRES    = 0x0000000000000008ULL,
410
    PPC_FLOAT_FRSQRTE = 0x0000000000000010ULL,
411
    PPC_FLOAT_FSEL    = 0x0000000000000020ULL,
412
    PPC_FLOAT_STFIWX  = 0x0000000000000040ULL,
413
    /* external control instructions                                         */
414
    PPC_EXTERN        = 0x0000000000000080ULL,
415
    /* segment register access instructions                                  */
416
    PPC_SEGMENT       = 0x0000000000000100ULL,
417
    /* Optional cache control instruction                                    */
418
    PPC_CACHE_DCBA    = 0x0000000000000200ULL,
419
    /* Optional memory control instructions                                  */
420
    PPC_MEM_TLBIA     = 0x0000000000000400ULL,
421
    PPC_MEM_TLBIE     = 0x0000000000000800ULL,
422
    PPC_MEM_TLBSYNC   = 0x0000000000001000ULL,
423
    /* eieio & sync                                                          */
424
    PPC_MEM_SYNC      = 0x0000000000002000ULL,
425
    /* PowerPC 6xx TLB management instructions                               */
426
    PPC_6xx_TLB       = 0x0000000000004000ULL,
427
    /* Altivec support                                                       */
428
    PPC_ALTIVEC       = 0x0000000000008000ULL,
429
    /* Time base mftb instruction                                            */
430
    PPC_MFTB          = 0x0000000000010000ULL,
431
    /* Embedded PowerPC dedicated instructions                               */
432
    PPC_EMB_COMMON    = 0x0000000000020000ULL,
433
    /* PowerPC 40x exception model                                           */
434
    PPC_40x_EXCP      = 0x0000000000040000ULL,
435
    /* PowerPC 40x TLB management instructions                               */
436
    PPC_40x_TLB       = 0x0000000000080000ULL,
437
    /* PowerPC 405 Mac instructions                                          */
438
    PPC_405_MAC       = 0x0000000000100000ULL,
439
    /* PowerPC 440 specific instructions                                     */
440
    PPC_440_SPEC      = 0x0000000000200000ULL,
441
    /* Power-to-PowerPC bridge (601)                                         */
442
    PPC_POWER_BR      = 0x0000000000400000ULL,
443
    /* PowerPC 602 specific                                                  */
444
    PPC_602_SPEC      = 0x0000000000800000ULL,
445
    /* Deprecated instructions                                               */
446
    /* Original POWER instruction set                                        */
447
    PPC_POWER         = 0x0000000001000000ULL,
448
    /* POWER2 instruction set extension                                      */
449
    PPC_POWER2        = 0x0000000002000000ULL,
450
    /* Power RTC support                                                     */
451
    PPC_POWER_RTC     = 0x0000000004000000ULL,
452
    /* 64 bits PowerPC instruction set                                       */
453
    PPC_64B           = 0x0000000008000000ULL,
454
    /* 64 bits hypervisor extensions                                         */
455
    PPC_64H           = 0x0000000010000000ULL,
456
    /* segment register access instructions for PowerPC 64 "bridge"          */
457
    PPC_SEGMENT_64B   = 0x0000000020000000ULL,
458
    /* BookE (embedded) PowerPC specification                                */
459
    PPC_BOOKE         = 0x0000000040000000ULL,
460
    /* eieio                                                                 */
461
    PPC_MEM_EIEIO     = 0x0000000080000000ULL,
462
    /* e500 vector instructions                                              */
463
    PPC_E500_VECTOR   = 0x0000000100000000ULL,
464
    /* PowerPC 4xx dedicated instructions                                    */
465
    PPC_4xx_COMMON    = 0x0000000200000000ULL,
466
    /* PowerPC 2.03 specification extensions                                 */
467
    PPC_203           = 0x0000000400000000ULL,
468
    /* PowerPC 2.03 SPE extension                                            */
469
    PPC_SPE           = 0x0000000800000000ULL,
470
    /* PowerPC 2.03 SPE floating-point extension                             */
471
    PPC_SPEFPU        = 0x0000001000000000ULL,
472
    /* SLB management                                                        */
473
    PPC_SLBI          = 0x0000002000000000ULL,
474
    /* PowerPC 40x ibct instructions                                         */
475
    PPC_40x_ICBT      = 0x0000004000000000ULL,
476
    /* PowerPC 74xx TLB management instructions                              */
477
    PPC_74xx_TLB      = 0x0000008000000000ULL,
478
    /* More BookE (embedded) instructions...                                 */
479
    PPC_BOOKE_EXT     = 0x0000010000000000ULL,
480
    /* rfmci is not implemented in all BookE PowerPC                         */
481
    PPC_RFMCI         = 0x0000020000000000ULL,
482
    /* user-mode DCR access, implemented in PowerPC 460                      */
483
    PPC_DCRUX         = 0x0000040000000000ULL,
484
    /* New floating-point extensions (PowerPC 2.0x)                          */
485
    PPC_FLOAT_EXT     = 0x0000080000000000ULL,
486
    /* New wait instruction (PowerPC 2.0x)                                   */
487
    PPC_WAIT          = 0x0000100000000000ULL,
488
    /* New 64 bits extensions (PowerPC 2.0x)                                 */
489
    PPC_64BX          = 0x0000200000000000ULL,
490
    /* dcbz instruction with fixed cache line size                           */
491
    PPC_CACHE_DCBZ    = 0x0000400000000000ULL,
492
    /* dcbz instruction with tunable cache line size                         */
493
    PPC_CACHE_DCBZT   = 0x0000800000000000ULL,
494
};
495

    
496
/*****************************************************************************/
497
/* PowerPC instructions table                                                */
498
#if HOST_LONG_BITS == 64
499
#define OPC_ALIGN 8
500
#else
501
#define OPC_ALIGN 4
502
#endif
503
#if defined(__APPLE__)
504
#define OPCODES_SECTION                                                       \
505
    __attribute__ ((section("__TEXT,__opcodes"), unused, aligned (OPC_ALIGN) ))
506
#else
507
#define OPCODES_SECTION                                                       \
508
    __attribute__ ((section(".opcodes"), unused, aligned (OPC_ALIGN) ))
509
#endif
510

    
511
#if defined(DO_PPC_STATISTICS)
512
#define GEN_OPCODE(name, op1, op2, op3, invl, _typ)                           \
513
OPCODES_SECTION opcode_t opc_##name = {                                       \
514
    .opc1 = op1,                                                              \
515
    .opc2 = op2,                                                              \
516
    .opc3 = op3,                                                              \
517
    .pad  = { 0, },                                                           \
518
    .handler = {                                                              \
519
        .inval   = invl,                                                      \
520
        .type = _typ,                                                         \
521
        .handler = &gen_##name,                                               \
522
        .oname = stringify(name),                                             \
523
    },                                                                        \
524
    .oname = stringify(name),                                                 \
525
}
526
#else
527
#define GEN_OPCODE(name, op1, op2, op3, invl, _typ)                           \
528
OPCODES_SECTION opcode_t opc_##name = {                                       \
529
    .opc1 = op1,                                                              \
530
    .opc2 = op2,                                                              \
531
    .opc3 = op3,                                                              \
532
    .pad  = { 0, },                                                           \
533
    .handler = {                                                              \
534
        .inval   = invl,                                                      \
535
        .type = _typ,                                                         \
536
        .handler = &gen_##name,                                               \
537
    },                                                                        \
538
    .oname = stringify(name),                                                 \
539
}
540
#endif
541

    
542
#define GEN_OPCODE_MARK(name)                                                 \
543
OPCODES_SECTION opcode_t opc_##name = {                                       \
544
    .opc1 = 0xFF,                                                             \
545
    .opc2 = 0xFF,                                                             \
546
    .opc3 = 0xFF,                                                             \
547
    .pad  = { 0, },                                                           \
548
    .handler = {                                                              \
549
        .inval   = 0x00000000,                                                \
550
        .type = 0x00,                                                         \
551
        .handler = NULL,                                                      \
552
    },                                                                        \
553
    .oname = stringify(name),                                                 \
554
}
555

    
556
/* Start opcode list */
557
GEN_OPCODE_MARK(start);
558

    
559
/* Invalid instruction */
560
GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE)
561
{
562
    GEN_EXCP_INVAL(ctx);
563
}
564

    
565
static opc_handler_t invalid_handler = {
566
    .inval   = 0xFFFFFFFF,
567
    .type    = PPC_NONE,
568
    .handler = gen_invalid,
569
};
570

    
571
/***                           Integer arithmetic                          ***/
572
#define __GEN_INT_ARITH2(name, opc1, opc2, opc3, inval, type)                 \
573
GEN_HANDLER(name, opc1, opc2, opc3, inval, type)                              \
574
{                                                                             \
575
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
576
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
577
    gen_op_##name();                                                          \
578
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
579
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
580
        gen_set_Rc0(ctx);                                                     \
581
}
582

    
583
#define __GEN_INT_ARITH2_O(name, opc1, opc2, opc3, inval, type)               \
584
GEN_HANDLER(name, opc1, opc2, opc3, inval, type)                              \
585
{                                                                             \
586
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
587
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
588
    gen_op_##name();                                                          \
589
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
590
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
591
        gen_set_Rc0(ctx);                                                     \
592
}
593

    
594
#define __GEN_INT_ARITH1(name, opc1, opc2, opc3, type)                        \
595
GEN_HANDLER(name, opc1, opc2, opc3, 0x0000F800, type)                         \
596
{                                                                             \
597
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
598
    gen_op_##name();                                                          \
599
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
600
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
601
        gen_set_Rc0(ctx);                                                     \
602
}
603
#define __GEN_INT_ARITH1_O(name, opc1, opc2, opc3, type)                      \
604
GEN_HANDLER(name, opc1, opc2, opc3, 0x0000F800, type)                         \
605
{                                                                             \
606
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
607
    gen_op_##name();                                                          \
608
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
609
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
610
        gen_set_Rc0(ctx);                                                     \
611
}
612

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

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

    
622
/* One operand arithmetic functions */
623
#define GEN_INT_ARITH1(name, opc1, opc2, opc3, type)                          \
624
__GEN_INT_ARITH1(name, opc1, opc2, opc3, type)                                \
625
__GEN_INT_ARITH1_O(name##o, opc1, opc2, opc3 | 0x10, type)
626

    
627
#if defined(TARGET_PPC64)
628
#define __GEN_INT_ARITH2_64(name, opc1, opc2, opc3, inval, type)              \
629
GEN_HANDLER(name, opc1, opc2, opc3, inval, type)                              \
630
{                                                                             \
631
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
632
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
633
    if (ctx->sf_mode)                                                         \
634
        gen_op_##name##_64();                                                 \
635
    else                                                                      \
636
        gen_op_##name();                                                      \
637
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
638
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
639
        gen_set_Rc0(ctx);                                                     \
640
}
641

    
642
#define __GEN_INT_ARITH2_O_64(name, opc1, opc2, opc3, inval, type)            \
643
GEN_HANDLER(name, opc1, opc2, opc3, inval, type)                              \
644
{                                                                             \
645
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
646
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
647
    if (ctx->sf_mode)                                                         \
648
        gen_op_##name##_64();                                                 \
649
    else                                                                      \
650
        gen_op_##name();                                                      \
651
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
652
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
653
        gen_set_Rc0(ctx);                                                     \
654
}
655

    
656
#define __GEN_INT_ARITH1_64(name, opc1, opc2, opc3, type)                     \
657
GEN_HANDLER(name, opc1, opc2, opc3, 0x0000F800, type)                         \
658
{                                                                             \
659
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
660
    if (ctx->sf_mode)                                                         \
661
        gen_op_##name##_64();                                                 \
662
    else                                                                      \
663
        gen_op_##name();                                                      \
664
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
665
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
666
        gen_set_Rc0(ctx);                                                     \
667
}
668
#define __GEN_INT_ARITH1_O_64(name, opc1, opc2, opc3, type)                   \
669
GEN_HANDLER(name, opc1, opc2, opc3, 0x0000F800, type)                         \
670
{                                                                             \
671
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
672
    if (ctx->sf_mode)                                                         \
673
        gen_op_##name##_64();                                                 \
674
    else                                                                      \
675
        gen_op_##name();                                                      \
676
    gen_op_store_T0_gpr(rD(ctx->opcode));                                     \
677
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
678
        gen_set_Rc0(ctx);                                                     \
679
}
680

    
681
/* Two operands arithmetic functions */
682
#define GEN_INT_ARITH2_64(name, opc1, opc2, opc3, type)                       \
683
__GEN_INT_ARITH2_64(name, opc1, opc2, opc3, 0x00000000, type)                 \
684
__GEN_INT_ARITH2_O_64(name##o, opc1, opc2, opc3 | 0x10, 0x00000000, type)
685

    
686
/* Two operands arithmetic functions with no overflow allowed */
687
#define GEN_INT_ARITHN_64(name, opc1, opc2, opc3, type)                       \
688
__GEN_INT_ARITH2_64(name, opc1, opc2, opc3, 0x00000400, type)
689

    
690
/* One operand arithmetic functions */
691
#define GEN_INT_ARITH1_64(name, opc1, opc2, opc3, type)                       \
692
__GEN_INT_ARITH1_64(name, opc1, opc2, opc3, type)                             \
693
__GEN_INT_ARITH1_O_64(name##o, opc1, opc2, opc3 | 0x10, type)
694
#else
695
#define GEN_INT_ARITH2_64 GEN_INT_ARITH2
696
#define GEN_INT_ARITHN_64 GEN_INT_ARITHN
697
#define GEN_INT_ARITH1_64 GEN_INT_ARITH1
698
#endif
699

    
700
/* add    add.    addo    addo.    */
701
static always_inline void gen_op_addo (void)
702
{
703
    gen_op_move_T2_T0();
704
    gen_op_add();
705
    gen_op_check_addo();
706
}
707
#if defined(TARGET_PPC64)
708
#define gen_op_add_64 gen_op_add
709
static always_inline void gen_op_addo_64 (void)
710
{
711
    gen_op_move_T2_T0();
712
    gen_op_add();
713
    gen_op_check_addo_64();
714
}
715
#endif
716
GEN_INT_ARITH2_64 (add,    0x1F, 0x0A, 0x08, PPC_INTEGER);
717
/* addc   addc.   addco   addco.   */
718
static always_inline void gen_op_addc (void)
719
{
720
    gen_op_move_T2_T0();
721
    gen_op_add();
722
    gen_op_check_addc();
723
}
724
static always_inline void gen_op_addco (void)
725
{
726
    gen_op_move_T2_T0();
727
    gen_op_add();
728
    gen_op_check_addc();
729
    gen_op_check_addo();
730
}
731
#if defined(TARGET_PPC64)
732
static always_inline void gen_op_addc_64 (void)
733
{
734
    gen_op_move_T2_T0();
735
    gen_op_add();
736
    gen_op_check_addc_64();
737
}
738
static always_inline void gen_op_addco_64 (void)
739
{
740
    gen_op_move_T2_T0();
741
    gen_op_add();
742
    gen_op_check_addc_64();
743
    gen_op_check_addo_64();
744
}
745
#endif
746
GEN_INT_ARITH2_64 (addc,   0x1F, 0x0A, 0x00, PPC_INTEGER);
747
/* adde   adde.   addeo   addeo.   */
748
static always_inline void gen_op_addeo (void)
749
{
750
    gen_op_move_T2_T0();
751
    gen_op_adde();
752
    gen_op_check_addo();
753
}
754
#if defined(TARGET_PPC64)
755
static always_inline void gen_op_addeo_64 (void)
756
{
757
    gen_op_move_T2_T0();
758
    gen_op_adde_64();
759
    gen_op_check_addo_64();
760
}
761
#endif
762
GEN_INT_ARITH2_64 (adde,   0x1F, 0x0A, 0x04, PPC_INTEGER);
763
/* addme  addme.  addmeo  addmeo.  */
764
static always_inline void gen_op_addme (void)
765
{
766
    gen_op_move_T1_T0();
767
    gen_op_add_me();
768
}
769
#if defined(TARGET_PPC64)
770
static always_inline void gen_op_addme_64 (void)
771
{
772
    gen_op_move_T1_T0();
773
    gen_op_add_me_64();
774
}
775
#endif
776
GEN_INT_ARITH1_64 (addme,  0x1F, 0x0A, 0x07, PPC_INTEGER);
777
/* addze  addze.  addzeo  addzeo.  */
778
static always_inline void gen_op_addze (void)
779
{
780
    gen_op_move_T2_T0();
781
    gen_op_add_ze();
782
    gen_op_check_addc();
783
}
784
static always_inline void gen_op_addzeo (void)
785
{
786
    gen_op_move_T2_T0();
787
    gen_op_add_ze();
788
    gen_op_check_addc();
789
    gen_op_check_addo();
790
}
791
#if defined(TARGET_PPC64)
792
static always_inline void gen_op_addze_64 (void)
793
{
794
    gen_op_move_T2_T0();
795
    gen_op_add_ze();
796
    gen_op_check_addc_64();
797
}
798
static always_inline void gen_op_addzeo_64 (void)
799
{
800
    gen_op_move_T2_T0();
801
    gen_op_add_ze();
802
    gen_op_check_addc_64();
803
    gen_op_check_addo_64();
804
}
805
#endif
806
GEN_INT_ARITH1_64 (addze,  0x1F, 0x0A, 0x06, PPC_INTEGER);
807
/* divw   divw.   divwo   divwo.   */
808
GEN_INT_ARITH2 (divw,   0x1F, 0x0B, 0x0F, PPC_INTEGER);
809
/* divwu  divwu.  divwuo  divwuo.  */
810
GEN_INT_ARITH2 (divwu,  0x1F, 0x0B, 0x0E, PPC_INTEGER);
811
/* mulhw  mulhw.                   */
812
GEN_INT_ARITHN (mulhw,  0x1F, 0x0B, 0x02, PPC_INTEGER);
813
/* mulhwu mulhwu.                  */
814
GEN_INT_ARITHN (mulhwu, 0x1F, 0x0B, 0x00, PPC_INTEGER);
815
/* mullw  mullw.  mullwo  mullwo.  */
816
GEN_INT_ARITH2 (mullw,  0x1F, 0x0B, 0x07, PPC_INTEGER);
817
/* neg    neg.    nego    nego.    */
818
GEN_INT_ARITH1_64 (neg,    0x1F, 0x08, 0x03, PPC_INTEGER);
819
/* subf   subf.   subfo   subfo.   */
820
static always_inline void gen_op_subfo (void)
821
{
822
    gen_op_move_T2_T0();
823
    gen_op_subf();
824
    gen_op_check_subfo();
825
}
826
#if defined(TARGET_PPC64)
827
#define gen_op_subf_64 gen_op_subf
828
static always_inline void gen_op_subfo_64 (void)
829
{
830
    gen_op_move_T2_T0();
831
    gen_op_subf();
832
    gen_op_check_subfo_64();
833
}
834
#endif
835
GEN_INT_ARITH2_64 (subf,   0x1F, 0x08, 0x01, PPC_INTEGER);
836
/* subfc  subfc.  subfco  subfco.  */
837
static always_inline void gen_op_subfc (void)
838
{
839
    gen_op_subf();
840
    gen_op_check_subfc();
841
}
842
static always_inline void gen_op_subfco (void)
843
{
844
    gen_op_move_T2_T0();
845
    gen_op_subf();
846
    gen_op_check_subfc();
847
    gen_op_check_subfo();
848
}
849
#if defined(TARGET_PPC64)
850
static always_inline void gen_op_subfc_64 (void)
851
{
852
    gen_op_subf();
853
    gen_op_check_subfc_64();
854
}
855
static always_inline void gen_op_subfco_64 (void)
856
{
857
    gen_op_move_T2_T0();
858
    gen_op_subf();
859
    gen_op_check_subfc_64();
860
    gen_op_check_subfo_64();
861
}
862
#endif
863
GEN_INT_ARITH2_64 (subfc,  0x1F, 0x08, 0x00, PPC_INTEGER);
864
/* subfe  subfe.  subfeo  subfeo.  */
865
static always_inline void gen_op_subfeo (void)
866
{
867
    gen_op_move_T2_T0();
868
    gen_op_subfe();
869
    gen_op_check_subfo();
870
}
871
#if defined(TARGET_PPC64)
872
#define gen_op_subfe_64 gen_op_subfe
873
static always_inline void gen_op_subfeo_64 (void)
874
{
875
    gen_op_move_T2_T0();
876
    gen_op_subfe_64();
877
    gen_op_check_subfo_64();
878
}
879
#endif
880
GEN_INT_ARITH2_64 (subfe,  0x1F, 0x08, 0x04, PPC_INTEGER);
881
/* subfme subfme. subfmeo subfmeo. */
882
GEN_INT_ARITH1_64 (subfme, 0x1F, 0x08, 0x07, PPC_INTEGER);
883
/* subfze subfze. subfzeo subfzeo. */
884
GEN_INT_ARITH1_64 (subfze, 0x1F, 0x08, 0x06, PPC_INTEGER);
885
/* addi */
886
GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
887
{
888
    target_long simm = SIMM(ctx->opcode);
889

    
890
    if (rA(ctx->opcode) == 0) {
891
        /* li case */
892
        gen_set_T0(simm);
893
    } else {
894
        gen_op_load_gpr_T0(rA(ctx->opcode));
895
        if (likely(simm != 0))
896
            gen_op_addi(simm);
897
    }
898
    gen_op_store_T0_gpr(rD(ctx->opcode));
899
}
900
/* addic */
901
GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
902
{
903
    target_long simm = SIMM(ctx->opcode);
904

    
905
    gen_op_load_gpr_T0(rA(ctx->opcode));
906
    if (likely(simm != 0)) {
907
        gen_op_move_T2_T0();
908
        gen_op_addi(simm);
909
#if defined(TARGET_PPC64)
910
        if (ctx->sf_mode)
911
            gen_op_check_addc_64();
912
        else
913
#endif
914
            gen_op_check_addc();
915
    } else {
916
        gen_op_clear_xer_ca();
917
    }
918
    gen_op_store_T0_gpr(rD(ctx->opcode));
919
}
920
/* addic. */
921
GEN_HANDLER(addic_, 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
922
{
923
    target_long simm = SIMM(ctx->opcode);
924

    
925
    gen_op_load_gpr_T0(rA(ctx->opcode));
926
    if (likely(simm != 0)) {
927
        gen_op_move_T2_T0();
928
        gen_op_addi(simm);
929
#if defined(TARGET_PPC64)
930
        if (ctx->sf_mode)
931
            gen_op_check_addc_64();
932
        else
933
#endif
934
            gen_op_check_addc();
935
    } else {
936
        gen_op_clear_xer_ca();
937
    }
938
    gen_op_store_T0_gpr(rD(ctx->opcode));
939
    gen_set_Rc0(ctx);
940
}
941
/* addis */
942
GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
943
{
944
    target_long simm = SIMM(ctx->opcode);
945

    
946
    if (rA(ctx->opcode) == 0) {
947
        /* lis case */
948
        gen_set_T0(simm << 16);
949
    } else {
950
        gen_op_load_gpr_T0(rA(ctx->opcode));
951
        if (likely(simm != 0))
952
            gen_op_addi(simm << 16);
953
    }
954
    gen_op_store_T0_gpr(rD(ctx->opcode));
955
}
956
/* mulli */
957
GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
958
{
959
    gen_op_load_gpr_T0(rA(ctx->opcode));
960
    gen_op_mulli(SIMM(ctx->opcode));
961
    gen_op_store_T0_gpr(rD(ctx->opcode));
962
}
963
/* subfic */
964
GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
965
{
966
    gen_op_load_gpr_T0(rA(ctx->opcode));
967
#if defined(TARGET_PPC64)
968
    if (ctx->sf_mode)
969
        gen_op_subfic_64(SIMM(ctx->opcode));
970
    else
971
#endif
972
        gen_op_subfic(SIMM(ctx->opcode));
973
    gen_op_store_T0_gpr(rD(ctx->opcode));
974
}
975

    
976
#if defined(TARGET_PPC64)
977
/* mulhd  mulhd.                   */
978
GEN_INT_ARITHN (mulhd,  0x1F, 0x09, 0x02, PPC_64B);
979
/* mulhdu mulhdu.                  */
980
GEN_INT_ARITHN (mulhdu, 0x1F, 0x09, 0x00, PPC_64B);
981
/* mulld  mulld.  mulldo  mulldo.  */
982
GEN_INT_ARITH2 (mulld,  0x1F, 0x09, 0x07, PPC_64B);
983
/* divd   divd.   divdo   divdo.   */
984
GEN_INT_ARITH2 (divd,   0x1F, 0x09, 0x0F, PPC_64B);
985
/* divdu  divdu.  divduo  divduo.  */
986
GEN_INT_ARITH2 (divdu,  0x1F, 0x09, 0x0E, PPC_64B);
987
#endif
988

    
989
/***                           Integer comparison                          ***/
990
#if defined(TARGET_PPC64)
991
#define GEN_CMP(name, opc, type)                                              \
992
GEN_HANDLER(name, 0x1F, 0x00, opc, 0x00400000, type)                          \
993
{                                                                             \
994
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
995
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
996
    if (ctx->sf_mode && (ctx->opcode & 0x00200000))                           \
997
        gen_op_##name##_64();                                                 \
998
    else                                                                      \
999
        gen_op_##name();                                                      \
1000
    gen_op_store_T0_crf(crfD(ctx->opcode));                                   \
1001
}
1002
#else
1003
#define GEN_CMP(name, opc, type)                                              \
1004
GEN_HANDLER(name, 0x1F, 0x00, opc, 0x00400000, type)                          \
1005
{                                                                             \
1006
    gen_op_load_gpr_T0(rA(ctx->opcode));                                      \
1007
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
1008
    gen_op_##name();                                                          \
1009
    gen_op_store_T0_crf(crfD(ctx->opcode));                                   \
1010
}
1011
#endif
1012

    
1013
/* cmp */
1014
GEN_CMP(cmp, 0x00, PPC_INTEGER);
1015
/* cmpi */
1016
GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
1017
{
1018
    gen_op_load_gpr_T0(rA(ctx->opcode));
1019
#if defined(TARGET_PPC64)
1020
    if (ctx->sf_mode && (ctx->opcode & 0x00200000))
1021
        gen_op_cmpi_64(SIMM(ctx->opcode));
1022
    else
1023
#endif
1024
        gen_op_cmpi(SIMM(ctx->opcode));
1025
    gen_op_store_T0_crf(crfD(ctx->opcode));
1026
}
1027
/* cmpl */
1028
GEN_CMP(cmpl, 0x01, PPC_INTEGER);
1029
/* cmpli */
1030
GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
1031
{
1032
    gen_op_load_gpr_T0(rA(ctx->opcode));
1033
#if defined(TARGET_PPC64)
1034
    if (ctx->sf_mode && (ctx->opcode & 0x00200000))
1035
        gen_op_cmpli_64(UIMM(ctx->opcode));
1036
    else
1037
#endif
1038
        gen_op_cmpli(UIMM(ctx->opcode));
1039
    gen_op_store_T0_crf(crfD(ctx->opcode));
1040
}
1041

    
1042
/* isel (PowerPC 2.03 specification) */
1043
GEN_HANDLER(isel, 0x1F, 0x0F, 0x00, 0x00000001, PPC_203)
1044
{
1045
    uint32_t bi = rC(ctx->opcode);
1046
    uint32_t mask;
1047

    
1048
    if (rA(ctx->opcode) == 0) {
1049
        gen_set_T0(0);
1050
    } else {
1051
        gen_op_load_gpr_T1(rA(ctx->opcode));
1052
    }
1053
    gen_op_load_gpr_T2(rB(ctx->opcode));
1054
    mask = 1 << (3 - (bi & 0x03));
1055
    gen_op_load_crf_T0(bi >> 2);
1056
    gen_op_test_true(mask);
1057
    gen_op_isel();
1058
    gen_op_store_T0_gpr(rD(ctx->opcode));
1059
}
1060

    
1061
/***                            Integer logical                            ***/
1062
#define __GEN_LOGICAL2(name, opc2, opc3, type)                                \
1063
GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000000, type)                         \
1064
{                                                                             \
1065
    gen_op_load_gpr_T0(rS(ctx->opcode));                                      \
1066
    gen_op_load_gpr_T1(rB(ctx->opcode));                                      \
1067
    gen_op_##name();                                                          \
1068
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
1069
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1070
        gen_set_Rc0(ctx);                                                     \
1071
}
1072
#define GEN_LOGICAL2(name, opc, type)                                         \
1073
__GEN_LOGICAL2(name, 0x1C, opc, type)
1074

    
1075
#define GEN_LOGICAL1(name, opc, type)                                         \
1076
GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)                          \
1077
{                                                                             \
1078
    gen_op_load_gpr_T0(rS(ctx->opcode));                                      \
1079
    gen_op_##name();                                                          \
1080
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
1081
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1082
        gen_set_Rc0(ctx);                                                     \
1083
}
1084

    
1085
/* and & and. */
1086
GEN_LOGICAL2(and, 0x00, PPC_INTEGER);
1087
/* andc & andc. */
1088
GEN_LOGICAL2(andc, 0x01, PPC_INTEGER);
1089
/* andi. */
1090
GEN_HANDLER(andi_, 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1091
{
1092
    gen_op_load_gpr_T0(rS(ctx->opcode));
1093
    gen_op_andi_T0(UIMM(ctx->opcode));
1094
    gen_op_store_T0_gpr(rA(ctx->opcode));
1095
    gen_set_Rc0(ctx);
1096
}
1097
/* andis. */
1098
GEN_HANDLER(andis_, 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1099
{
1100
    gen_op_load_gpr_T0(rS(ctx->opcode));
1101
    gen_op_andi_T0(UIMM(ctx->opcode) << 16);
1102
    gen_op_store_T0_gpr(rA(ctx->opcode));
1103
    gen_set_Rc0(ctx);
1104
}
1105

    
1106
/* cntlzw */
1107
GEN_LOGICAL1(cntlzw, 0x00, PPC_INTEGER);
1108
/* eqv & eqv. */
1109
GEN_LOGICAL2(eqv, 0x08, PPC_INTEGER);
1110
/* extsb & extsb. */
1111
GEN_LOGICAL1(extsb, 0x1D, PPC_INTEGER);
1112
/* extsh & extsh. */
1113
GEN_LOGICAL1(extsh, 0x1C, PPC_INTEGER);
1114
/* nand & nand. */
1115
GEN_LOGICAL2(nand, 0x0E, PPC_INTEGER);
1116
/* nor & nor. */
1117
GEN_LOGICAL2(nor, 0x03, PPC_INTEGER);
1118

    
1119
/* or & or. */
1120
GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER)
1121
{
1122
    int rs, ra, rb;
1123

    
1124
    rs = rS(ctx->opcode);
1125
    ra = rA(ctx->opcode);
1126
    rb = rB(ctx->opcode);
1127
    /* Optimisation for mr. ri case */
1128
    if (rs != ra || rs != rb) {
1129
        gen_op_load_gpr_T0(rs);
1130
        if (rs != rb) {
1131
            gen_op_load_gpr_T1(rb);
1132
            gen_op_or();
1133
        }
1134
        gen_op_store_T0_gpr(ra);
1135
        if (unlikely(Rc(ctx->opcode) != 0))
1136
            gen_set_Rc0(ctx);
1137
    } else if (unlikely(Rc(ctx->opcode) != 0)) {
1138
        gen_op_load_gpr_T0(rs);
1139
        gen_set_Rc0(ctx);
1140
#if defined(TARGET_PPC64)
1141
    } else {
1142
        switch (rs) {
1143
        case 1:
1144
            /* Set process priority to low */
1145
            gen_op_store_pri(2);
1146
            break;
1147
        case 6:
1148
            /* Set process priority to medium-low */
1149
            gen_op_store_pri(3);
1150
            break;
1151
        case 2:
1152
            /* Set process priority to normal */
1153
            gen_op_store_pri(4);
1154
            break;
1155
#if !defined(CONFIG_USER_ONLY)
1156
        case 31:
1157
            if (ctx->supervisor > 0) {
1158
                /* Set process priority to very low */
1159
                gen_op_store_pri(1);
1160
            }
1161
            break;
1162
        case 5:
1163
            if (ctx->supervisor > 0) {
1164
                /* Set process priority to medium-hight */
1165
                gen_op_store_pri(5);
1166
            }
1167
            break;
1168
        case 3:
1169
            if (ctx->supervisor > 0) {
1170
                /* Set process priority to high */
1171
                gen_op_store_pri(6);
1172
            }
1173
            break;
1174
#if defined(TARGET_PPC64H)
1175
        case 7:
1176
            if (ctx->supervisor > 1) {
1177
                /* Set process priority to very high */
1178
                gen_op_store_pri(7);
1179
            }
1180
            break;
1181
#endif
1182
#endif
1183
        default:
1184
            /* nop */
1185
            break;
1186
        }
1187
#endif
1188
    }
1189
}
1190

    
1191
/* orc & orc. */
1192
GEN_LOGICAL2(orc, 0x0C, PPC_INTEGER);
1193
/* xor & xor. */
1194
GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER)
1195
{
1196
    gen_op_load_gpr_T0(rS(ctx->opcode));
1197
    /* Optimisation for "set to zero" case */
1198
    if (rS(ctx->opcode) != rB(ctx->opcode)) {
1199
        gen_op_load_gpr_T1(rB(ctx->opcode));
1200
        gen_op_xor();
1201
    } else {
1202
        gen_op_reset_T0();
1203
    }
1204
    gen_op_store_T0_gpr(rA(ctx->opcode));
1205
    if (unlikely(Rc(ctx->opcode) != 0))
1206
        gen_set_Rc0(ctx);
1207
}
1208
/* ori */
1209
GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1210
{
1211
    target_ulong uimm = UIMM(ctx->opcode);
1212

    
1213
    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1214
        /* NOP */
1215
        /* XXX: should handle special NOPs for POWER series */
1216
        return;
1217
    }
1218
    gen_op_load_gpr_T0(rS(ctx->opcode));
1219
    if (likely(uimm != 0))
1220
        gen_op_ori(uimm);
1221
    gen_op_store_T0_gpr(rA(ctx->opcode));
1222
}
1223
/* oris */
1224
GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1225
{
1226
    target_ulong uimm = UIMM(ctx->opcode);
1227

    
1228
    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1229
        /* NOP */
1230
        return;
1231
    }
1232
    gen_op_load_gpr_T0(rS(ctx->opcode));
1233
    if (likely(uimm != 0))
1234
        gen_op_ori(uimm << 16);
1235
    gen_op_store_T0_gpr(rA(ctx->opcode));
1236
}
1237
/* xori */
1238
GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1239
{
1240
    target_ulong uimm = UIMM(ctx->opcode);
1241

    
1242
    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1243
        /* NOP */
1244
        return;
1245
    }
1246
    gen_op_load_gpr_T0(rS(ctx->opcode));
1247
    if (likely(uimm != 0))
1248
        gen_op_xori(uimm);
1249
    gen_op_store_T0_gpr(rA(ctx->opcode));
1250
}
1251

    
1252
/* xoris */
1253
GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1254
{
1255
    target_ulong uimm = UIMM(ctx->opcode);
1256

    
1257
    if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1258
        /* NOP */
1259
        return;
1260
    }
1261
    gen_op_load_gpr_T0(rS(ctx->opcode));
1262
    if (likely(uimm != 0))
1263
        gen_op_xori(uimm << 16);
1264
    gen_op_store_T0_gpr(rA(ctx->opcode));
1265
}
1266

    
1267
/* popcntb : PowerPC 2.03 specification */
1268
GEN_HANDLER(popcntb, 0x1F, 0x03, 0x03, 0x0000F801, PPC_203)
1269
{
1270
    gen_op_load_gpr_T0(rS(ctx->opcode));
1271
#if defined(TARGET_PPC64)
1272
    if (ctx->sf_mode)
1273
        gen_op_popcntb_64();
1274
    else
1275
#endif
1276
        gen_op_popcntb();
1277
    gen_op_store_T0_gpr(rA(ctx->opcode));
1278
}
1279

    
1280
#if defined(TARGET_PPC64)
1281
/* extsw & extsw. */
1282
GEN_LOGICAL1(extsw, 0x1E, PPC_64B);
1283
/* cntlzd */
1284
GEN_LOGICAL1(cntlzd, 0x01, PPC_64B);
1285
#endif
1286

    
1287
/***                             Integer rotate                            ***/
1288
/* rlwimi & rlwimi. */
1289
GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1290
{
1291
    target_ulong mask;
1292
    uint32_t mb, me, sh;
1293

    
1294
    mb = MB(ctx->opcode);
1295
    me = ME(ctx->opcode);
1296
    sh = SH(ctx->opcode);
1297
    if (likely(sh == 0)) {
1298
        if (likely(mb == 0 && me == 31)) {
1299
            gen_op_load_gpr_T0(rS(ctx->opcode));
1300
            goto do_store;
1301
        } else if (likely(mb == 31 && me == 0)) {
1302
            gen_op_load_gpr_T0(rA(ctx->opcode));
1303
            goto do_store;
1304
        }
1305
        gen_op_load_gpr_T0(rS(ctx->opcode));
1306
        gen_op_load_gpr_T1(rA(ctx->opcode));
1307
        goto do_mask;
1308
    }
1309
    gen_op_load_gpr_T0(rS(ctx->opcode));
1310
    gen_op_load_gpr_T1(rA(ctx->opcode));
1311
    gen_op_rotli32_T0(SH(ctx->opcode));
1312
 do_mask:
1313
#if defined(TARGET_PPC64)
1314
    mb += 32;
1315
    me += 32;
1316
#endif
1317
    mask = MASK(mb, me);
1318
    gen_op_andi_T0(mask);
1319
    gen_op_andi_T1(~mask);
1320
    gen_op_or();
1321
 do_store:
1322
    gen_op_store_T0_gpr(rA(ctx->opcode));
1323
    if (unlikely(Rc(ctx->opcode) != 0))
1324
        gen_set_Rc0(ctx);
1325
}
1326
/* rlwinm & rlwinm. */
1327
GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1328
{
1329
    uint32_t mb, me, sh;
1330

    
1331
    sh = SH(ctx->opcode);
1332
    mb = MB(ctx->opcode);
1333
    me = ME(ctx->opcode);
1334
    gen_op_load_gpr_T0(rS(ctx->opcode));
1335
    if (likely(sh == 0)) {
1336
        goto do_mask;
1337
    }
1338
    if (likely(mb == 0)) {
1339
        if (likely(me == 31)) {
1340
            gen_op_rotli32_T0(sh);
1341
            goto do_store;
1342
        } else if (likely(me == (31 - sh))) {
1343
            gen_op_sli_T0(sh);
1344
            goto do_store;
1345
        }
1346
    } else if (likely(me == 31)) {
1347
        if (likely(sh == (32 - mb))) {
1348
            gen_op_srli_T0(mb);
1349
            goto do_store;
1350
        }
1351
    }
1352
    gen_op_rotli32_T0(sh);
1353
 do_mask:
1354
#if defined(TARGET_PPC64)
1355
    mb += 32;
1356
    me += 32;
1357
#endif
1358
    gen_op_andi_T0(MASK(mb, me));
1359
 do_store:
1360
    gen_op_store_T0_gpr(rA(ctx->opcode));
1361
    if (unlikely(Rc(ctx->opcode) != 0))
1362
        gen_set_Rc0(ctx);
1363
}
1364
/* rlwnm & rlwnm. */
1365
GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1366
{
1367
    uint32_t mb, me;
1368

    
1369
    mb = MB(ctx->opcode);
1370
    me = ME(ctx->opcode);
1371
    gen_op_load_gpr_T0(rS(ctx->opcode));
1372
    gen_op_load_gpr_T1(rB(ctx->opcode));
1373
    gen_op_rotl32_T0_T1();
1374
    if (unlikely(mb != 0 || me != 31)) {
1375
#if defined(TARGET_PPC64)
1376
        mb += 32;
1377
        me += 32;
1378
#endif
1379
        gen_op_andi_T0(MASK(mb, me));
1380
    }
1381
    gen_op_store_T0_gpr(rA(ctx->opcode));
1382
    if (unlikely(Rc(ctx->opcode) != 0))
1383
        gen_set_Rc0(ctx);
1384
}
1385

    
1386
#if defined(TARGET_PPC64)
1387
#define GEN_PPC64_R2(name, opc1, opc2)                                        \
1388
GEN_HANDLER(name##0, opc1, opc2, 0xFF, 0x00000000, PPC_64B)                   \
1389
{                                                                             \
1390
    gen_##name(ctx, 0);                                                       \
1391
}                                                                             \
1392
GEN_HANDLER(name##1, opc1, opc2 | 0x10, 0xFF, 0x00000000, PPC_64B)            \
1393
{                                                                             \
1394
    gen_##name(ctx, 1);                                                       \
1395
}
1396
#define GEN_PPC64_R4(name, opc1, opc2)                                        \
1397
GEN_HANDLER(name##0, opc1, opc2, 0xFF, 0x00000000, PPC_64B)                   \
1398
{                                                                             \
1399
    gen_##name(ctx, 0, 0);                                                    \
1400
}                                                                             \
1401
GEN_HANDLER(name##1, opc1, opc2 | 0x01, 0xFF, 0x00000000, PPC_64B)            \
1402
{                                                                             \
1403
    gen_##name(ctx, 0, 1);                                                    \
1404
}                                                                             \
1405
GEN_HANDLER(name##2, opc1, opc2 | 0x10, 0xFF, 0x00000000, PPC_64B)            \
1406
{                                                                             \
1407
    gen_##name(ctx, 1, 0);                                                    \
1408
}                                                                             \
1409
GEN_HANDLER(name##3, opc1, opc2 | 0x11, 0xFF, 0x00000000, PPC_64B)            \
1410
{                                                                             \
1411
    gen_##name(ctx, 1, 1);                                                    \
1412
}
1413

    
1414
static always_inline void gen_andi_T0_64 (DisasContext *ctx, uint64_t mask)
1415
{
1416
    if (mask >> 32)
1417
        gen_op_andi_T0_64(mask >> 32, mask & 0xFFFFFFFF);
1418
    else
1419
        gen_op_andi_T0(mask);
1420
}
1421

    
1422
static always_inline void gen_andi_T1_64 (DisasContext *ctx, uint64_t mask)
1423
{
1424
    if (mask >> 32)
1425
        gen_op_andi_T1_64(mask >> 32, mask & 0xFFFFFFFF);
1426
    else
1427
        gen_op_andi_T1(mask);
1428
}
1429

    
1430
static always_inline void gen_rldinm (DisasContext *ctx, uint32_t mb,
1431
                                      uint32_t me, uint32_t sh)
1432
{
1433
    gen_op_load_gpr_T0(rS(ctx->opcode));
1434
    if (likely(sh == 0)) {
1435
        goto do_mask;
1436
    }
1437
    if (likely(mb == 0)) {
1438
        if (likely(me == 63)) {
1439
            gen_op_rotli64_T0(sh);
1440
            goto do_store;
1441
        } else if (likely(me == (63 - sh))) {
1442
            gen_op_sli_T0(sh);
1443
            goto do_store;
1444
        }
1445
    } else if (likely(me == 63)) {
1446
        if (likely(sh == (64 - mb))) {
1447
            gen_op_srli_T0_64(mb);
1448
            goto do_store;
1449
        }
1450
    }
1451
    gen_op_rotli64_T0(sh);
1452
 do_mask:
1453
    gen_andi_T0_64(ctx, MASK(mb, me));
1454
 do_store:
1455
    gen_op_store_T0_gpr(rA(ctx->opcode));
1456
    if (unlikely(Rc(ctx->opcode) != 0))
1457
        gen_set_Rc0(ctx);
1458
}
1459
/* rldicl - rldicl. */
1460
static always_inline void gen_rldicl (DisasContext *ctx, int mbn, int shn)
1461
{
1462
    uint32_t sh, mb;
1463

    
1464
    sh = SH(ctx->opcode) | (shn << 5);
1465
    mb = MB(ctx->opcode) | (mbn << 5);
1466
    gen_rldinm(ctx, mb, 63, sh);
1467
}
1468
GEN_PPC64_R4(rldicl, 0x1E, 0x00);
1469
/* rldicr - rldicr. */
1470
static always_inline void gen_rldicr (DisasContext *ctx, int men, int shn)
1471
{
1472
    uint32_t sh, me;
1473

    
1474
    sh = SH(ctx->opcode) | (shn << 5);
1475
    me = MB(ctx->opcode) | (men << 5);
1476
    gen_rldinm(ctx, 0, me, sh);
1477
}
1478
GEN_PPC64_R4(rldicr, 0x1E, 0x02);
1479
/* rldic - rldic. */
1480
static always_inline void gen_rldic (DisasContext *ctx, int mbn, int shn)
1481
{
1482
    uint32_t sh, mb;
1483

    
1484
    sh = SH(ctx->opcode) | (shn << 5);
1485
    mb = MB(ctx->opcode) | (mbn << 5);
1486
    gen_rldinm(ctx, mb, 63 - sh, sh);
1487
}
1488
GEN_PPC64_R4(rldic, 0x1E, 0x04);
1489

    
1490
static always_inline void gen_rldnm (DisasContext *ctx, uint32_t mb,
1491
                                     uint32_t me)
1492
{
1493
    gen_op_load_gpr_T0(rS(ctx->opcode));
1494
    gen_op_load_gpr_T1(rB(ctx->opcode));
1495
    gen_op_rotl64_T0_T1();
1496
    if (unlikely(mb != 0 || me != 63)) {
1497
        gen_andi_T0_64(ctx, MASK(mb, me));
1498
    }
1499
    gen_op_store_T0_gpr(rA(ctx->opcode));
1500
    if (unlikely(Rc(ctx->opcode) != 0))
1501
        gen_set_Rc0(ctx);
1502
}
1503

    
1504
/* rldcl - rldcl. */
1505
static always_inline void gen_rldcl (DisasContext *ctx, int mbn)
1506
{
1507
    uint32_t mb;
1508

    
1509
    mb = MB(ctx->opcode) | (mbn << 5);
1510
    gen_rldnm(ctx, mb, 63);
1511
}
1512
GEN_PPC64_R2(rldcl, 0x1E, 0x08);
1513
/* rldcr - rldcr. */
1514
static always_inline void gen_rldcr (DisasContext *ctx, int men)
1515
{
1516
    uint32_t me;
1517

    
1518
    me = MB(ctx->opcode) | (men << 5);
1519
    gen_rldnm(ctx, 0, me);
1520
}
1521
GEN_PPC64_R2(rldcr, 0x1E, 0x09);
1522
/* rldimi - rldimi. */
1523
static always_inline void gen_rldimi (DisasContext *ctx, int mbn, int shn)
1524
{
1525
    uint64_t mask;
1526
    uint32_t sh, mb;
1527

    
1528
    sh = SH(ctx->opcode) | (shn << 5);
1529
    mb = MB(ctx->opcode) | (mbn << 5);
1530
    if (likely(sh == 0)) {
1531
        if (likely(mb == 0)) {
1532
            gen_op_load_gpr_T0(rS(ctx->opcode));
1533
            goto do_store;
1534
        } else if (likely(mb == 63)) {
1535
            gen_op_load_gpr_T0(rA(ctx->opcode));
1536
            goto do_store;
1537
        }
1538
        gen_op_load_gpr_T0(rS(ctx->opcode));
1539
        gen_op_load_gpr_T1(rA(ctx->opcode));
1540
        goto do_mask;
1541
    }
1542
    gen_op_load_gpr_T0(rS(ctx->opcode));
1543
    gen_op_load_gpr_T1(rA(ctx->opcode));
1544
    gen_op_rotli64_T0(sh);
1545
 do_mask:
1546
    mask = MASK(mb, 63 - sh);
1547
    gen_andi_T0_64(ctx, mask);
1548
    gen_andi_T1_64(ctx, ~mask);
1549
    gen_op_or();
1550
 do_store:
1551
    gen_op_store_T0_gpr(rA(ctx->opcode));
1552
    if (unlikely(Rc(ctx->opcode) != 0))
1553
        gen_set_Rc0(ctx);
1554
}
1555
GEN_PPC64_R4(rldimi, 0x1E, 0x06);
1556
#endif
1557

    
1558
/***                             Integer shift                             ***/
1559
/* slw & slw. */
1560
__GEN_LOGICAL2(slw, 0x18, 0x00, PPC_INTEGER);
1561
/* sraw & sraw. */
1562
__GEN_LOGICAL2(sraw, 0x18, 0x18, PPC_INTEGER);
1563
/* srawi & srawi. */
1564
GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER)
1565
{
1566
    int mb, me;
1567
    gen_op_load_gpr_T0(rS(ctx->opcode));
1568
    if (SH(ctx->opcode) != 0) {
1569
        gen_op_move_T1_T0();
1570
        mb = 32 - SH(ctx->opcode);
1571
        me = 31;
1572
#if defined(TARGET_PPC64)
1573
        mb += 32;
1574
        me += 32;
1575
#endif
1576
        gen_op_srawi(SH(ctx->opcode), MASK(mb, me));
1577
    }
1578
    gen_op_store_T0_gpr(rA(ctx->opcode));
1579
    if (unlikely(Rc(ctx->opcode) != 0))
1580
        gen_set_Rc0(ctx);
1581
}
1582
/* srw & srw. */
1583
__GEN_LOGICAL2(srw, 0x18, 0x10, PPC_INTEGER);
1584

    
1585
#if defined(TARGET_PPC64)
1586
/* sld & sld. */
1587
__GEN_LOGICAL2(sld, 0x1B, 0x00, PPC_64B);
1588
/* srad & srad. */
1589
__GEN_LOGICAL2(srad, 0x1A, 0x18, PPC_64B);
1590
/* sradi & sradi. */
1591
static always_inline void gen_sradi (DisasContext *ctx, int n)
1592
{
1593
    uint64_t mask;
1594
    int sh, mb, me;
1595

    
1596
    gen_op_load_gpr_T0(rS(ctx->opcode));
1597
    sh = SH(ctx->opcode) + (n << 5);
1598
    if (sh != 0) {
1599
        gen_op_move_T1_T0();
1600
        mb = 64 - SH(ctx->opcode);
1601
        me = 63;
1602
        mask = MASK(mb, me);
1603
        gen_op_sradi(sh, mask >> 32, mask);
1604
    }
1605
    gen_op_store_T0_gpr(rA(ctx->opcode));
1606
    if (unlikely(Rc(ctx->opcode) != 0))
1607
        gen_set_Rc0(ctx);
1608
}
1609
GEN_HANDLER(sradi0, 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B)
1610
{
1611
    gen_sradi(ctx, 0);
1612
}
1613
GEN_HANDLER(sradi1, 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B)
1614
{
1615
    gen_sradi(ctx, 1);
1616
}
1617
/* srd & srd. */
1618
__GEN_LOGICAL2(srd, 0x1B, 0x10, PPC_64B);
1619
#endif
1620

    
1621
/***                       Floating-Point arithmetic                       ***/
1622
#define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, type)                     \
1623
GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type)                        \
1624
{                                                                             \
1625
    if (unlikely(!ctx->fpu_enabled)) {                                        \
1626
        GEN_EXCP_NO_FP(ctx);                                                  \
1627
        return;                                                               \
1628
    }                                                                         \
1629
    gen_op_reset_scrfx();                                                     \
1630
    gen_op_load_fpr_FT0(rA(ctx->opcode));                                     \
1631
    gen_op_load_fpr_FT1(rC(ctx->opcode));                                     \
1632
    gen_op_load_fpr_FT2(rB(ctx->opcode));                                     \
1633
    gen_op_f##op();                                                           \
1634
    if (isfloat) {                                                            \
1635
        gen_op_frsp();                                                        \
1636
    }                                                                         \
1637
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
1638
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1639
        gen_op_set_Rc1();                                                     \
1640
}
1641

    
1642
#define GEN_FLOAT_ACB(name, op2, type)                                        \
1643
_GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, type);                               \
1644
_GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, type);
1645

    
1646
#define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat)                     \
1647
GEN_HANDLER(f##name, op1, op2, 0xFF, inval, PPC_FLOAT)                        \
1648
{                                                                             \
1649
    if (unlikely(!ctx->fpu_enabled)) {                                        \
1650
        GEN_EXCP_NO_FP(ctx);                                                  \
1651
        return;                                                               \
1652
    }                                                                         \
1653
    gen_op_reset_scrfx();                                                     \
1654
    gen_op_load_fpr_FT0(rA(ctx->opcode));                                     \
1655
    gen_op_load_fpr_FT1(rB(ctx->opcode));                                     \
1656
    gen_op_f##op();                                                           \
1657
    if (isfloat) {                                                            \
1658
        gen_op_frsp();                                                        \
1659
    }                                                                         \
1660
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
1661
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1662
        gen_op_set_Rc1();                                                     \
1663
}
1664
#define GEN_FLOAT_AB(name, op2, inval)                                        \
1665
_GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0);                               \
1666
_GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1);
1667

    
1668
#define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat)                     \
1669
GEN_HANDLER(f##name, op1, op2, 0xFF, inval, PPC_FLOAT)                        \
1670
{                                                                             \
1671
    if (unlikely(!ctx->fpu_enabled)) {                                        \
1672
        GEN_EXCP_NO_FP(ctx);                                                  \
1673
        return;                                                               \
1674
    }                                                                         \
1675
    gen_op_reset_scrfx();                                                     \
1676
    gen_op_load_fpr_FT0(rA(ctx->opcode));                                     \
1677
    gen_op_load_fpr_FT1(rC(ctx->opcode));                                     \
1678
    gen_op_f##op();                                                           \
1679
    if (isfloat) {                                                            \
1680
        gen_op_frsp();                                                        \
1681
    }                                                                         \
1682
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
1683
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1684
        gen_op_set_Rc1();                                                     \
1685
}
1686
#define GEN_FLOAT_AC(name, op2, inval)                                        \
1687
_GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0);                               \
1688
_GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1);
1689

    
1690
#define GEN_FLOAT_B(name, op2, op3, type)                                     \
1691
GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type)                        \
1692
{                                                                             \
1693
    if (unlikely(!ctx->fpu_enabled)) {                                        \
1694
        GEN_EXCP_NO_FP(ctx);                                                  \
1695
        return;                                                               \
1696
    }                                                                         \
1697
    gen_op_reset_scrfx();                                                     \
1698
    gen_op_load_fpr_FT0(rB(ctx->opcode));                                     \
1699
    gen_op_f##name();                                                         \
1700
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
1701
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1702
        gen_op_set_Rc1();                                                     \
1703
}
1704

    
1705
#define GEN_FLOAT_BS(name, op1, op2, type)                                    \
1706
GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type)                        \
1707
{                                                                             \
1708
    if (unlikely(!ctx->fpu_enabled)) {                                        \
1709
        GEN_EXCP_NO_FP(ctx);                                                  \
1710
        return;                                                               \
1711
    }                                                                         \
1712
    gen_op_reset_scrfx();                                                     \
1713
    gen_op_load_fpr_FT0(rB(ctx->opcode));                                     \
1714
    gen_op_f##name();                                                         \
1715
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
1716
    if (unlikely(Rc(ctx->opcode) != 0))                                       \
1717
        gen_op_set_Rc1();                                                     \
1718
}
1719

    
1720
/* fadd - fadds */
1721
GEN_FLOAT_AB(add, 0x15, 0x000007C0);
1722
/* fdiv - fdivs */
1723
GEN_FLOAT_AB(div, 0x12, 0x000007C0);
1724
/* fmul - fmuls */
1725
GEN_FLOAT_AC(mul, 0x19, 0x0000F800);
1726

    
1727
/* fre */
1728
GEN_FLOAT_BS(re, 0x3F, 0x18, PPC_FLOAT_EXT);
1729

    
1730
/* fres */
1731
GEN_FLOAT_BS(res, 0x3B, 0x18, PPC_FLOAT_FRES);
1732

    
1733
/* frsqrte */
1734
GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, PPC_FLOAT_FRSQRTE);
1735

    
1736
/* fsel */
1737
_GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, PPC_FLOAT_FSEL);
1738
/* fsub - fsubs */
1739
GEN_FLOAT_AB(sub, 0x14, 0x000007C0);
1740
/* Optional: */
1741
/* fsqrt */
1742
GEN_HANDLER(fsqrt, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT)
1743
{
1744
    if (unlikely(!ctx->fpu_enabled)) {
1745
        GEN_EXCP_NO_FP(ctx);
1746
        return;
1747
    }
1748
    gen_op_reset_scrfx();
1749
    gen_op_load_fpr_FT0(rB(ctx->opcode));
1750
    gen_op_fsqrt();
1751
    gen_op_store_FT0_fpr(rD(ctx->opcode));
1752
    if (unlikely(Rc(ctx->opcode) != 0))
1753
        gen_op_set_Rc1();
1754
}
1755

    
1756
GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT)
1757
{
1758
    if (unlikely(!ctx->fpu_enabled)) {
1759
        GEN_EXCP_NO_FP(ctx);
1760
        return;
1761
    }
1762
    gen_op_reset_scrfx();
1763
    gen_op_load_fpr_FT0(rB(ctx->opcode));
1764
    gen_op_fsqrt();
1765
    gen_op_frsp();
1766
    gen_op_store_FT0_fpr(rD(ctx->opcode));
1767
    if (unlikely(Rc(ctx->opcode) != 0))
1768
        gen_op_set_Rc1();
1769
}
1770

    
1771
/***                     Floating-Point multiply-and-add                   ***/
1772
/* fmadd - fmadds */
1773
GEN_FLOAT_ACB(madd, 0x1D, PPC_FLOAT);
1774
/* fmsub - fmsubs */
1775
GEN_FLOAT_ACB(msub, 0x1C, PPC_FLOAT);
1776
/* fnmadd - fnmadds */
1777
GEN_FLOAT_ACB(nmadd, 0x1F, PPC_FLOAT);
1778
/* fnmsub - fnmsubs */
1779
GEN_FLOAT_ACB(nmsub, 0x1E, PPC_FLOAT);
1780

    
1781
/***                     Floating-Point round & convert                    ***/
1782
/* fctiw */
1783
GEN_FLOAT_B(ctiw, 0x0E, 0x00, PPC_FLOAT);
1784
/* fctiwz */
1785
GEN_FLOAT_B(ctiwz, 0x0F, 0x00, PPC_FLOAT);
1786
/* frsp */
1787
GEN_FLOAT_B(rsp, 0x0C, 0x00, PPC_FLOAT);
1788
#if defined(TARGET_PPC64)
1789
/* fcfid */
1790
GEN_FLOAT_B(cfid, 0x0E, 0x1A, PPC_64B);
1791
/* fctid */
1792
GEN_FLOAT_B(ctid, 0x0E, 0x19, PPC_64B);
1793
/* fctidz */
1794
GEN_FLOAT_B(ctidz, 0x0F, 0x19, PPC_64B);
1795
#endif
1796

    
1797
/* frin */
1798
GEN_FLOAT_B(rin, 0x08, 0x0C, PPC_FLOAT_EXT);
1799
/* friz */
1800
GEN_FLOAT_B(riz, 0x08, 0x0D, PPC_FLOAT_EXT);
1801
/* frip */
1802
GEN_FLOAT_B(rip, 0x08, 0x0E, PPC_FLOAT_EXT);
1803
/* frim */
1804
GEN_FLOAT_B(rim, 0x08, 0x0F, PPC_FLOAT_EXT);
1805

    
1806
/***                         Floating-Point compare                        ***/
1807
/* fcmpo */
1808
GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT)
1809
{
1810
    if (unlikely(!ctx->fpu_enabled)) {
1811
        GEN_EXCP_NO_FP(ctx);
1812
        return;
1813
    }
1814
    gen_op_reset_scrfx();
1815
    gen_op_load_fpr_FT0(rA(ctx->opcode));
1816
    gen_op_load_fpr_FT1(rB(ctx->opcode));
1817
    gen_op_fcmpo();
1818
    gen_op_store_T0_crf(crfD(ctx->opcode));
1819
}
1820

    
1821
/* fcmpu */
1822
GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT)
1823
{
1824
    if (unlikely(!ctx->fpu_enabled)) {
1825
        GEN_EXCP_NO_FP(ctx);
1826
        return;
1827
    }
1828
    gen_op_reset_scrfx();
1829
    gen_op_load_fpr_FT0(rA(ctx->opcode));
1830
    gen_op_load_fpr_FT1(rB(ctx->opcode));
1831
    gen_op_fcmpu();
1832
    gen_op_store_T0_crf(crfD(ctx->opcode));
1833
}
1834

    
1835
/***                         Floating-point move                           ***/
1836
/* fabs */
1837
GEN_FLOAT_B(abs, 0x08, 0x08, PPC_FLOAT);
1838

    
1839
/* fmr  - fmr. */
1840
GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT)
1841
{
1842
    if (unlikely(!ctx->fpu_enabled)) {
1843
        GEN_EXCP_NO_FP(ctx);
1844
        return;
1845
    }
1846
    gen_op_reset_scrfx();
1847
    gen_op_load_fpr_FT0(rB(ctx->opcode));
1848
    gen_op_store_FT0_fpr(rD(ctx->opcode));
1849
    if (unlikely(Rc(ctx->opcode) != 0))
1850
        gen_op_set_Rc1();
1851
}
1852

    
1853
/* fnabs */
1854
GEN_FLOAT_B(nabs, 0x08, 0x04, PPC_FLOAT);
1855
/* fneg */
1856
GEN_FLOAT_B(neg, 0x08, 0x01, PPC_FLOAT);
1857

    
1858
/***                  Floating-Point status & ctrl register                ***/
1859
/* mcrfs */
1860
GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT)
1861
{
1862
    if (unlikely(!ctx->fpu_enabled)) {
1863
        GEN_EXCP_NO_FP(ctx);
1864
        return;
1865
    }
1866
    gen_op_load_fpscr_T0(crfS(ctx->opcode));
1867
    gen_op_store_T0_crf(crfD(ctx->opcode));
1868
    gen_op_clear_fpscr(crfS(ctx->opcode));
1869
}
1870

    
1871
/* mffs */
1872
GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT)
1873
{
1874
    if (unlikely(!ctx->fpu_enabled)) {
1875
        GEN_EXCP_NO_FP(ctx);
1876
        return;
1877
    }
1878
    gen_op_load_fpscr();
1879
    gen_op_store_FT0_fpr(rD(ctx->opcode));
1880
    if (unlikely(Rc(ctx->opcode) != 0))
1881
        gen_op_set_Rc1();
1882
}
1883

    
1884
/* mtfsb0 */
1885
GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT)
1886
{
1887
    uint8_t crb;
1888

    
1889
    if (unlikely(!ctx->fpu_enabled)) {
1890
        GEN_EXCP_NO_FP(ctx);
1891
        return;
1892
    }
1893
    crb = crbD(ctx->opcode) >> 2;
1894
    gen_op_load_fpscr_T0(crb);
1895
    gen_op_andi_T0(~(1 << (crbD(ctx->opcode) & 0x03)));
1896
    gen_op_store_T0_fpscr(crb);
1897
    if (unlikely(Rc(ctx->opcode) != 0))
1898
        gen_op_set_Rc1();
1899
}
1900

    
1901
/* mtfsb1 */
1902
GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT)
1903
{
1904
    uint8_t crb;
1905

    
1906
    if (unlikely(!ctx->fpu_enabled)) {
1907
        GEN_EXCP_NO_FP(ctx);
1908
        return;
1909
    }
1910
    crb = crbD(ctx->opcode) >> 2;
1911
    gen_op_load_fpscr_T0(crb);
1912
    gen_op_ori(1 << (crbD(ctx->opcode) & 0x03));
1913
    gen_op_store_T0_fpscr(crb);
1914
    if (unlikely(Rc(ctx->opcode) != 0))
1915
        gen_op_set_Rc1();
1916
}
1917

    
1918
/* mtfsf */
1919
GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x02010000, PPC_FLOAT)
1920
{
1921
    if (unlikely(!ctx->fpu_enabled)) {
1922
        GEN_EXCP_NO_FP(ctx);
1923
        return;
1924
    }
1925
    gen_op_load_fpr_FT0(rB(ctx->opcode));
1926
    gen_op_store_fpscr(FM(ctx->opcode));
1927
    if (unlikely(Rc(ctx->opcode) != 0))
1928
        gen_op_set_Rc1();
1929
}
1930

    
1931
/* mtfsfi */
1932
GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT)
1933
{
1934
    if (unlikely(!ctx->fpu_enabled)) {
1935
        GEN_EXCP_NO_FP(ctx);
1936
        return;
1937
    }
1938
    gen_op_store_T0_fpscri(crbD(ctx->opcode) >> 2, FPIMM(ctx->opcode));
1939
    if (unlikely(Rc(ctx->opcode) != 0))
1940
        gen_op_set_Rc1();
1941
}
1942

    
1943
/***                           Addressing modes                            ***/
1944
/* Register indirect with immediate index : EA = (rA|0) + SIMM */
1945
static always_inline void gen_addr_imm_index (DisasContext *ctx,
1946
                                              target_long maskl)
1947
{
1948
    target_long simm = SIMM(ctx->opcode);
1949

    
1950
    simm &= ~maskl;
1951
    if (rA(ctx->opcode) == 0) {
1952
        gen_set_T0(simm);
1953
    } else {
1954
        gen_op_load_gpr_T0(rA(ctx->opcode));
1955
        if (likely(simm != 0))
1956
            gen_op_addi(simm);
1957
    }
1958
#ifdef DEBUG_MEMORY_ACCESSES
1959
    gen_op_print_mem_EA();
1960
#endif
1961
}
1962

    
1963
static always_inline void gen_addr_reg_index (DisasContext *ctx)
1964
{
1965
    if (rA(ctx->opcode) == 0) {
1966
        gen_op_load_gpr_T0(rB(ctx->opcode));
1967
    } else {
1968
        gen_op_load_gpr_T0(rA(ctx->opcode));
1969
        gen_op_load_gpr_T1(rB(ctx->opcode));
1970
        gen_op_add();
1971
    }
1972
#ifdef DEBUG_MEMORY_ACCESSES
1973
    gen_op_print_mem_EA();
1974
#endif
1975
}
1976

    
1977
static always_inline void gen_addr_register (DisasContext *ctx)
1978
{
1979
    if (rA(ctx->opcode) == 0) {
1980
        gen_op_reset_T0();
1981
    } else {
1982
        gen_op_load_gpr_T0(rA(ctx->opcode));
1983
    }
1984
#ifdef DEBUG_MEMORY_ACCESSES
1985
    gen_op_print_mem_EA();
1986
#endif
1987
}
1988

    
1989
/***                             Integer load                              ***/
1990
#define op_ldst(name)        (*gen_op_##name[ctx->mem_idx])()
1991
#if defined(CONFIG_USER_ONLY)
1992
#if defined(TARGET_PPC64)
1993
/* User mode only - 64 bits */
1994
#define OP_LD_TABLE(width)                                                    \
1995
static GenOpFunc *gen_op_l##width[] = {                                       \
1996
    &gen_op_l##width##_raw,                                                   \
1997
    &gen_op_l##width##_le_raw,                                                \
1998
    &gen_op_l##width##_64_raw,                                                \
1999
    &gen_op_l##width##_le_64_raw,                                             \
2000
};
2001
#define OP_ST_TABLE(width)                                                    \
2002
static GenOpFunc *gen_op_st##width[] = {                                      \
2003
    &gen_op_st##width##_raw,                                                  \
2004
    &gen_op_st##width##_le_raw,                                               \
2005
    &gen_op_st##width##_64_raw,                                               \
2006
    &gen_op_st##width##_le_64_raw,                                            \
2007
};
2008
/* Byte access routine are endian safe */
2009
#define gen_op_stb_le_64_raw gen_op_stb_64_raw
2010
#define gen_op_lbz_le_64_raw gen_op_lbz_64_raw
2011
#else
2012
/* User mode only - 32 bits */
2013
#define OP_LD_TABLE(width)                                                    \
2014
static GenOpFunc *gen_op_l##width[] = {                                       \
2015
    &gen_op_l##width##_raw,                                                   \
2016
    &gen_op_l##width##_le_raw,                                                \
2017
};
2018
#define OP_ST_TABLE(width)                                                    \
2019
static GenOpFunc *gen_op_st##width[] = {                                      \
2020
    &gen_op_st##width##_raw,                                                  \
2021
    &gen_op_st##width##_le_raw,                                               \
2022
};
2023
#endif
2024
/* Byte access routine are endian safe */
2025
#define gen_op_stb_le_raw gen_op_stb_raw
2026
#define gen_op_lbz_le_raw gen_op_lbz_raw
2027
#else
2028
#if defined(TARGET_PPC64)
2029
#if defined(TARGET_PPC64H)
2030
/* Full system - 64 bits with hypervisor mode */
2031
#define OP_LD_TABLE(width)                                                    \
2032
static GenOpFunc *gen_op_l##width[] = {                                       \
2033
    &gen_op_l##width##_user,                                                  \
2034
    &gen_op_l##width##_le_user,                                               \
2035
    &gen_op_l##width##_64_user,                                               \
2036
    &gen_op_l##width##_le_64_user,                                            \
2037
    &gen_op_l##width##_kernel,                                                \
2038
    &gen_op_l##width##_le_kernel,                                             \
2039
    &gen_op_l##width##_64_kernel,                                             \
2040
    &gen_op_l##width##_le_64_kernel,                                          \
2041
    &gen_op_l##width##_hypv,                                                  \
2042
    &gen_op_l##width##_le_hypv,                                               \
2043
    &gen_op_l##width##_64_hypv,                                               \
2044
    &gen_op_l##width##_le_64_hypv,                                            \
2045
};
2046
#define OP_ST_TABLE(width)                                                    \
2047
static GenOpFunc *gen_op_st##width[] = {                                      \
2048
    &gen_op_st##width##_user,                                                 \
2049
    &gen_op_st##width##_le_user,                                              \
2050
    &gen_op_st##width##_64_user,                                              \
2051
    &gen_op_st##width##_le_64_user,                                           \
2052
    &gen_op_st##width##_kernel,                                               \
2053
    &gen_op_st##width##_le_kernel,                                            \
2054
    &gen_op_st##width##_64_kernel,                                            \
2055
    &gen_op_st##width##_le_64_kernel,                                         \
2056
    &gen_op_st##width##_hypv,                                                 \
2057
    &gen_op_st##width##_le_hypv,                                              \
2058
    &gen_op_st##width##_64_hypv,                                              \
2059
    &gen_op_st##width##_le_64_hypv,                                           \
2060
};
2061
/* Byte access routine are endian safe */
2062
#define gen_op_stb_le_hypv      gen_op_stb_64_hypv
2063
#define gen_op_lbz_le_hypv      gen_op_lbz_64_hypv
2064
#define gen_op_stb_le_64_hypv   gen_op_stb_64_hypv
2065
#define gen_op_lbz_le_64_hypv   gen_op_lbz_64_hypv
2066
#else
2067
/* Full system - 64 bits */
2068
#define OP_LD_TABLE(width)                                                    \
2069
static GenOpFunc *gen_op_l##width[] = {                                       \
2070
    &gen_op_l##width##_user,                                                  \
2071
    &gen_op_l##width##_le_user,                                               \
2072
    &gen_op_l##width##_64_user,                                               \
2073
    &gen_op_l##width##_le_64_user,                                            \
2074
    &gen_op_l##width##_kernel,                                                \
2075
    &gen_op_l##width##_le_kernel,                                             \
2076
    &gen_op_l##width##_64_kernel,                                             \
2077
    &gen_op_l##width##_le_64_kernel,                                          \
2078
};
2079
#define OP_ST_TABLE(width)                                                    \
2080
static GenOpFunc *gen_op_st##width[] = {                                      \
2081
    &gen_op_st##width##_user,                                                 \
2082
    &gen_op_st##width##_le_user,                                              \
2083
    &gen_op_st##width##_64_user,                                              \
2084
    &gen_op_st##width##_le_64_user,                                           \
2085
    &gen_op_st##width##_kernel,                                               \
2086
    &gen_op_st##width##_le_kernel,                                            \
2087
    &gen_op_st##width##_64_kernel,                                            \
2088
    &gen_op_st##width##_le_64_kernel,                                         \
2089
};
2090
#endif
2091
/* Byte access routine are endian safe */
2092
#define gen_op_stb_le_64_user   gen_op_stb_64_user
2093
#define gen_op_lbz_le_64_user   gen_op_lbz_64_user
2094
#define gen_op_stb_le_64_kernel gen_op_stb_64_kernel
2095
#define gen_op_lbz_le_64_kernel gen_op_lbz_64_kernel
2096
#else
2097
/* Full system - 32 bits */
2098
#define OP_LD_TABLE(width)                                                    \
2099
static GenOpFunc *gen_op_l##width[] = {                                       \
2100
    &gen_op_l##width##_user,                                                  \
2101
    &gen_op_l##width##_le_user,                                               \
2102
    &gen_op_l##width##_kernel,                                                \
2103
    &gen_op_l##width##_le_kernel,                                             \
2104
};
2105
#define OP_ST_TABLE(width)                                                    \
2106
static GenOpFunc *gen_op_st##width[] = {                                      \
2107
    &gen_op_st##width##_user,                                                 \
2108
    &gen_op_st##width##_le_user,                                              \
2109
    &gen_op_st##width##_kernel,                                               \
2110
    &gen_op_st##width##_le_kernel,                                            \
2111
};
2112
#endif
2113
/* Byte access routine are endian safe */
2114
#define gen_op_stb_le_user   gen_op_stb_user
2115
#define gen_op_lbz_le_user   gen_op_lbz_user
2116
#define gen_op_stb_le_kernel gen_op_stb_kernel
2117
#define gen_op_lbz_le_kernel gen_op_lbz_kernel
2118
#endif
2119

    
2120
#define GEN_LD(width, opc, type)                                              \
2121
GEN_HANDLER(l##width, opc, 0xFF, 0xFF, 0x00000000, type)                      \
2122
{                                                                             \
2123
    gen_addr_imm_index(ctx, 0);                                               \
2124
    op_ldst(l##width);                                                        \
2125
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
2126
}
2127

    
2128
#define GEN_LDU(width, opc, type)                                             \
2129
GEN_HANDLER(l##width##u, opc, 0xFF, 0xFF, 0x00000000, type)                   \
2130
{                                                                             \
2131
    if (unlikely(rA(ctx->opcode) == 0 ||                                      \
2132
                 rA(ctx->opcode) == rD(ctx->opcode))) {                       \
2133
        GEN_EXCP_INVAL(ctx);                                                  \
2134
        return;                                                               \
2135
    }                                                                         \
2136
    if (type == PPC_64B)                                                      \
2137
        gen_addr_imm_index(ctx, 0x03);                                        \
2138
    else                                                                      \
2139
        gen_addr_imm_index(ctx, 0);                                           \
2140
    op_ldst(l##width);                                                        \
2141
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
2142
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2143
}
2144

    
2145
#define GEN_LDUX(width, opc2, opc3, type)                                     \
2146
GEN_HANDLER(l##width##ux, 0x1F, opc2, opc3, 0x00000001, type)                 \
2147
{                                                                             \
2148
    if (unlikely(rA(ctx->opcode) == 0 ||                                      \
2149
                 rA(ctx->opcode) == rD(ctx->opcode))) {                       \
2150
        GEN_EXCP_INVAL(ctx);                                                  \
2151
        return;                                                               \
2152
    }                                                                         \
2153
    gen_addr_reg_index(ctx);                                                  \
2154
    op_ldst(l##width);                                                        \
2155
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
2156
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2157
}
2158

    
2159
#define GEN_LDX(width, opc2, opc3, type)                                      \
2160
GEN_HANDLER(l##width##x, 0x1F, opc2, opc3, 0x00000001, type)                  \
2161
{                                                                             \
2162
    gen_addr_reg_index(ctx);                                                  \
2163
    op_ldst(l##width);                                                        \
2164
    gen_op_store_T1_gpr(rD(ctx->opcode));                                     \
2165
}
2166

    
2167
#define GEN_LDS(width, op, type)                                              \
2168
OP_LD_TABLE(width);                                                           \
2169
GEN_LD(width, op | 0x20, type);                                               \
2170
GEN_LDU(width, op | 0x21, type);                                              \
2171
GEN_LDUX(width, 0x17, op | 0x01, type);                                       \
2172
GEN_LDX(width, 0x17, op | 0x00, type)
2173

    
2174
/* lbz lbzu lbzux lbzx */
2175
GEN_LDS(bz, 0x02, PPC_INTEGER);
2176
/* lha lhau lhaux lhax */
2177
GEN_LDS(ha, 0x0A, PPC_INTEGER);
2178
/* lhz lhzu lhzux lhzx */
2179
GEN_LDS(hz, 0x08, PPC_INTEGER);
2180
/* lwz lwzu lwzux lwzx */
2181
GEN_LDS(wz, 0x00, PPC_INTEGER);
2182
#if defined(TARGET_PPC64)
2183
OP_LD_TABLE(wa);
2184
OP_LD_TABLE(d);
2185
/* lwaux */
2186
GEN_LDUX(wa, 0x15, 0x0B, PPC_64B);
2187
/* lwax */
2188
GEN_LDX(wa, 0x15, 0x0A, PPC_64B);
2189
/* ldux */
2190
GEN_LDUX(d, 0x15, 0x01, PPC_64B);
2191
/* ldx */
2192
GEN_LDX(d, 0x15, 0x00, PPC_64B);
2193
GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B)
2194
{
2195
    if (Rc(ctx->opcode)) {
2196
        if (unlikely(rA(ctx->opcode) == 0 ||
2197
                     rA(ctx->opcode) == rD(ctx->opcode))) {
2198
            GEN_EXCP_INVAL(ctx);
2199
            return;
2200
        }
2201
    }
2202
    gen_addr_imm_index(ctx, 0x03);
2203
    if (ctx->opcode & 0x02) {
2204
        /* lwa (lwau is undefined) */
2205
        op_ldst(lwa);
2206
    } else {
2207
        /* ld - ldu */
2208
        op_ldst(ld);
2209
    }
2210
    gen_op_store_T1_gpr(rD(ctx->opcode));
2211
    if (Rc(ctx->opcode))
2212
        gen_op_store_T0_gpr(rA(ctx->opcode));
2213
}
2214
/* lq */
2215
GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX)
2216
{
2217
#if defined(CONFIG_USER_ONLY)
2218
    GEN_EXCP_PRIVOPC(ctx);
2219
#else
2220
    int ra, rd;
2221

    
2222
    /* Restore CPU state */
2223
    if (unlikely(ctx->supervisor == 0)) {
2224
        GEN_EXCP_PRIVOPC(ctx);
2225
        return;
2226
    }
2227
    ra = rA(ctx->opcode);
2228
    rd = rD(ctx->opcode);
2229
    if (unlikely((rd & 1) || rd == ra)) {
2230
        GEN_EXCP_INVAL(ctx);
2231
        return;
2232
    }
2233
    if (unlikely(ctx->mem_idx & 1)) {
2234
        /* Little-endian mode is not handled */
2235
        GEN_EXCP(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2236
        return;
2237
    }
2238
    gen_addr_imm_index(ctx, 0x0F);
2239
    op_ldst(ld);
2240
    gen_op_store_T1_gpr(rd);
2241
    gen_op_addi(8);
2242
    op_ldst(ld);
2243
    gen_op_store_T1_gpr(rd + 1);
2244
#endif
2245
}
2246
#endif
2247

    
2248
/***                              Integer store                            ***/
2249
#define GEN_ST(width, opc, type)                                              \
2250
GEN_HANDLER(st##width, opc, 0xFF, 0xFF, 0x00000000, type)                     \
2251
{                                                                             \
2252
    gen_addr_imm_index(ctx, 0);                                               \
2253
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
2254
    op_ldst(st##width);                                                       \
2255
}
2256

    
2257
#define GEN_STU(width, opc, type)                                             \
2258
GEN_HANDLER(st##width##u, opc, 0xFF, 0xFF, 0x00000000, type)                  \
2259
{                                                                             \
2260
    if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2261
        GEN_EXCP_INVAL(ctx);                                                  \
2262
        return;                                                               \
2263
    }                                                                         \
2264
    if (type == PPC_64B)                                                      \
2265
        gen_addr_imm_index(ctx, 0x03);                                        \
2266
    else                                                                      \
2267
        gen_addr_imm_index(ctx, 0);                                           \
2268
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
2269
    op_ldst(st##width);                                                       \
2270
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2271
}
2272

    
2273
#define GEN_STUX(width, opc2, opc3, type)                                     \
2274
GEN_HANDLER(st##width##ux, 0x1F, opc2, opc3, 0x00000001, type)                \
2275
{                                                                             \
2276
    if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2277
        GEN_EXCP_INVAL(ctx);                                                  \
2278
        return;                                                               \
2279
    }                                                                         \
2280
    gen_addr_reg_index(ctx);                                                  \
2281
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
2282
    op_ldst(st##width);                                                       \
2283
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2284
}
2285

    
2286
#define GEN_STX(width, opc2, opc3, type)                                      \
2287
GEN_HANDLER(st##width##x, 0x1F, opc2, opc3, 0x00000001, type)                 \
2288
{                                                                             \
2289
    gen_addr_reg_index(ctx);                                                  \
2290
    gen_op_load_gpr_T1(rS(ctx->opcode));                                      \
2291
    op_ldst(st##width);                                                       \
2292
}
2293

    
2294
#define GEN_STS(width, op, type)                                              \
2295
OP_ST_TABLE(width);                                                           \
2296
GEN_ST(width, op | 0x20, type);                                               \
2297
GEN_STU(width, op | 0x21, type);                                              \
2298
GEN_STUX(width, 0x17, op | 0x01, type);                                       \
2299
GEN_STX(width, 0x17, op | 0x00, type)
2300

    
2301
/* stb stbu stbux stbx */
2302
GEN_STS(b, 0x06, PPC_INTEGER);
2303
/* sth sthu sthux sthx */
2304
GEN_STS(h, 0x0C, PPC_INTEGER);
2305
/* stw stwu stwux stwx */
2306
GEN_STS(w, 0x04, PPC_INTEGER);
2307
#if defined(TARGET_PPC64)
2308
OP_ST_TABLE(d);
2309
GEN_STUX(d, 0x15, 0x05, PPC_64B);
2310
GEN_STX(d, 0x15, 0x04, PPC_64B);
2311
GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B)
2312
{
2313
    int rs;
2314

    
2315
    rs = rS(ctx->opcode);
2316
    if ((ctx->opcode & 0x3) == 0x2) {
2317
#if defined(CONFIG_USER_ONLY)
2318
        GEN_EXCP_PRIVOPC(ctx);
2319
#else
2320
        /* stq */
2321
        if (unlikely(ctx->supervisor == 0)) {
2322
            GEN_EXCP_PRIVOPC(ctx);
2323
            return;
2324
        }
2325
        if (unlikely(rs & 1)) {
2326
            GEN_EXCP_INVAL(ctx);
2327
            return;
2328
        }
2329
        if (unlikely(ctx->mem_idx & 1)) {
2330
            /* Little-endian mode is not handled */
2331
            GEN_EXCP(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2332
            return;
2333
        }
2334
        gen_addr_imm_index(ctx, 0x03);
2335
        gen_op_load_gpr_T1(rs);
2336
        op_ldst(std);
2337
        gen_op_addi(8);
2338
        gen_op_load_gpr_T1(rs + 1);
2339
        op_ldst(std);
2340
#endif
2341
    } else {
2342
        /* std / stdu */
2343
        if (Rc(ctx->opcode)) {
2344
            if (unlikely(rA(ctx->opcode) == 0)) {
2345
                GEN_EXCP_INVAL(ctx);
2346
                return;
2347
            }
2348
        }
2349
        gen_addr_imm_index(ctx, 0x03);
2350
        gen_op_load_gpr_T1(rs);
2351
        op_ldst(std);
2352
        if (Rc(ctx->opcode))
2353
            gen_op_store_T0_gpr(rA(ctx->opcode));
2354
    }
2355
}
2356
#endif
2357
/***                Integer load and store with byte reverse               ***/
2358
/* lhbrx */
2359
OP_LD_TABLE(hbr);
2360
GEN_LDX(hbr, 0x16, 0x18, PPC_INTEGER);
2361
/* lwbrx */
2362
OP_LD_TABLE(wbr);
2363
GEN_LDX(wbr, 0x16, 0x10, PPC_INTEGER);
2364
/* sthbrx */
2365
OP_ST_TABLE(hbr);
2366
GEN_STX(hbr, 0x16, 0x1C, PPC_INTEGER);
2367
/* stwbrx */
2368
OP_ST_TABLE(wbr);
2369
GEN_STX(wbr, 0x16, 0x14, PPC_INTEGER);
2370

    
2371
/***                    Integer load and store multiple                    ***/
2372
#define op_ldstm(name, reg) (*gen_op_##name[ctx->mem_idx])(reg)
2373
#if defined(CONFIG_USER_ONLY)
2374
/* User-mode only */
2375
static GenOpFunc1 *gen_op_lmw[] = {
2376
    &gen_op_lmw_raw,
2377
    &gen_op_lmw_le_raw,
2378
#if defined(TARGET_PPC64)
2379
    &gen_op_lmw_64_raw,
2380
    &gen_op_lmw_le_64_raw,
2381
#endif
2382
};
2383
static GenOpFunc1 *gen_op_stmw[] = {
2384
    &gen_op_stmw_raw,
2385
    &gen_op_stmw_le_raw,
2386
#if defined(TARGET_PPC64)
2387
    &gen_op_stmw_64_raw,
2388
    &gen_op_stmw_le_64_raw,
2389
#endif
2390
};
2391
#else
2392
#if defined(TARGET_PPC64)
2393
/* Full system - 64 bits mode */
2394
static GenOpFunc1 *gen_op_lmw[] = {
2395
    &gen_op_lmw_user,
2396
    &gen_op_lmw_le_user,
2397
    &gen_op_lmw_64_user,
2398
    &gen_op_lmw_le_64_user,
2399
    &gen_op_lmw_kernel,
2400
    &gen_op_lmw_le_kernel,
2401
    &gen_op_lmw_64_kernel,
2402
    &gen_op_lmw_le_64_kernel,
2403
#if defined(TARGET_PPC64H)
2404
    &gen_op_lmw_hypv,
2405
    &gen_op_lmw_le_hypv,
2406
    &gen_op_lmw_64_hypv,
2407
    &gen_op_lmw_le_64_hypv,
2408
#endif
2409
};
2410
static GenOpFunc1 *gen_op_stmw[] = {
2411
    &gen_op_stmw_user,
2412
    &gen_op_stmw_le_user,
2413
    &gen_op_stmw_64_user,
2414
    &gen_op_stmw_le_64_user,
2415
    &gen_op_stmw_kernel,
2416
    &gen_op_stmw_le_kernel,
2417
    &gen_op_stmw_64_kernel,
2418
    &gen_op_stmw_le_64_kernel,
2419
#if defined(TARGET_PPC64H)
2420
    &gen_op_stmw_hypv,
2421
    &gen_op_stmw_le_hypv,
2422
    &gen_op_stmw_64_hypv,
2423
    &gen_op_stmw_le_64_hypv,
2424
#endif
2425
};
2426
#else
2427
/* Full system - 32 bits mode */
2428
static GenOpFunc1 *gen_op_lmw[] = {
2429
    &gen_op_lmw_user,
2430
    &gen_op_lmw_le_user,
2431
    &gen_op_lmw_kernel,
2432
    &gen_op_lmw_le_kernel,
2433
};
2434
static GenOpFunc1 *gen_op_stmw[] = {
2435
    &gen_op_stmw_user,
2436
    &gen_op_stmw_le_user,
2437
    &gen_op_stmw_kernel,
2438
    &gen_op_stmw_le_kernel,
2439
};
2440
#endif
2441
#endif
2442

    
2443
/* lmw */
2444
GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
2445
{
2446
    /* NIP cannot be restored if the memory exception comes from an helper */
2447
    gen_update_nip(ctx, ctx->nip - 4);
2448
    gen_addr_imm_index(ctx, 0);
2449
    op_ldstm(lmw, rD(ctx->opcode));
2450
}
2451

    
2452
/* stmw */
2453
GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
2454
{
2455
    /* NIP cannot be restored if the memory exception comes from an helper */
2456
    gen_update_nip(ctx, ctx->nip - 4);
2457
    gen_addr_imm_index(ctx, 0);
2458
    op_ldstm(stmw, rS(ctx->opcode));
2459
}
2460

    
2461
/***                    Integer load and store strings                     ***/
2462
#define op_ldsts(name, start) (*gen_op_##name[ctx->mem_idx])(start)
2463
#define op_ldstsx(name, rd, ra, rb) (*gen_op_##name[ctx->mem_idx])(rd, ra, rb)
2464
#if defined(CONFIG_USER_ONLY)
2465
/* User-mode only */
2466
static GenOpFunc1 *gen_op_lswi[] = {
2467
    &gen_op_lswi_raw,
2468
    &gen_op_lswi_le_raw,
2469
#if defined(TARGET_PPC64)
2470
    &gen_op_lswi_64_raw,
2471
    &gen_op_lswi_le_64_raw,
2472
#endif
2473
};
2474
static GenOpFunc3 *gen_op_lswx[] = {
2475
    &gen_op_lswx_raw,
2476
    &gen_op_lswx_le_raw,
2477
#if defined(TARGET_PPC64)
2478
    &gen_op_lswx_64_raw,
2479
    &gen_op_lswx_le_64_raw,
2480
#endif
2481
};
2482
static GenOpFunc1 *gen_op_stsw[] = {
2483
    &gen_op_stsw_raw,
2484
    &gen_op_stsw_le_raw,
2485
#if defined(TARGET_PPC64)
2486
    &gen_op_stsw_64_raw,
2487
    &gen_op_stsw_le_64_raw,
2488
#endif
2489
};
2490
#else
2491
#if defined(TARGET_PPC64)
2492
/* Full system - 64 bits mode */
2493
static GenOpFunc1 *gen_op_lswi[] = {
2494
    &gen_op_lswi_user,
2495
    &gen_op_lswi_le_user,
2496
    &gen_op_lswi_64_user,
2497
    &gen_op_lswi_le_64_user,
2498
    &gen_op_lswi_kernel,
2499
    &gen_op_lswi_le_kernel,
2500
    &gen_op_lswi_64_kernel,
2501
    &gen_op_lswi_le_64_kernel,
2502
#if defined(TARGET_PPC64H)
2503
    &gen_op_lswi_hypv,
2504
    &gen_op_lswi_le_hypv,
2505
    &gen_op_lswi_64_hypv,
2506
    &gen_op_lswi_le_64_hypv,
2507
#endif
2508
};
2509
static GenOpFunc3 *gen_op_lswx[] = {
2510
    &gen_op_lswx_user,
2511
    &gen_op_lswx_le_user,
2512
    &gen_op_lswx_64_user,
2513
    &gen_op_lswx_le_64_user,
2514
    &gen_op_lswx_kernel,
2515
    &gen_op_lswx_le_kernel,
2516
    &gen_op_lswx_64_kernel,
2517
    &gen_op_lswx_le_64_kernel,
2518
#if defined(TARGET_PPC64H)
2519
    &gen_op_lswx_hypv,
2520
    &gen_op_lswx_le_hypv,
2521
    &gen_op_lswx_64_hypv,
2522
    &gen_op_lswx_le_64_hypv,
2523
#endif
2524
};
2525
static GenOpFunc1 *gen_op_stsw[] = {
2526
    &gen_op_stsw_user,
2527
    &gen_op_stsw_le_user,
2528
    &gen_op_stsw_64_user,
2529
    &gen_op_stsw_le_64_user,
2530
    &gen_op_stsw_kernel,
2531
    &gen_op_stsw_le_kernel,
2532
    &gen_op_stsw_64_kernel,
2533
    &gen_op_stsw_le_64_kernel,
2534
#if defined(TARGET_PPC64H)
2535
    &gen_op_stsw_hypv,
2536
    &gen_op_stsw_le_hypv,
2537
    &gen_op_stsw_64_hypv,
2538
    &gen_op_stsw_le_64_hypv,
2539
#endif
2540
};
2541
#else
2542
/* Full system - 32 bits mode */
2543
static GenOpFunc1 *gen_op_lswi[] = {
2544
    &gen_op_lswi_user,
2545
    &gen_op_lswi_le_user,
2546
    &gen_op_lswi_kernel,
2547
    &gen_op_lswi_le_kernel,
2548
};
2549
static GenOpFunc3 *gen_op_lswx[] = {
2550
    &gen_op_lswx_user,
2551
    &gen_op_lswx_le_user,
2552
    &gen_op_lswx_kernel,
2553
    &gen_op_lswx_le_kernel,
2554
};
2555
static GenOpFunc1 *gen_op_stsw[] = {
2556
    &gen_op_stsw_user,
2557
    &gen_op_stsw_le_user,
2558
    &gen_op_stsw_kernel,
2559
    &gen_op_stsw_le_kernel,
2560
};
2561
#endif
2562
#endif
2563

    
2564
/* lswi */
2565
/* PowerPC32 specification says we must generate an exception if
2566
 * rA is in the range of registers to be loaded.
2567
 * In an other hand, IBM says this is valid, but rA won't be loaded.
2568
 * For now, I'll follow the spec...
2569
 */
2570
GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_INTEGER)
2571
{
2572
    int nb = NB(ctx->opcode);
2573
    int start = rD(ctx->opcode);
2574
    int ra = rA(ctx->opcode);
2575
    int nr;
2576

    
2577
    if (nb == 0)
2578
        nb = 32;
2579
    nr = nb / 4;
2580
    if (unlikely(((start + nr) > 32  &&
2581
                  start <= ra && (start + nr - 32) > ra) ||
2582
                 ((start + nr) <= 32 && start <= ra && (start + nr) > ra))) {
2583
        GEN_EXCP(ctx, POWERPC_EXCP_PROGRAM,
2584
                 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_LSWX);
2585
        return;
2586
    }
2587
    /* NIP cannot be restored if the memory exception comes from an helper */
2588
    gen_update_nip(ctx, ctx->nip - 4);
2589
    gen_addr_register(ctx);
2590
    gen_op_set_T1(nb);
2591
    op_ldsts(lswi, start);
2592
}
2593

    
2594
/* lswx */
2595
GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_INTEGER)
2596
{
2597
    int ra = rA(ctx->opcode);
2598
    int rb = rB(ctx->opcode);
2599

    
2600
    /* NIP cannot be restored if the memory exception comes from an helper */
2601
    gen_update_nip(ctx, ctx->nip - 4);
2602
    gen_addr_reg_index(ctx);
2603
    if (ra == 0) {
2604
        ra = rb;
2605
    }
2606
    gen_op_load_xer_bc();
2607
    op_ldstsx(lswx, rD(ctx->opcode), ra, rb);
2608
}
2609

    
2610
/* stswi */
2611
GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_INTEGER)
2612
{
2613
    int nb = NB(ctx->opcode);
2614

    
2615
    /* NIP cannot be restored if the memory exception comes from an helper */
2616
    gen_update_nip(ctx, ctx->nip - 4);
2617
    gen_addr_register(ctx);
2618
    if (nb == 0)
2619
        nb = 32;
2620
    gen_op_set_T1(nb);
2621
    op_ldsts(stsw, rS(ctx->opcode));
2622
}
2623

    
2624
/* stswx */
2625
GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_INTEGER)
2626
{
2627
    /* NIP cannot be restored if the memory exception comes from an helper */
2628
    gen_update_nip(ctx, ctx->nip - 4);
2629
    gen_addr_reg_index(ctx);
2630
    gen_op_load_xer_bc();
2631
    op_ldsts(stsw, rS(ctx->opcode));
2632
}
2633

    
2634
/***                        Memory synchronisation                         ***/
2635
/* eieio */
2636
GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO)
2637
{
2638
}
2639

    
2640
/* isync */
2641
GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM)
2642
{
2643
    GEN_STOP(ctx);
2644
}
2645

    
2646
#define op_lwarx() (*gen_op_lwarx[ctx->mem_idx])()
2647
#define op_stwcx() (*gen_op_stwcx[ctx->mem_idx])()
2648
#if defined(CONFIG_USER_ONLY)
2649
/* User-mode only */
2650
static GenOpFunc *gen_op_lwarx[] = {
2651
    &gen_op_lwarx_raw,
2652
    &gen_op_lwarx_le_raw,
2653
#if defined(TARGET_PPC64)
2654
    &gen_op_lwarx_64_raw,
2655
    &gen_op_lwarx_le_64_raw,
2656
#endif
2657
};
2658
static GenOpFunc *gen_op_stwcx[] = {
2659
    &gen_op_stwcx_raw,
2660
    &gen_op_stwcx_le_raw,
2661
#if defined(TARGET_PPC64)
2662
    &gen_op_stwcx_64_raw,
2663
    &gen_op_stwcx_le_64_raw,
2664
#endif
2665
};
2666
#else
2667
#if defined(TARGET_PPC64)
2668
/* Full system - 64 bits mode */
2669
static GenOpFunc *gen_op_lwarx[] = {
2670
    &gen_op_lwarx_user,
2671
    &gen_op_lwarx_le_user,
2672
    &gen_op_lwarx_64_user,
2673
    &gen_op_lwarx_le_64_user,
2674
    &gen_op_lwarx_kernel,
2675
    &gen_op_lwarx_le_kernel,
2676
    &gen_op_lwarx_64_kernel,
2677
    &gen_op_lwarx_le_64_kernel,
2678
#if defined(TARGET_PPC64H)
2679
    &gen_op_lwarx_hypv,
2680
    &gen_op_lwarx_le_hypv,
2681
    &gen_op_lwarx_64_hypv,
2682
    &gen_op_lwarx_le_64_hypv,
2683
#endif
2684
};
2685
static GenOpFunc *gen_op_stwcx[] = {
2686
    &gen_op_stwcx_user,
2687
    &gen_op_stwcx_le_user,
2688
    &gen_op_stwcx_64_user,
2689
    &gen_op_stwcx_le_64_user,
2690
    &gen_op_stwcx_kernel,
2691
    &gen_op_stwcx_le_kernel,
2692
    &gen_op_stwcx_64_kernel,
2693
    &gen_op_stwcx_le_64_kernel,
2694
#if defined(TARGET_PPC64H)
2695
    &gen_op_stwcx_hypv,
2696
    &gen_op_stwcx_le_hypv,
2697
    &gen_op_stwcx_64_hypv,
2698
    &gen_op_stwcx_le_64_hypv,
2699
#endif
2700
};
2701
#else
2702
/* Full system - 32 bits mode */
2703
static GenOpFunc *gen_op_lwarx[] = {
2704
    &gen_op_lwarx_user,
2705
    &gen_op_lwarx_le_user,
2706
    &gen_op_lwarx_kernel,
2707
    &gen_op_lwarx_le_kernel,
2708
};
2709
static GenOpFunc *gen_op_stwcx[] = {
2710
    &gen_op_stwcx_user,
2711
    &gen_op_stwcx_le_user,
2712
    &gen_op_stwcx_kernel,
2713
    &gen_op_stwcx_le_kernel,
2714
};
2715
#endif
2716
#endif
2717

    
2718
/* lwarx */
2719
GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES)
2720
{
2721
    /* NIP cannot be restored if the memory exception comes from an helper */
2722
    gen_update_nip(ctx, ctx->nip - 4);
2723
    gen_addr_reg_index(ctx);
2724
    op_lwarx();
2725
    gen_op_store_T1_gpr(rD(ctx->opcode));
2726
}
2727

    
2728
/* stwcx. */
2729
GEN_HANDLER(stwcx_, 0x1F, 0x16, 0x04, 0x00000000, PPC_RES)
2730
{
2731
    /* NIP cannot be restored if the memory exception comes from an helper */
2732
    gen_update_nip(ctx, ctx->nip - 4);
2733
    gen_addr_reg_index(ctx);
2734
    gen_op_load_gpr_T1(rS(ctx->opcode));
2735
    op_stwcx();
2736
}
2737

    
2738
#if defined(TARGET_PPC64)
2739
#define op_ldarx() (*gen_op_ldarx[ctx->mem_idx])()
2740
#define op_stdcx() (*gen_op_stdcx[ctx->mem_idx])()
2741
#if defined(CONFIG_USER_ONLY)
2742
/* User-mode only */
2743
static GenOpFunc *gen_op_ldarx[] = {
2744
    &gen_op_ldarx_raw,
2745
    &gen_op_ldarx_le_raw,
2746
    &gen_op_ldarx_64_raw,
2747
    &gen_op_ldarx_le_64_raw,
2748
};
2749
static GenOpFunc *gen_op_stdcx[] = {
2750
    &gen_op_stdcx_raw,
2751
    &gen_op_stdcx_le_raw,
2752
    &gen_op_stdcx_64_raw,
2753
    &gen_op_stdcx_le_64_raw,
2754
};
2755
#else
2756
/* Full system */
2757
static GenOpFunc *gen_op_ldarx[] = {
2758
    &gen_op_ldarx_user,
2759
    &gen_op_ldarx_le_user,
2760
    &gen_op_ldarx_64_user,
2761
    &gen_op_ldarx_le_64_user,
2762
    &gen_op_ldarx_kernel,
2763
    &gen_op_ldarx_le_kernel,
2764
    &gen_op_ldarx_64_kernel,
2765
    &gen_op_ldarx_le_64_kernel,
2766
#if defined(TARGET_PPC64H)
2767
    &gen_op_ldarx_hypv,
2768
    &gen_op_ldarx_le_hypv,
2769
    &gen_op_ldarx_64_hypv,
2770
    &gen_op_ldarx_le_64_hypv,
2771
#endif
2772
};
2773
static GenOpFunc *gen_op_stdcx[] = {
2774
    &gen_op_stdcx_user,
2775
    &gen_op_stdcx_le_user,
2776
    &gen_op_stdcx_64_user,
2777
    &gen_op_stdcx_le_64_user,
2778
    &gen_op_stdcx_kernel,
2779
    &gen_op_stdcx_le_kernel,
2780
    &gen_op_stdcx_64_kernel,
2781
    &gen_op_stdcx_le_64_kernel,
2782
#if defined(TARGET_PPC64H)
2783
    &gen_op_stdcx_hypv,
2784
    &gen_op_stdcx_le_hypv,
2785
    &gen_op_stdcx_64_hypv,
2786
    &gen_op_stdcx_le_64_hypv,
2787
#endif
2788
};
2789
#endif
2790

    
2791
/* ldarx */
2792
GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B)
2793
{
2794
    /* NIP cannot be restored if the memory exception comes from an helper */
2795
    gen_update_nip(ctx, ctx->nip - 4);
2796
    gen_addr_reg_index(ctx);
2797
    op_ldarx();
2798
    gen_op_store_T1_gpr(rD(ctx->opcode));
2799
}
2800

    
2801
/* stdcx. */
2802
GEN_HANDLER(stdcx_, 0x1F, 0x16, 0x06, 0x00000000, PPC_64B)
2803
{
2804
    /* NIP cannot be restored if the memory exception comes from an helper */
2805
    gen_update_nip(ctx, ctx->nip - 4);
2806
    gen_addr_reg_index(ctx);
2807
    gen_op_load_gpr_T1(rS(ctx->opcode));
2808
    op_stdcx();
2809
}
2810
#endif /* defined(TARGET_PPC64) */
2811

    
2812
/* sync */
2813
GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC)
2814
{
2815
}
2816

    
2817
/* wait */
2818
GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT)
2819
{
2820
    /* Stop translation, as the CPU is supposed to sleep from now */
2821
    gen_op_wait();
2822
    GEN_EXCP(ctx, EXCP_HLT, 1);
2823
}
2824

    
2825
/***                         Floating-point load                           ***/
2826
#define GEN_LDF(width, opc, type)                                             \
2827
GEN_HANDLER(l##width, opc, 0xFF, 0xFF, 0x00000000, type)                      \
2828
{                                                                             \
2829
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2830
        GEN_EXCP_NO_FP(ctx);                                                  \
2831
        return;                                                               \
2832
    }                                                                         \
2833
    gen_addr_imm_index(ctx, 0);                                               \
2834
    op_ldst(l##width);                                                        \
2835
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
2836
}
2837

    
2838
#define GEN_LDUF(width, opc, type)                                            \
2839
GEN_HANDLER(l##width##u, opc, 0xFF, 0xFF, 0x00000000, type)                   \
2840
{                                                                             \
2841
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2842
        GEN_EXCP_NO_FP(ctx);                                                  \
2843
        return;                                                               \
2844
    }                                                                         \
2845
    if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2846
        GEN_EXCP_INVAL(ctx);                                                  \
2847
        return;                                                               \
2848
    }                                                                         \
2849
    gen_addr_imm_index(ctx, 0);                                               \
2850
    op_ldst(l##width);                                                        \
2851
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
2852
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2853
}
2854

    
2855
#define GEN_LDUXF(width, opc, type)                                           \
2856
GEN_HANDLER(l##width##ux, 0x1F, 0x17, opc, 0x00000001, type)                  \
2857
{                                                                             \
2858
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2859
        GEN_EXCP_NO_FP(ctx);                                                  \
2860
        return;                                                               \
2861
    }                                                                         \
2862
    if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2863
        GEN_EXCP_INVAL(ctx);                                                  \
2864
        return;                                                               \
2865
    }                                                                         \
2866
    gen_addr_reg_index(ctx);                                                  \
2867
    op_ldst(l##width);                                                        \
2868
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
2869
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2870
}
2871

    
2872
#define GEN_LDXF(width, opc2, opc3, type)                                     \
2873
GEN_HANDLER(l##width##x, 0x1F, opc2, opc3, 0x00000001, type)                  \
2874
{                                                                             \
2875
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2876
        GEN_EXCP_NO_FP(ctx);                                                  \
2877
        return;                                                               \
2878
    }                                                                         \
2879
    gen_addr_reg_index(ctx);                                                  \
2880
    op_ldst(l##width);                                                        \
2881
    gen_op_store_FT0_fpr(rD(ctx->opcode));                                    \
2882
}
2883

    
2884
#define GEN_LDFS(width, op, type)                                             \
2885
OP_LD_TABLE(width);                                                           \
2886
GEN_LDF(width, op | 0x20, type);                                              \
2887
GEN_LDUF(width, op | 0x21, type);                                             \
2888
GEN_LDUXF(width, op | 0x01, type);                                            \
2889
GEN_LDXF(width, 0x17, op | 0x00, type)
2890

    
2891
/* lfd lfdu lfdux lfdx */
2892
GEN_LDFS(fd, 0x12, PPC_FLOAT);
2893
/* lfs lfsu lfsux lfsx */
2894
GEN_LDFS(fs, 0x10, PPC_FLOAT);
2895

    
2896
/***                         Floating-point store                          ***/
2897
#define GEN_STF(width, opc, type)                                             \
2898
GEN_HANDLER(st##width, opc, 0xFF, 0xFF, 0x00000000, type)                     \
2899
{                                                                             \
2900
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2901
        GEN_EXCP_NO_FP(ctx);                                                  \
2902
        return;                                                               \
2903
    }                                                                         \
2904
    gen_addr_imm_index(ctx, 0);                                               \
2905
    gen_op_load_fpr_FT0(rS(ctx->opcode));                                     \
2906
    op_ldst(st##width);                                                       \
2907
}
2908

    
2909
#define GEN_STUF(width, opc, type)                                            \
2910
GEN_HANDLER(st##width##u, opc, 0xFF, 0xFF, 0x00000000, type)                  \
2911
{                                                                             \
2912
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2913
        GEN_EXCP_NO_FP(ctx);                                                  \
2914
        return;                                                               \
2915
    }                                                                         \
2916
    if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2917
        GEN_EXCP_INVAL(ctx);                                                  \
2918
        return;                                                               \
2919
    }                                                                         \
2920
    gen_addr_imm_index(ctx, 0);                                               \
2921
    gen_op_load_fpr_FT0(rS(ctx->opcode));                                     \
2922
    op_ldst(st##width);                                                       \
2923
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2924
}
2925

    
2926
#define GEN_STUXF(width, opc, type)                                           \
2927
GEN_HANDLER(st##width##ux, 0x1F, 0x17, opc, 0x00000001, type)                 \
2928
{                                                                             \
2929
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2930
        GEN_EXCP_NO_FP(ctx);                                                  \
2931
        return;                                                               \
2932
    }                                                                         \
2933
    if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2934
        GEN_EXCP_INVAL(ctx);                                                  \
2935
        return;                                                               \
2936
    }                                                                         \
2937
    gen_addr_reg_index(ctx);                                                  \
2938
    gen_op_load_fpr_FT0(rS(ctx->opcode));                                     \
2939
    op_ldst(st##width);                                                       \
2940
    gen_op_store_T0_gpr(rA(ctx->opcode));                                     \
2941
}
2942

    
2943
#define GEN_STXF(width, opc2, opc3, type)                                     \
2944
GEN_HANDLER(st##width##x, 0x1F, opc2, opc3, 0x00000001, type)                 \
2945
{                                                                             \
2946
    if (unlikely(!ctx->fpu_enabled)) {                                        \
2947
        GEN_EXCP_NO_FP(ctx);                                                  \
2948
        return;                                                               \
2949
    }                                                                         \
2950
    gen_addr_reg_index(ctx);                                                  \
2951
    gen_op_load_fpr_FT0(rS(ctx->opcode));                                     \
2952
    op_ldst(st##width);                                                       \
2953
}
2954

    
2955
#define GEN_STFS(width, op, type)                                             \
2956
OP_ST_TABLE(width);                                                           \
2957
GEN_STF(width, op | 0x20, type);                                              \
2958
GEN_STUF(width, op | 0x21, type);                                             \
2959
GEN_STUXF(width, op | 0x01, type);                                            \
2960
GEN_STXF(width, 0x17, op | 0x00, type)
2961

    
2962
/* stfd stfdu stfdux stfdx */
2963
GEN_STFS(fd, 0x16, PPC_FLOAT);
2964
/* stfs stfsu stfsux stfsx */
2965
GEN_STFS(fs, 0x14, PPC_FLOAT);
2966

    
2967
/* Optional: */
2968
/* stfiwx */
2969
OP_ST_TABLE(fiwx);
2970
GEN_STXF(fiwx, 0x17, 0x1E, PPC_FLOAT_STFIWX);
2971

    
2972
/***                                Branch                                 ***/
2973
static always_inline void gen_goto_tb (DisasContext *ctx, int n,
2974
                                       target_ulong dest)
2975
{
2976
    TranslationBlock *tb;
2977
    tb = ctx->tb;
2978
    if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK)) {
2979
        if (n == 0)
2980
            gen_op_goto_tb0(TBPARAM(tb));
2981
        else
2982
            gen_op_goto_tb1(TBPARAM(tb));
2983
        gen_set_T1(dest);
2984
#if defined(TARGET_PPC64)
2985
        if (ctx->sf_mode)
2986
            gen_op_b_T1_64();
2987
        else
2988
#endif
2989
            gen_op_b_T1();
2990
        gen_op_set_T0((long)tb + n);
2991
        if (ctx->singlestep_enabled)
2992
            gen_op_debug();
2993
        gen_op_exit_tb();
2994
    } else {
2995
        gen_set_T1(dest);
2996
#if defined(TARGET_PPC64)
2997
        if (ctx->sf_mode)
2998
            gen_op_b_T1_64();
2999
        else
3000
#endif
3001
            gen_op_b_T1();
3002
        gen_op_reset_T0();
3003
        if (ctx->singlestep_enabled)
3004
            gen_op_debug();
3005
        gen_op_exit_tb();
3006
    }
3007
}
3008

    
3009
static always_inline void gen_setlr (DisasContext *ctx, target_ulong nip)
3010
{
3011
#if defined(TARGET_PPC64)
3012
    if (ctx->sf_mode != 0 && (nip >> 32))
3013
        gen_op_setlr_64(ctx->nip >> 32, ctx->nip);
3014
    else
3015
#endif
3016
        gen_op_setlr(ctx->nip);
3017
}
3018

    
3019
/* b ba bl bla */
3020
GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3021
{
3022
    target_ulong li, target;
3023

    
3024
    /* sign extend LI */
3025
#if defined(TARGET_PPC64)
3026
    if (ctx->sf_mode)
3027
        li = ((int64_t)LI(ctx->opcode) << 38) >> 38;
3028
    else
3029
#endif
3030
        li = ((int32_t)LI(ctx->opcode) << 6) >> 6;
3031
    if (likely(AA(ctx->opcode) == 0))
3032
        target = ctx->nip + li - 4;
3033
    else
3034
        target = li;
3035
#if defined(TARGET_PPC64)
3036
    if (!ctx->sf_mode)
3037
        target = (uint32_t)target;
3038
#endif
3039
    if (LK(ctx->opcode))
3040
        gen_setlr(ctx, ctx->nip);
3041
    gen_goto_tb(ctx, 0, target);
3042
    ctx->exception = POWERPC_EXCP_BRANCH;
3043
}
3044

    
3045
#define BCOND_IM  0
3046
#define BCOND_LR  1
3047
#define BCOND_CTR 2
3048

    
3049
static always_inline void gen_bcond (DisasContext *ctx, int type)
3050
{
3051
    target_ulong target = 0;
3052
    target_ulong li;
3053
    uint32_t bo = BO(ctx->opcode);
3054
    uint32_t bi = BI(ctx->opcode);
3055
    uint32_t mask;
3056

    
3057
    if ((bo & 0x4) == 0)
3058
        gen_op_dec_ctr();
3059
    switch(type) {
3060
    case BCOND_IM:
3061
        li = (target_long)((int16_t)(BD(ctx->opcode)));
3062
        if (likely(AA(ctx->opcode) == 0)) {
3063
            target = ctx->nip + li - 4;
3064
        } else {
3065
            target = li;
3066
        }
3067
#if defined(TARGET_PPC64)
3068
        if (!ctx->sf_mode)
3069
            target = (uint32_t)target;
3070
#endif
3071
        break;
3072
    case BCOND_CTR:
3073
        gen_op_movl_T1_ctr();
3074
        break;
3075
    default:
3076
    case BCOND_LR:
3077
        gen_op_movl_T1_lr();
3078
        break;
3079
    }
3080
    if (LK(ctx->opcode))
3081
        gen_setlr(ctx, ctx->nip);
3082
    if (bo & 0x10) {
3083
        /* No CR condition */
3084
        switch (bo & 0x6) {
3085
        case 0:
3086
#if defined(TARGET_PPC64)
3087
            if (ctx->sf_mode)
3088
                gen_op_test_ctr_64();
3089
            else
3090
#endif
3091
                gen_op_test_ctr();
3092
            break;
3093
        case 2:
3094
#if defined(TARGET_PPC64)
3095
            if (ctx->sf_mode)
3096
                gen_op_test_ctrz_64();
3097
            else
3098
#endif
3099
                gen_op_test_ctrz();
3100
            break;
3101
        default:
3102
        case 4:
3103
        case 6:
3104
            if (type == BCOND_IM) {
3105
                gen_goto_tb(ctx, 0, target);
3106
                goto out;
3107
            } else {
3108
#if defined(TARGET_PPC64)
3109
                if (ctx->sf_mode)
3110
                    gen_op_b_T1_64();
3111
                else
3112
#endif
3113
                    gen_op_b_T1();
3114
                gen_op_reset_T0();
3115
                goto no_test;
3116
            }
3117
            break;
3118
        }
3119
    } else {
3120
        mask = 1 << (3 - (bi & 0x03));
3121
        gen_op_load_crf_T0(bi >> 2);
3122
        if (bo & 0x8) {
3123
            switch (bo & 0x6) {
3124
            case 0:
3125
#if defined(TARGET_PPC64)
3126
                if (ctx->sf_mode)
3127
                    gen_op_test_ctr_true_64(mask);
3128
                else
3129
#endif
3130
                    gen_op_test_ctr_true(mask);
3131
                break;
3132
            case 2:
3133
#if defined(TARGET_PPC64)
3134
                if (ctx->sf_mode)
3135
                    gen_op_test_ctrz_true_64(mask);
3136
                else
3137
#endif
3138
                    gen_op_test_ctrz_true(mask);
3139
                break;
3140
            default:
3141
            case 4:
3142
            case 6:
3143
                gen_op_test_true(mask);
3144
                break;
3145
            }
3146
        } else {
3147
            switch (bo & 0x6) {
3148
            case 0:
3149
#if defined(TARGET_PPC64)
3150
                if (ctx->sf_mode)
3151
                    gen_op_test_ctr_false_64(mask);
3152
                else
3153
#endif
3154
                    gen_op_test_ctr_false(mask);
3155
                break;
3156
            case 2:
3157
#if defined(TARGET_PPC64)
3158
                if (ctx->sf_mode)
3159
                    gen_op_test_ctrz_false_64(mask);
3160
                else
3161
#endif
3162
                    gen_op_test_ctrz_false(mask);
3163
                break;
3164
            default:
3165
            case 4:
3166
            case 6:
3167
                gen_op_test_false(mask);
3168
                break;
3169
            }
3170
        }
3171
    }
3172
    if (type == BCOND_IM) {
3173
        int l1 = gen_new_label();
3174
        gen_op_jz_T0(l1);
3175
        gen_goto_tb(ctx, 0, target);
3176
        gen_set_label(l1);
3177
        gen_goto_tb(ctx, 1, ctx->nip);
3178
    } else {
3179
#if defined(TARGET_PPC64)
3180
        if (ctx->sf_mode)
3181
            gen_op_btest_T1_64(ctx->nip >> 32, ctx->nip);
3182
        else
3183
#endif
3184
            gen_op_btest_T1(ctx->nip);
3185
        gen_op_reset_T0();
3186
    no_test:
3187
        if (ctx->singlestep_enabled)
3188
            gen_op_debug();
3189
        gen_op_exit_tb();
3190
    }
3191
 out:
3192
    ctx->exception = POWERPC_EXCP_BRANCH;
3193
}
3194

    
3195
GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3196
{
3197
    gen_bcond(ctx, BCOND_IM);
3198
}
3199

    
3200
GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW)
3201
{
3202
    gen_bcond(ctx, BCOND_CTR);
3203
}
3204

    
3205
GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW)
3206
{
3207
    gen_bcond(ctx, BCOND_LR);
3208
}
3209

    
3210
/***                      Condition register logical                       ***/
3211
#define GEN_CRLOGIC(op, opc)                                                  \
3212
GEN_HANDLER(cr##op, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)                 \
3213
{                                                                             \
3214
    gen_op_load_crf_T0(crbA(ctx->opcode) >> 2);                               \
3215
    gen_op_getbit_T0(3 - (crbA(ctx->opcode) & 0x03));                         \
3216
    gen_op_load_crf_T1(crbB(ctx->opcode) >> 2);                               \
3217
    gen_op_getbit_T1(3 - (crbB(ctx->opcode) & 0x03));                         \
3218
    gen_op_##op();                                                            \
3219
    gen_op_load_crf_T1(crbD(ctx->opcode) >> 2);                               \
3220
    gen_op_setcrfbit(~(1 << (3 - (crbD(ctx->opcode) & 0x03))),                \
3221
                     3 - (crbD(ctx->opcode) & 0x03));                         \
3222
    gen_op_store_T1_crf(crbD(ctx->opcode) >> 2);                              \
3223
}
3224

    
3225
/* crand */
3226
GEN_CRLOGIC(and, 0x08);
3227
/* crandc */
3228
GEN_CRLOGIC(andc, 0x04);
3229
/* creqv */
3230
GEN_CRLOGIC(eqv, 0x09);
3231
/* crnand */
3232
GEN_CRLOGIC(nand, 0x07);
3233
/* crnor */
3234
GEN_CRLOGIC(nor, 0x01);
3235
/* cror */
3236
GEN_CRLOGIC(or, 0x0E);
3237
/* crorc */
3238
GEN_CRLOGIC(orc, 0x0D);
3239
/* crxor */
3240
GEN_CRLOGIC(xor, 0x06);
3241
/* mcrf */
3242
GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER)
3243
{
3244
    gen_op_load_crf_T0(crfS(ctx->opcode));
3245
    gen_op_store_T0_crf(crfD(ctx->opcode));
3246
}
3247

    
3248
/***                           System linkage                              ***/
3249
/* rfi (supervisor only) */
3250
GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW)
3251
{
3252
#if defined(CONFIG_USER_ONLY)
3253
    GEN_EXCP_PRIVOPC(ctx);
3254
#else
3255
    /* Restore CPU state */
3256
    if (unlikely(!ctx->supervisor)) {
3257
        GEN_EXCP_PRIVOPC(ctx);
3258
        return;
3259
    }
3260
    gen_op_rfi();
3261
    GEN_SYNC(ctx);
3262
#endif
3263
}
3264

    
3265
#if defined(TARGET_PPC64)
3266
GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B)
3267
{
3268
#if defined(CONFIG_USER_ONLY)
3269
    GEN_EXCP_PRIVOPC(ctx);
3270
#else
3271
    /* Restore CPU state */
3272
    if (unlikely(!ctx->supervisor)) {
3273
        GEN_EXCP_PRIVOPC(ctx);
3274
        return;
3275
    }
3276
    gen_op_rfid();
3277
    GEN_SYNC(ctx);
3278
#endif
3279
}
3280
#endif
3281

    
3282
#if defined(TARGET_PPC64H)
3283
GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64B)
3284
{
3285
#if defined(CONFIG_USER_ONLY)
3286
    GEN_EXCP_PRIVOPC(ctx);
3287
#else
3288
    /* Restore CPU state */
3289
    if (unlikely(ctx->supervisor <= 1)) {
3290
        GEN_EXCP_PRIVOPC(ctx);
3291
        return;
3292
    }
3293
    gen_op_hrfid();
3294
    GEN_SYNC(ctx);
3295
#endif
3296
}
3297
#endif
3298

    
3299
/* sc */
3300
GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW)
3301
{
3302
    uint32_t lev;
3303

    
3304
    lev = (ctx->opcode >> 5) & 0x7F;
3305
#if defined(CONFIG_USER_ONLY)
3306
    GEN_EXCP(ctx, POWERPC_EXCP_SYSCALL_USER, lev);
3307
#else
3308
    GEN_EXCP(ctx, POWERPC_EXCP_SYSCALL, lev);
3309
#endif
3310
}
3311

    
3312
/***                                Trap                                   ***/
3313
/* tw */
3314
GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW)
3315
{
3316
    gen_op_load_gpr_T0(rA(ctx->opcode));
3317
    gen_op_load_gpr_T1(rB(ctx->opcode));
3318
    /* Update the nip since this might generate a trap exception */
3319
    gen_update_nip(ctx, ctx->nip);
3320
    gen_op_tw(TO(ctx->opcode));
3321
}
3322

    
3323
/* twi */
3324
GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3325
{
3326
    gen_op_load_gpr_T0(rA(ctx->opcode));
3327
    gen_set_T1(SIMM(ctx->opcode));
3328
    /* Update the nip since this might generate a trap exception */
3329
    gen_update_nip(ctx, ctx->nip);
3330
    gen_op_tw(TO(ctx->opcode));
3331
}
3332

    
3333
#if defined(TARGET_PPC64)
3334
/* td */
3335
GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B)
3336
{
3337
    gen_op_load_gpr_T0(rA(ctx->opcode));
3338
    gen_op_load_gpr_T1(rB(ctx->opcode));
3339
    /* Update the nip since this might generate a trap exception */
3340
    gen_update_nip(ctx, ctx->nip);
3341
    gen_op_td(TO(ctx->opcode));
3342
}
3343

    
3344
/* tdi */
3345
GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B)
3346
{
3347
    gen_op_load_gpr_T0(rA(ctx->opcode));
3348
    gen_set_T1(SIMM(ctx->opcode));
3349
    /* Update the nip since this might generate a trap exception */
3350
    gen_update_nip(ctx, ctx->nip);
3351
    gen_op_td(TO(ctx->opcode));
3352
}
3353
#endif
3354

    
3355
/***                          Processor control                            ***/
3356
/* mcrxr */
3357
GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC)
3358
{
3359
    gen_op_load_xer_cr();
3360
    gen_op_store_T0_crf(crfD(ctx->opcode));
3361
    gen_op_clear_xer_ov();
3362
    gen_op_clear_xer_ca();
3363
}
3364

    
3365
/* mfcr */
3366
GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC)
3367
{
3368
    uint32_t crm, crn;
3369

    
3370
    if (likely(ctx->opcode & 0x00100000)) {
3371
        crm = CRM(ctx->opcode);
3372
        if (likely((crm ^ (crm - 1)) == 0)) {
3373
            crn = ffs(crm);
3374
            gen_op_load_cro(7 - crn);
3375
        }
3376
    } else {
3377
        gen_op_load_cr();
3378
    }
3379
    gen_op_store_T0_gpr(rD(ctx->opcode));
3380
}
3381

    
3382
/* mfmsr */
3383
GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC)
3384
{
3385
#if defined(CONFIG_USER_ONLY)
3386
    GEN_EXCP_PRIVREG(ctx);
3387
#else
3388
    if (unlikely(!ctx->supervisor)) {
3389
        GEN_EXCP_PRIVREG(ctx);
3390
        return;
3391
    }
3392
    gen_op_load_msr();
3393
    gen_op_store_T0_gpr(rD(ctx->opcode));
3394
#endif
3395
}
3396

    
3397
#if 0
3398
#define SPR_NOACCESS ((void *)(-1))
3399
#else
3400
static void spr_noaccess (void *opaque, int sprn)
3401
{
3402
    sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
3403
    printf("ERROR: try to access SPR %d !\n", sprn);
3404
}
3405
#define SPR_NOACCESS (&spr_noaccess)
3406
#endif
3407

    
3408
/* mfspr */
3409
static always_inline void gen_op_mfspr (DisasContext *ctx)
3410
{
3411
    void (*read_cb)(void *opaque, int sprn);
3412
    uint32_t sprn = SPR(ctx->opcode);
3413

    
3414
#if !defined(CONFIG_USER_ONLY)
3415
#if defined(TARGET_PPC64H)
3416
    if (ctx->supervisor == 2)
3417
        read_cb = ctx->spr_cb[sprn].hea_read;
3418
    else
3419
#endif
3420
    if (ctx->supervisor)
3421
        read_cb = ctx->spr_cb[sprn].oea_read;
3422
    else
3423
#endif
3424
        read_cb = ctx->spr_cb[sprn].uea_read;
3425
    if (likely(read_cb != NULL)) {
3426
        if (likely(read_cb != SPR_NOACCESS)) {
3427
            (*read_cb)(ctx, sprn);
3428
            gen_op_store_T0_gpr(rD(ctx->opcode));
3429
        } else {
3430
            /* Privilege exception */
3431
            if (loglevel != 0) {
3432
                fprintf(logfile, "Trying to read privileged spr %d %03x\n",
3433
                        sprn, sprn);
3434
            }
3435
            printf("Trying to read privileged spr %d %03x\n", sprn, sprn);
3436
            GEN_EXCP_PRIVREG(ctx);
3437
        }
3438
    } else {
3439
        /* Not defined */
3440
        if (loglevel != 0) {
3441
            fprintf(logfile, "Trying to read invalid spr %d %03x\n",
3442
                    sprn, sprn);
3443
        }
3444
        printf("Trying to read invalid spr %d %03x\n", sprn, sprn);
3445
        GEN_EXCP(ctx, POWERPC_EXCP_PROGRAM,
3446
                 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_SPR);
3447
    }
3448
}
3449

    
3450
GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC)
3451
{
3452
    gen_op_mfspr(ctx);
3453
}
3454

    
3455
/* mftb */
3456
GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB)
3457
{
3458
    gen_op_mfspr(ctx);
3459
}
3460

    
3461
/* mtcrf */
3462
GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC)
3463
{
3464
    uint32_t crm, crn;
3465

    
3466
    gen_op_load_gpr_T0(rS(ctx->opcode));
3467
    crm = CRM(ctx->opcode);
3468
    if (likely((ctx->opcode & 0x00100000) || (crm ^ (crm - 1)) == 0)) {
3469
        crn = ffs(crm);
3470
        gen_op_srli_T0(crn * 4);
3471
        gen_op_andi_T0(0xF);
3472
        gen_op_store_cro(7 - crn);
3473
    } else {
3474
        gen_op_store_cr(crm);
3475
    }
3476
}
3477

    
3478
/* mtmsr */
3479
#if defined(TARGET_PPC64)
3480
GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B)
3481
{
3482
#if defined(CONFIG_USER_ONLY)
3483
    GEN_EXCP_PRIVREG(ctx);
3484
#else
3485
    if (unlikely(!ctx->supervisor)) {
3486
        GEN_EXCP_PRIVREG(ctx);
3487
        return;
3488
    }
3489
    gen_op_load_gpr_T0(rS(ctx->opcode));
3490
    if (ctx->opcode & 0x00010000) {
3491
        /* Special form that does not need any synchronisation */
3492
        gen_op_update_riee();
3493
    } else {
3494
        /* XXX: we need to update nip before the store
3495
         *      if we enter power saving mode, we will exit the loop
3496
         *      directly from ppc_store_msr
3497
         */
3498
        gen_update_nip(ctx, ctx->nip);
3499
        gen_op_store_msr();
3500
        /* Must stop the translation as machine state (may have) changed */
3501
        /* Note that mtmsr is not always defined as context-synchronizing */
3502
        ctx->exception = POWERPC_EXCP_STOP;
3503
    }
3504
#endif
3505
}
3506
#endif
3507

    
3508
GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC)
3509
{
3510
#if defined(CONFIG_USER_ONLY)
3511
    GEN_EXCP_PRIVREG(ctx);
3512
#else
3513
    if (unlikely(!ctx->supervisor)) {
3514
        GEN_EXCP_PRIVREG(ctx);
3515
        return;
3516
    }
3517
    gen_op_load_gpr_T0(rS(ctx->opcode));
3518
    if (ctx->opcode & 0x00010000) {
3519
        /* Special form that does not need any synchronisation */
3520
        gen_op_update_riee();
3521
    } else {
3522
        /* XXX: we need to update nip before the store
3523
         *      if we enter power saving mode, we will exit the loop
3524
         *      directly from ppc_store_msr
3525
         */
3526
        gen_update_nip(ctx, ctx->nip);
3527
#if defined(TARGET_PPC64)
3528
        if (!ctx->sf_mode)
3529
            gen_op_store_msr_32();
3530
        else
3531
#endif
3532
            gen_op_store_msr();
3533
        /* Must stop the translation as machine state (may have) changed */
3534
        /* Note that mtmsrd is not always defined as context-synchronizing */
3535
        ctx->exception = POWERPC_EXCP_STOP;
3536
    }
3537
#endif
3538
}
3539

    
3540
/* mtspr */
3541
GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC)
3542
{
3543
    void (*write_cb)(void *opaque, int sprn);
3544
    uint32_t sprn = SPR(ctx->opcode);
3545

    
3546
#if !defined(CONFIG_USER_ONLY)
3547
#if defined(TARGET_PPC64H)
3548
    if (ctx->supervisor == 2)
3549
        write_cb = ctx->spr_cb[sprn].hea_write;
3550
    else
3551
#endif
3552
    if (ctx->supervisor)
3553
        write_cb = ctx->spr_cb[sprn].oea_write;
3554
    else
3555
#endif
3556
        write_cb = ctx->spr_cb[sprn].uea_write;
3557
    if (likely(write_cb != NULL)) {
3558
        if (likely(write_cb != SPR_NOACCESS)) {
3559
            gen_op_load_gpr_T0(rS(ctx->opcode));
3560
            (*write_cb)(ctx, sprn);
3561
        } else {
3562
            /* Privilege exception */
3563
            if (loglevel != 0) {
3564
                fprintf(logfile, "Trying to write privileged spr %d %03x\n",
3565
                        sprn, sprn);
3566
            }
3567
            printf("Trying to write privileged spr %d %03x\n", sprn, sprn);
3568
            GEN_EXCP_PRIVREG(ctx);
3569
        }
3570
    } else {
3571
        /* Not defined */
3572
        if (loglevel != 0) {
3573
            fprintf(logfile, "Trying to write invalid spr %d %03x\n",
3574
                    sprn, sprn);
3575
        }
3576
        printf("Trying to write invalid spr %d %03x\n", sprn, sprn);
3577
        GEN_EXCP(ctx, POWERPC_EXCP_PROGRAM,
3578
                 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_SPR);
3579
    }
3580
}
3581

    
3582
/***                         Cache management                              ***/
3583
/* For now, all those will be implemented as nop:
3584
 * this is valid, regarding the PowerPC specs...
3585
 * We just have to flush tb while invalidating instruction cache lines...
3586
 */
3587
/* dcbf */
3588
GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE)
3589
{
3590
    gen_addr_reg_index(ctx);
3591
    op_ldst(lbz);
3592
}
3593

    
3594
/* dcbi (Supervisor only) */
3595
GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE)
3596
{
3597
#if defined(CONFIG_USER_ONLY)
3598
    GEN_EXCP_PRIVOPC(ctx);
3599
#else
3600
    if (unlikely(!ctx->supervisor)) {
3601
        GEN_EXCP_PRIVOPC(ctx);
3602
        return;
3603
    }
3604
    gen_addr_reg_index(ctx);
3605
    /* XXX: specification says this should be treated as a store by the MMU */
3606
    //op_ldst(lbz);
3607
    op_ldst(stb);
3608
#endif
3609
}
3610

    
3611
/* dcdst */
3612
GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE)
3613
{
3614
    /* XXX: specification say this is treated as a load by the MMU */
3615
    gen_addr_reg_index(ctx);
3616
    op_ldst(lbz);
3617
}
3618

    
3619
/* dcbt */
3620
GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE)
3621
{
3622
    /* interpreted as no-op */
3623
    /* XXX: specification say this is treated as a load by the MMU
3624
     *      but does not generate any exception
3625
     */
3626
}
3627

    
3628
/* dcbtst */
3629
GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE)
3630
{
3631
    /* interpreted as no-op */
3632
    /* XXX: specification say this is treated as a load by the MMU
3633
     *      but does not generate any exception
3634
     */
3635
}
3636

    
3637
/* dcbz */
3638
#define op_dcbz(n) (*gen_op_dcbz[n][ctx->mem_idx])()
3639
#if defined(CONFIG_USER_ONLY)
3640
/* User-mode only */
3641
static GenOpFunc *gen_op_dcbz[4][4] = {
3642
    {
3643
        &gen_op_dcbz_l32_raw,
3644
        &gen_op_dcbz_l32_raw,
3645
#if defined(TARGET_PPC64)
3646
        &gen_op_dcbz_l32_64_raw,
3647
        &gen_op_dcbz_l32_64_raw,
3648
#endif
3649
    },
3650
    {
3651
        &gen_op_dcbz_l64_raw,
3652
        &gen_op_dcbz_l64_raw,
3653
#if defined(TARGET_PPC64)
3654
        &gen_op_dcbz_l64_64_raw,
3655
        &gen_op_dcbz_l64_64_raw,
3656
#endif
3657
    },
3658
    {
3659
        &gen_op_dcbz_l128_raw,
3660
        &gen_op_dcbz_l128_raw,
3661
#if defined(TARGET_PPC64)
3662
        &gen_op_dcbz_l128_64_raw,
3663
        &gen_op_dcbz_l128_64_raw,
3664
#endif
3665
    },
3666
    {
3667
        &gen_op_dcbz_raw,
3668
        &gen_op_dcbz_raw,
3669
#if defined(TARGET_PPC64)
3670
        &gen_op_dcbz_64_raw,
3671
        &gen_op_dcbz_64_raw,
3672
#endif
3673
    },
3674
};
3675
#else
3676
#if defined(TARGET_PPC64)
3677
/* Full system - 64 bits mode */
3678
static GenOpFunc *gen_op_dcbz[4][12] = {
3679
    {
3680
        &gen_op_dcbz_l32_user,
3681
        &gen_op_dcbz_l32_user,
3682
        &gen_op_dcbz_l32_64_user,
3683
        &gen_op_dcbz_l32_64_user,
3684
        &gen_op_dcbz_l32_kernel,
3685
        &gen_op_dcbz_l32_kernel,
3686
        &gen_op_dcbz_l32_64_kernel,
3687
        &gen_op_dcbz_l32_64_kernel,
3688
#if defined(TARGET_PPC64H)
3689
        &gen_op_dcbz_l32_hypv,
3690
        &gen_op_dcbz_l32_hypv,
3691
        &gen_op_dcbz_l32_64_hypv,
3692
        &gen_op_dcbz_l32_64_hypv,
3693
#endif
3694
    },
3695
    {
3696
        &gen_op_dcbz_l64_user,
3697
        &gen_op_dcbz_l64_user,
3698
        &gen_op_dcbz_l64_64_user,
3699
        &gen_op_dcbz_l64_64_user,
3700
        &gen_op_dcbz_l64_kernel,
3701
        &gen_op_dcbz_l64_kernel,
3702
        &gen_op_dcbz_l64_64_kernel,
3703
        &gen_op_dcbz_l64_64_kernel,
3704
#if defined(TARGET_PPC64H)
3705
        &gen_op_dcbz_l64_hypv,
3706
        &gen_op_dcbz_l64_hypv,
3707
        &gen_op_dcbz_l64_64_hypv,
3708
        &gen_op_dcbz_l64_64_hypv,
3709
#endif
3710
    },
3711
    {
3712
        &gen_op_dcbz_l128_user,
3713
        &gen_op_dcbz_l128_user,
3714
        &gen_op_dcbz_l128_64_user,
3715
        &gen_op_dcbz_l128_64_user,
3716
        &gen_op_dcbz_l128_kernel,
3717
        &gen_op_dcbz_l128_kernel,
3718
        &gen_op_dcbz_l128_64_kernel,
3719
        &gen_op_dcbz_l128_64_kernel,
3720
#if defined(TARGET_PPC64H)
3721
        &gen_op_dcbz_l128_hypv,
3722
        &gen_op_dcbz_l128_hypv,
3723
        &gen_op_dcbz_l128_64_hypv,
3724
        &gen_op_dcbz_l128_64_hypv,
3725
#endif
3726
    },
3727
    {
3728
        &gen_op_dcbz_user,
3729
        &gen_op_dcbz_user,
3730
        &gen_op_dcbz_64_user,
3731
        &gen_op_dcbz_64_user,
3732
        &gen_op_dcbz_kernel,
3733
        &gen_op_dcbz_kernel,
3734
        &gen_op_dcbz_64_kernel,
3735
        &gen_op_dcbz_64_kernel,
3736
#if defined(TARGET_PPC64H)
3737
        &gen_op_dcbz_hypv,
3738
        &gen_op_dcbz_hypv,
3739
        &gen_op_dcbz_64_hypv,
3740
        &gen_op_dcbz_64_hypv,
3741
#endif
3742
    },
3743
};
3744
#else
3745
/* Full system - 32 bits mode */
3746
static GenOpFunc *gen_op_dcbz[4][4] = {
3747
    {
3748
        &gen_op_dcbz_l32_user,
3749
        &gen_op_dcbz_l32_user,
3750
        &gen_op_dcbz_l32_kernel,
3751
        &gen_op_dcbz_l32_kernel,
3752
    },
3753
    {
3754
        &gen_op_dcbz_l64_user,
3755
        &gen_op_dcbz_l64_user,
3756
        &gen_op_dcbz_l64_kernel,
3757
        &gen_op_dcbz_l64_kernel,
3758
    },
3759
    {
3760
        &gen_op_dcbz_l128_user,
3761
        &gen_op_dcbz_l128_user,
3762
        &gen_op_dcbz_l128_kernel,
3763
        &gen_op_dcbz_l128_kernel,
3764
    },
3765
    {
3766
        &gen_op_dcbz_user,
3767
        &gen_op_dcbz_user,
3768
        &gen_op_dcbz_kernel,
3769
        &gen_op_dcbz_kernel,
3770
    },
3771
};
3772
#endif
3773
#endif
3774

    
3775
static always_inline void handler_dcbz (DisasContext *ctx,
3776
                                        int dcache_line_size)
3777
{
3778
    int n;
3779

    
3780
    switch (dcache_line_size) {
3781
    case 32:
3782
        n = 0;
3783
        break;
3784
    case 64:
3785
        n = 1;
3786
        break;
3787
    case 128:
3788
        n = 2;
3789
        break;
3790
    default:
3791
        n = 3;
3792
        break;
3793
    }
3794
    op_dcbz(n);
3795
}
3796

    
3797
GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ)
3798
{
3799
    gen_addr_reg_index(ctx);
3800
    handler_dcbz(ctx, ctx->dcache_line_size);
3801
    gen_op_check_reservation();
3802
}
3803

    
3804
GEN_HANDLER(dcbz_970, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT)
3805
{
3806
    gen_addr_reg_index(ctx);
3807
    if (ctx->opcode & 0x00200000)
3808
        handler_dcbz(ctx, ctx->dcache_line_size);
3809
    else
3810
        handler_dcbz(ctx, -1);
3811
    gen_op_check_reservation();
3812
}
3813

    
3814
/* icbi */
3815
#define op_icbi() (*gen_op_icbi[ctx->mem_idx])()
3816
#if defined(CONFIG_USER_ONLY)
3817
/* User-mode only */
3818
static GenOpFunc *gen_op_icbi[] = {
3819
    &gen_op_icbi_raw,
3820
    &gen_op_icbi_raw,
3821
#if defined(TARGET_PPC64)
3822
    &gen_op_icbi_64_raw,
3823
    &gen_op_icbi_64_raw,
3824
#endif
3825
};
3826
#else
3827
/* Full system - 64 bits mode */
3828
#if defined(TARGET_PPC64)
3829
static GenOpFunc *gen_op_icbi[] = {
3830
    &gen_op_icbi_user,
3831
    &gen_op_icbi_user,
3832
    &gen_op_icbi_64_user,
3833
    &gen_op_icbi_64_user,
3834
    &gen_op_icbi_kernel,
3835
    &gen_op_icbi_kernel,
3836
    &gen_op_icbi_64_kernel,
3837
    &gen_op_icbi_64_kernel,
3838
#if defined(TARGET_PPC64H)
3839
    &gen_op_icbi_hypv,
3840
    &gen_op_icbi_hypv,
3841
    &gen_op_icbi_64_hypv,
3842
    &gen_op_icbi_64_hypv,
3843
#endif
3844
};
3845
#else
3846
/* Full system - 32 bits mode */
3847
static GenOpFunc *gen_op_icbi[] = {
3848
    &gen_op_icbi_user,
3849
    &gen_op_icbi_user,
3850
    &gen_op_icbi_kernel,
3851
    &gen_op_icbi_kernel,
3852
};
3853
#endif
3854
#endif
3855

    
3856
GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE)
3857
{
3858
    /* NIP cannot be restored if the memory exception comes from an helper */
3859
    gen_update_nip(ctx, ctx->nip - 4);
3860
    gen_addr_reg_index(ctx);
3861
    op_icbi();
3862
}
3863

    
3864
/* Optional: */
3865
/* dcba */
3866
GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA)
3867
{
3868
    /* interpreted as no-op */
3869
    /* XXX: specification say this is treated as a store by the MMU
3870
     *      but does not generate any exception
3871
     */
3872
}
3873

    
3874
/***                    Segment register manipulation                      ***/
3875
/* Supervisor only: */
3876
/* mfsr */
3877
GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT)
3878
{
3879
#if defined(CONFIG_USER_ONLY)
3880
    GEN_EXCP_PRIVREG(ctx);
3881
#else
3882
    if (unlikely(!ctx->supervisor)) {
3883
        GEN_EXCP_PRIVREG(ctx);
3884
        return;
3885
    }
3886
    gen_op_set_T1(SR(ctx->opcode));
3887
    gen_op_load_sr();
3888
    gen_op_store_T0_gpr(rD(ctx->opcode));
3889
#endif
3890
}
3891

    
3892
/* mfsrin */
3893
GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT)
3894
{
3895
#if defined(CONFIG_USER_ONLY)
3896
    GEN_EXCP_PRIVREG(ctx);
3897
#else
3898
    if (unlikely(!ctx->supervisor)) {
3899
        GEN_EXCP_PRIVREG(ctx);
3900
        return;
3901
    }
3902
    gen_op_load_gpr_T1(rB(ctx->opcode));
3903
    gen_op_srli_T1(28);
3904
    gen_op_load_sr();
3905
    gen_op_store_T0_gpr(rD(ctx->opcode));
3906
#endif
3907
}
3908

    
3909
/* mtsr */
3910
GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT)
3911
{
3912
#if defined(CONFIG_USER_ONLY)
3913
    GEN_EXCP_PRIVREG(ctx);
3914
#else
3915
    if (unlikely(!ctx->supervisor)) {
3916
        GEN_EXCP_PRIVREG(ctx);
3917
        return;
3918
    }
3919
    gen_op_load_gpr_T0(rS(ctx->opcode));
3920
    gen_op_set_T1(SR(ctx->opcode));
3921
    gen_op_store_sr();
3922
#endif
3923
}
3924

    
3925
/* mtsrin */
3926
GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT)
3927
{
3928
#if defined(CONFIG_USER_ONLY)
3929
    GEN_EXCP_PRIVREG(ctx);
3930
#else
3931
    if (unlikely(!ctx->supervisor)) {
3932
        GEN_EXCP_PRIVREG(ctx);
3933
        return;
3934
    }
3935
    gen_op_load_gpr_T0(rS(ctx->opcode));
3936
    gen_op_load_gpr_T1(rB(ctx->opcode));
3937
    gen_op_srli_T1(28);
3938
    gen_op_store_sr();
3939
#endif
3940
}
3941

    
3942
#if defined(TARGET_PPC64)
3943
/* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
3944
/* mfsr */
3945
GEN_HANDLER(mfsr_64b, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B)
3946
{
3947
#if defined(CONFIG_USER_ONLY)
3948
    GEN_EXCP_PRIVREG(ctx);
3949
#else
3950
    if (unlikely(!ctx->supervisor)) {
3951
        GEN_EXCP_PRIVREG(ctx);
3952
        return;
3953
    }
3954
    gen_op_set_T1(SR(ctx->opcode));
3955
    gen_op_load_slb();
3956
    gen_op_store_T0_gpr(rD(ctx->opcode));
3957
#endif
3958
}
3959

    
3960
/* mfsrin */
3961
GEN_HANDLER(mfsrin_64b, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT_64B)
3962
{
3963
#if defined(CONFIG_USER_ONLY)
3964
    GEN_EXCP_PRIVREG(ctx);
3965
#else
3966
    if (unlikely(!ctx->supervisor)) {
3967
        GEN_EXCP_PRIVREG(ctx);
3968
        return;
3969
    }
3970
    gen_op_load_gpr_T1(rB(ctx->opcode));
3971
    gen_op_srli_T1(28);
3972
    gen_op_load_slb();
3973
    gen_op_store_T0_gpr(rD(ctx->opcode));
3974
#endif
3975
}
3976

    
3977
/* mtsr */
3978
GEN_HANDLER(mtsr_64b, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B)
3979
{
3980
#if defined(CONFIG_USER_ONLY)
3981
    GEN_EXCP_PRIVREG(ctx);
3982
#else
3983
    if (unlikely(!ctx->supervisor)) {
3984
        GEN_EXCP_PRIVREG(ctx);
3985
        return;
3986
    }
3987
    gen_op_load_gpr_T0(rS(ctx->opcode));
3988
    gen_op_set_T1(SR(ctx->opcode));
3989
    gen_op_store_slb();
3990
#endif
3991
}
3992

    
3993
/* mtsrin */
3994
GEN_HANDLER(mtsrin_64b, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT_64B)
3995
{
3996
#if defined(CONFIG_USER_ONLY)
3997
    GEN_EXCP_PRIVREG(ctx);
3998
#else
3999
    if (unlikely(!ctx->supervisor)) {
4000
        GEN_EXCP_PRIVREG(ctx);
4001
        return;
4002
    }
4003
    gen_op_load_gpr_T0(rS(ctx->opcode));
4004
    gen_op_load_gpr_T1(rB(ctx->opcode));
4005
    gen_op_srli_T1(28);
4006
    gen_op_store_slb();
4007
#endif
4008
}
4009
#endif /* defined(TARGET_PPC64) */
4010

    
4011
/***                      Lookaside buffer management                      ***/
4012
/* Optional & supervisor only: */
4013
/* tlbia */
4014
GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA)
4015
{
4016
#if defined(CONFIG_USER_ONLY)
4017
    GEN_EXCP_PRIVOPC(ctx);
4018
#else
4019
    if (unlikely(!ctx->supervisor)) {
4020
        if (loglevel != 0)
4021
            fprintf(logfile, "%s: ! supervisor\n", __func__);
4022
        GEN_EXCP_PRIVOPC(ctx);
4023
        return;
4024
    }
4025
    gen_op_tlbia();
4026
#endif
4027
}
4028

    
4029
/* tlbie */
4030
GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE)
4031
{
4032
#if defined(CONFIG_USER_ONLY)
4033
    GEN_EXCP_PRIVOPC(ctx);
4034
#else
4035
    if (unlikely(!ctx->supervisor)) {
4036
        GEN_EXCP_PRIVOPC(ctx);
4037
        return;
4038
    }
4039
    gen_op_load_gpr_T0(rB(ctx->opcode));
4040
#if defined(TARGET_PPC64)
4041
    if (ctx->sf_mode)
4042
        gen_op_tlbie_64();
4043
    else
4044
#endif
4045
        gen_op_tlbie();
4046
#endif
4047
}
4048

    
4049
/* tlbsync */
4050
GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC)
4051
{
4052
#if defined(CONFIG_USER_ONLY)
4053
    GEN_EXCP_PRIVOPC(ctx);
4054
#else
4055
    if (unlikely(!ctx->supervisor)) {
4056
        GEN_EXCP_PRIVOPC(ctx);
4057
        return;
4058
    }
4059
    /* This has no effect: it should ensure that all previous
4060
     * tlbie have completed
4061
     */
4062
    GEN_STOP(ctx);
4063
#endif
4064
}
4065

    
4066
#if defined(TARGET_PPC64)
4067
/* slbia */
4068
GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI)
4069
{
4070
#if defined(CONFIG_USER_ONLY)
4071
    GEN_EXCP_PRIVOPC(ctx);
4072
#else
4073
    if (unlikely(!ctx->supervisor)) {
4074
        if (loglevel != 0)
4075
            fprintf(logfile, "%s: ! supervisor\n", __func__);
4076
        GEN_EXCP_PRIVOPC(ctx);
4077
        return;
4078
    }
4079
    gen_op_slbia();
4080
#endif
4081
}
4082

    
4083
/* slbie */
4084
GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI)
4085
{
4086
#if defined(CONFIG_USER_ONLY)
4087
    GEN_EXCP_PRIVOPC(ctx);
4088
#else
4089
    if (unlikely(!ctx->supervisor)) {
4090
        GEN_EXCP_PRIVOPC(ctx);
4091
        return;
4092
    }
4093
    gen_op_load_gpr_T0(rB(ctx->opcode));
4094
    gen_op_slbie();
4095
#endif
4096
}
4097
#endif
4098

    
4099
/***                              External control                         ***/
4100
/* Optional: */
4101
#define op_eciwx() (*gen_op_eciwx[ctx->mem_idx])()
4102
#define op_ecowx() (*gen_op_ecowx[ctx->mem_idx])()
4103
#if defined(CONFIG_USER_ONLY)
4104
/* User-mode only */
4105
static GenOpFunc *gen_op_eciwx[] = {
4106
    &gen_op_eciwx_raw,
4107
    &gen_op_eciwx_le_raw,
4108
#if defined(TARGET_PPC64)
4109
    &gen_op_eciwx_64_raw,
4110
    &gen_op_eciwx_le_64_raw,
4111
#endif
4112
};
4113
static GenOpFunc *gen_op_ecowx[] = {
4114
    &gen_op_ecowx_raw,
4115
    &gen_op_ecowx_le_raw,
4116
#if defined(TARGET_PPC64)
4117
    &gen_op_ecowx_64_raw,
4118
    &gen_op_ecowx_le_64_raw,
4119
#endif
4120
};
4121
#else
4122
#if defined(TARGET_PPC64)
4123
/* Full system - 64 bits mode */
4124
static GenOpFunc *gen_op_eciwx[] = {
4125
    &gen_op_eciwx_user,
4126
    &gen_op_eciwx_le_user,
4127
    &gen_op_eciwx_64_user,
4128
    &gen_op_eciwx_le_64_user,
4129
    &gen_op_eciwx_kernel,
4130
    &gen_op_eciwx_le_kernel,
4131
    &gen_op_eciwx_64_kernel,
4132
    &gen_op_eciwx_le_64_kernel,
4133
#if defined(TARGET_PPC64H)
4134
    &gen_op_eciwx_hypv,
4135
    &gen_op_eciwx_le_hypv,
4136
    &gen_op_eciwx_64_hypv,
4137
    &gen_op_eciwx_le_64_hypv,
4138
#endif
4139
};
4140
static GenOpFunc *gen_op_ecowx[] = {
4141
    &gen_op_ecowx_user,
4142
    &gen_op_ecowx_le_user,
4143
    &gen_op_ecowx_64_user,
4144
    &gen_op_ecowx_le_64_user,
4145
    &gen_op_ecowx_kernel,
4146
    &gen_op_ecowx_le_kernel,
4147
    &gen_op_ecowx_64_kernel,
4148
    &gen_op_ecowx_le_64_kernel,
4149
#if defined(TARGET_PPC64H)
4150
    &gen_op_ecowx_hypv,
4151
    &gen_op_ecowx_le_hypv,
4152
    &gen_op_ecowx_64_hypv,
4153
    &gen_op_ecowx_le_64_hypv,
4154
#endif
4155
};
4156
#else
4157
/* Full system - 32 bits mode */
4158
static GenOpFunc *gen_op_eciwx[] = {
4159
    &gen_op_eciwx_user,
4160
    &gen_op_eciwx_le_user,
4161
    &gen_op_eciwx_kernel,
4162
    &gen_op_eciwx_le_kernel,
4163
};
4164
static GenOpFunc *gen_op_ecowx[] = {
4165
    &gen_op_ecowx_user,
4166
    &gen_op_ecowx_le_user,
4167
    &gen_op_ecowx_kernel,
4168
    &gen_op_ecowx_le_kernel,
4169
};
4170
#endif
4171
#endif
4172

    
4173
/* eciwx */
4174
GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN)
4175
{
4176
    /* Should check EAR[E] & alignment ! */
4177
    gen_addr_reg_index(ctx);
4178
    op_eciwx();
4179
    gen_op_store_T0_gpr(rD(ctx->opcode));
4180
}
4181

    
4182
/* ecowx */
4183
GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN)
4184
{
4185
    /* Should check EAR[E] & alignment ! */
4186
    gen_addr_reg_index(ctx);
4187
    gen_op_load_gpr_T1(rS(ctx->opcode));
4188
    op_ecowx();
4189
}
4190

    
4191
/* PowerPC 601 specific instructions */
4192
/* abs - abs. */
4193
GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR)
4194
{
4195
    gen_op_load_gpr_T0(rA(ctx->opcode));
4196
    gen_op_POWER_abs();
4197
    gen_op_store_T0_gpr(rD(ctx->opcode));
4198
    if (unlikely(Rc(ctx->opcode) != 0))
4199
        gen_set_Rc0(ctx);
4200
}
4201

    
4202
/* abso - abso. */
4203
GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR)
4204
{
4205
    gen_op_load_gpr_T0(rA(ctx->opcode));
4206
    gen_op_POWER_abso();
4207
    gen_op_store_T0_gpr(rD(ctx->opcode));
4208
    if (unlikely(Rc(ctx->opcode) != 0))
4209
        gen_set_Rc0(ctx);
4210
}
4211

    
4212
/* clcs */
4213
GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR)
4214
{
4215
    gen_op_load_gpr_T0(rA(ctx->opcode));
4216
    gen_op_POWER_clcs();
4217
    gen_op_store_T0_gpr(rD(ctx->opcode));
4218
}
4219

    
4220
/* div - div. */
4221
GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR)
4222
{
4223
    gen_op_load_gpr_T0(rA(ctx->opcode));
4224
    gen_op_load_gpr_T1(rB(ctx->opcode));
4225
    gen_op_POWER_div();
4226
    gen_op_store_T0_gpr(rD(ctx->opcode));
4227
    if (unlikely(Rc(ctx->opcode) != 0))
4228
        gen_set_Rc0(ctx);
4229
}
4230

    
4231
/* divo - divo. */
4232
GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR)
4233
{
4234
    gen_op_load_gpr_T0(rA(ctx->opcode));
4235
    gen_op_load_gpr_T1(rB(ctx->opcode));
4236
    gen_op_POWER_divo();
4237
    gen_op_store_T0_gpr(rD(ctx->opcode));
4238
    if (unlikely(Rc(ctx->opcode) != 0))
4239
        gen_set_Rc0(ctx);
4240
}
4241

    
4242
/* divs - divs. */
4243
GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR)
4244
{
4245
    gen_op_load_gpr_T0(rA(ctx->opcode));
4246
    gen_op_load_gpr_T1(rB(ctx->opcode));
4247
    gen_op_POWER_divs();
4248
    gen_op_store_T0_gpr(rD(ctx->opcode));
4249
    if (unlikely(Rc(ctx->opcode) != 0))
4250
        gen_set_Rc0(ctx);
4251
}
4252

    
4253
/* divso - divso. */
4254
GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR)
4255
{
4256
    gen_op_load_gpr_T0(rA(ctx->opcode));
4257
    gen_op_load_gpr_T1(rB(ctx->opcode));
4258
    gen_op_POWER_divso();
4259
    gen_op_store_T0_gpr(rD(ctx->opcode));
4260
    if (unlikely(Rc(ctx->opcode) != 0))
4261
        gen_set_Rc0(ctx);
4262
}
4263

    
4264
/* doz - doz. */
4265
GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR)
4266
{
4267
    gen_op_load_gpr_T0(rA(ctx->opcode));
4268
    gen_op_load_gpr_T1(rB(ctx->opcode));
4269
    gen_op_POWER_doz();
4270
    gen_op_store_T0_gpr(rD(ctx->opcode));
4271
    if (unlikely(Rc(ctx->opcode) != 0))
4272
        gen_set_Rc0(ctx);
4273
}
4274

    
4275
/* dozo - dozo. */
4276
GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR)
4277
{
4278
    gen_op_load_gpr_T0(rA(ctx->opcode));
4279
    gen_op_load_gpr_T1(rB(ctx->opcode));
4280
    gen_op_POWER_dozo();
4281
    gen_op_store_T0_gpr(rD(ctx->opcode));
4282
    if (unlikely(Rc(ctx->opcode) != 0))
4283
        gen_set_Rc0(ctx);
4284
}
4285

    
4286
/* dozi */
4287
GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR)
4288
{
4289
    gen_op_load_gpr_T0(rA(ctx->opcode));
4290
    gen_op_set_T1(SIMM(ctx->opcode));
4291
    gen_op_POWER_doz();
4292
    gen_op_store_T0_gpr(rD(ctx->opcode));
4293
}
4294

    
4295
/* As lscbx load from memory byte after byte, it's always endian safe */
4296
#define op_POWER_lscbx(start, ra, rb)                                         \
4297
(*gen_op_POWER_lscbx[ctx->mem_idx])(start, ra, rb)
4298
#if defined(CONFIG_USER_ONLY)
4299
static GenOpFunc3 *gen_op_POWER_lscbx[] = {
4300
    &gen_op_POWER_lscbx_raw,
4301
    &gen_op_POWER_lscbx_raw,
4302
};
4303
#else
4304
static GenOpFunc3 *gen_op_POWER_lscbx[] = {
4305
    &gen_op_POWER_lscbx_user,
4306
    &gen_op_POWER_lscbx_user,
4307
    &gen_op_POWER_lscbx_kernel,
4308
    &gen_op_POWER_lscbx_kernel,
4309
};
4310
#endif
4311

    
4312
/* lscbx - lscbx. */
4313
GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR)
4314
{
4315
    int ra = rA(ctx->opcode);
4316
    int rb = rB(ctx->opcode);
4317

    
4318
    gen_addr_reg_index(ctx);
4319
    if (ra == 0) {
4320
        ra = rb;
4321
    }
4322
    /* NIP cannot be restored if the memory exception comes from an helper */
4323
    gen_update_nip(ctx, ctx->nip - 4);
4324
    gen_op_load_xer_bc();
4325
    gen_op_load_xer_cmp();
4326
    op_POWER_lscbx(rD(ctx->opcode), ra, rb);
4327
    gen_op_store_xer_bc();
4328
    if (unlikely(Rc(ctx->opcode) != 0))
4329
        gen_set_Rc0(ctx);
4330
}
4331

    
4332
/* maskg - maskg. */
4333
GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR)
4334
{
4335
    gen_op_load_gpr_T0(rS(ctx->opcode));
4336
    gen_op_load_gpr_T1(rB(ctx->opcode));
4337
    gen_op_POWER_maskg();
4338
    gen_op_store_T0_gpr(rA(ctx->opcode));
4339
    if (unlikely(Rc(ctx->opcode) != 0))
4340
        gen_set_Rc0(ctx);
4341
}
4342

    
4343
/* maskir - maskir. */
4344
GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR)
4345
{
4346
    gen_op_load_gpr_T0(rA(ctx->opcode));
4347
    gen_op_load_gpr_T1(rS(ctx->opcode));
4348
    gen_op_load_gpr_T2(rB(ctx->opcode));
4349
    gen_op_POWER_maskir();
4350
    gen_op_store_T0_gpr(rA(ctx->opcode));
4351
    if (unlikely(Rc(ctx->opcode) != 0))
4352
        gen_set_Rc0(ctx);
4353
}
4354

    
4355
/* mul - mul. */
4356
GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR)
4357
{
4358
    gen_op_load_gpr_T0(rA(ctx->opcode));
4359
    gen_op_load_gpr_T1(rB(ctx->opcode));
4360
    gen_op_POWER_mul();
4361
    gen_op_store_T0_gpr(rD(ctx->opcode));
4362
    if (unlikely(Rc(ctx->opcode) != 0))
4363
        gen_set_Rc0(ctx);
4364
}
4365

    
4366
/* mulo - mulo. */
4367
GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR)
4368
{
4369
    gen_op_load_gpr_T0(rA(ctx->opcode));
4370
    gen_op_load_gpr_T1(rB(ctx->opcode));
4371
    gen_op_POWER_mulo();
4372
    gen_op_store_T0_gpr(rD(ctx->opcode));
4373
    if (unlikely(Rc(ctx->opcode) != 0))
4374
        gen_set_Rc0(ctx);
4375
}
4376

    
4377
/* nabs - nabs. */
4378
GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR)
4379
{
4380
    gen_op_load_gpr_T0(rA(ctx->opcode));
4381
    gen_op_POWER_nabs();
4382
    gen_op_store_T0_gpr(rD(ctx->opcode));
4383
    if (unlikely(Rc(ctx->opcode) != 0))
4384
        gen_set_Rc0(ctx);
4385
}
4386

    
4387
/* nabso - nabso. */
4388
GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR)
4389
{
4390
    gen_op_load_gpr_T0(rA(ctx->opcode));
4391
    gen_op_POWER_nabso();
4392
    gen_op_store_T0_gpr(rD(ctx->opcode));
4393
    if (unlikely(Rc(ctx->opcode) != 0))
4394
        gen_set_Rc0(ctx);
4395
}
4396

    
4397
/* rlmi - rlmi. */
4398
GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR)
4399
{
4400
    uint32_t mb, me;
4401

    
4402
    mb = MB(ctx->opcode);
4403
    me = ME(ctx->opcode);
4404
    gen_op_load_gpr_T0(rS(ctx->opcode));
4405
    gen_op_load_gpr_T1(rA(ctx->opcode));
4406
    gen_op_load_gpr_T2(rB(ctx->opcode));
4407
    gen_op_POWER_rlmi(MASK(mb, me), ~MASK(mb, me));
4408
    gen_op_store_T0_gpr(rA(ctx->opcode));
4409
    if (unlikely(Rc(ctx->opcode) != 0))
4410
        gen_set_Rc0(ctx);
4411
}
4412

    
4413
/* rrib - rrib. */
4414
GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR)
4415
{
4416
    gen_op_load_gpr_T0(rS(ctx->opcode));
4417
    gen_op_load_gpr_T1(rA(ctx->opcode));
4418
    gen_op_load_gpr_T2(rB(ctx->opcode));
4419
    gen_op_POWER_rrib();
4420
    gen_op_store_T0_gpr(rA(ctx->opcode));
4421
    if (unlikely(Rc(ctx->opcode) != 0))
4422
        gen_set_Rc0(ctx);
4423
}
4424

    
4425
/* sle - sle. */
4426
GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR)
4427
{
4428
    gen_op_load_gpr_T0(rS(ctx->opcode));
4429
    gen_op_load_gpr_T1(rB(ctx->opcode));
4430
    gen_op_POWER_sle();
4431
    gen_op_store_T0_gpr(rA(ctx->opcode));
4432
    if (unlikely(Rc(ctx->opcode) != 0))
4433
        gen_set_Rc0(ctx);
4434
}
4435

    
4436
/* sleq - sleq. */
4437
GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR)
4438
{
4439
    gen_op_load_gpr_T0(rS(ctx->opcode));
4440
    gen_op_load_gpr_T1(rB(ctx->opcode));
4441
    gen_op_POWER_sleq();
4442
    gen_op_store_T0_gpr(rA(ctx->opcode));
4443
    if (unlikely(Rc(ctx->opcode) != 0))
4444
        gen_set_Rc0(ctx);
4445
}
4446

    
4447
/* sliq - sliq. */
4448
GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR)
4449
{
4450
    gen_op_load_gpr_T0(rS(ctx->opcode));
4451
    gen_op_set_T1(SH(ctx->opcode));
4452
    gen_op_POWER_sle();
4453
    gen_op_store_T0_gpr(rA(ctx->opcode));
4454
    if (unlikely(Rc(ctx->opcode) != 0))
4455
        gen_set_Rc0(ctx);
4456
}
4457

    
4458
/* slliq - slliq. */
4459
GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR)
4460
{
4461
    gen_op_load_gpr_T0(rS(ctx->opcode));
4462
    gen_op_set_T1(SH(ctx->opcode));
4463
    gen_op_POWER_sleq();
4464
    gen_op_store_T0_gpr(rA(ctx->opcode));
4465
    if (unlikely(Rc(ctx->opcode) != 0))
4466
        gen_set_Rc0(ctx);
4467
}
4468

    
4469
/* sllq - sllq. */
4470
GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR)
4471
{
4472
    gen_op_load_gpr_T0(rS(ctx->opcode));
4473
    gen_op_load_gpr_T1(rB(ctx->opcode));
4474
    gen_op_POWER_sllq();
4475
    gen_op_store_T0_gpr(rA(ctx->opcode));
4476
    if (unlikely(Rc(ctx->opcode) != 0))
4477
        gen_set_Rc0(ctx);
4478
}
4479

    
4480
/* slq - slq. */
4481
GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR)
4482
{
4483
    gen_op_load_gpr_T0(rS(ctx->opcode));
4484
    gen_op_load_gpr_T1(rB(ctx->opcode));
4485
    gen_op_POWER_slq();
4486
    gen_op_store_T0_gpr(rA(ctx->opcode));
4487
    if (unlikely(Rc(ctx->opcode) != 0))
4488
        gen_set_Rc0(ctx);
4489
}
4490

    
4491
/* sraiq - sraiq. */
4492
GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR)
4493
{
4494
    gen_op_load_gpr_T0(rS(ctx->opcode));
4495
    gen_op_set_T1(SH(ctx->opcode));
4496
    gen_op_POWER_sraq();
4497
    gen_op_store_T0_gpr(rA(ctx->opcode));
4498
    if (unlikely(Rc(ctx->opcode) != 0))
4499
        gen_set_Rc0(ctx);
4500
}
4501

    
4502
/* sraq - sraq. */
4503
GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR)
4504
{
4505
    gen_op_load_gpr_T0(rS(ctx->opcode));
4506
    gen_op_load_gpr_T1(rB(ctx->opcode));
4507
    gen_op_POWER_sraq();
4508
    gen_op_store_T0_gpr(rA(ctx->opcode));
4509
    if (unlikely(Rc(ctx->opcode) != 0))
4510
        gen_set_Rc0(ctx);
4511
}
4512

    
4513
/* sre - sre. */
4514
GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR)
4515
{
4516
    gen_op_load_gpr_T0(rS(ctx->opcode));
4517
    gen_op_load_gpr_T1(rB(ctx->opcode));
4518
    gen_op_POWER_sre();
4519
    gen_op_store_T0_gpr(rA(ctx->opcode));
4520
    if (unlikely(Rc(ctx->opcode) != 0))
4521
        gen_set_Rc0(ctx);
4522
}
4523

    
4524
/* srea - srea. */
4525
GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR)
4526
{
4527
    gen_op_load_gpr_T0(rS(ctx->opcode));
4528
    gen_op_load_gpr_T1(rB(ctx->opcode));
4529
    gen_op_POWER_srea();
4530
    gen_op_store_T0_gpr(rA(ctx->opcode));
4531
    if (unlikely(Rc(ctx->opcode) != 0))
4532
        gen_set_Rc0(ctx);
4533
}
4534

    
4535
/* sreq */
4536
GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR)
4537
{
4538
    gen_op_load_gpr_T0(rS(ctx->opcode));
4539
    gen_op_load_gpr_T1(rB(ctx->opcode));
4540
    gen_op_POWER_sreq();
4541
    gen_op_store_T0_gpr(rA(ctx->opcode));
4542
    if (unlikely(Rc(ctx->opcode) != 0))
4543
        gen_set_Rc0(ctx);
4544
}
4545

    
4546
/* sriq */
4547
GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR)
4548
{
4549
    gen_op_load_gpr_T0(rS(ctx->opcode));
4550
    gen_op_set_T1(SH(ctx->opcode));
4551
    gen_op_POWER_srq();
4552
    gen_op_store_T0_gpr(rA(ctx->opcode));
4553
    if (unlikely(Rc(ctx->opcode) != 0))
4554
        gen_set_Rc0(ctx);
4555
}
4556

    
4557
/* srliq */
4558
GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR)
4559
{
4560
    gen_op_load_gpr_T0(rS(ctx->opcode));
4561
    gen_op_load_gpr_T1(rB(ctx->opcode));
4562
    gen_op_set_T1(SH(ctx->opcode));
4563
    gen_op_POWER_srlq();
4564
    gen_op_store_T0_gpr(rA(ctx->opcode));
4565
    if (unlikely(Rc(ctx->opcode) != 0))
4566
        gen_set_Rc0(ctx);
4567
}
4568

    
4569
/* srlq */
4570
GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR)
4571
{
4572
    gen_op_load_gpr_T0(rS(ctx->opcode));
4573
    gen_op_load_gpr_T1(rB(ctx->opcode));
4574
    gen_op_POWER_srlq();
4575
    gen_op_store_T0_gpr(rA(ctx->opcode));
4576
    if (unlikely(Rc(ctx->opcode) != 0))
4577
        gen_set_Rc0(ctx);
4578
}
4579

    
4580
/* srq */
4581
GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR)
4582
{
4583
    gen_op_load_gpr_T0(rS(ctx->opcode));
4584
    gen_op_load_gpr_T1(rB(ctx->opcode));
4585
    gen_op_POWER_srq();
4586
    gen_op_store_T0_gpr(rA(ctx->opcode));
4587
    if (unlikely(Rc(ctx->opcode) != 0))
4588
        gen_set_Rc0(ctx);
4589
}
4590

    
4591
/* PowerPC 602 specific instructions */
4592
/* dsa  */
4593
GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC)
4594
{
4595
    /* XXX: TODO */
4596
    GEN_EXCP_INVAL(ctx);
4597
}
4598

    
4599
/* esa */
4600
GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC)
4601
{
4602
    /* XXX: TODO */
4603
    GEN_EXCP_INVAL(ctx);
4604
}
4605

    
4606
/* mfrom */
4607
GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC)
4608
{
4609
#if defined(CONFIG_USER_ONLY)
4610
    GEN_EXCP_PRIVOPC(ctx);
4611
#else
4612
    if (unlikely(!ctx->supervisor)) {
4613
        GEN_EXCP_PRIVOPC(ctx);
4614
        return;
4615
    }
4616
    gen_op_load_gpr_T0(rA(ctx->opcode));
4617
    gen_op_602_mfrom();
4618
    gen_op_store_T0_gpr(rD(ctx->opcode));
4619
#endif
4620
}
4621

    
4622
/* 602 - 603 - G2 TLB management */
4623
/* tlbld */
4624
GEN_HANDLER(tlbld_6xx, 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB)
4625
{
4626
#if defined(CONFIG_USER_ONLY)
4627
    GEN_EXCP_PRIVOPC(ctx);
4628
#else
4629
    if (unlikely(!ctx->supervisor)) {
4630
        GEN_EXCP_PRIVOPC(ctx);
4631
        return;
4632
    }
4633
    gen_op_load_gpr_T0(rB(ctx->opcode));
4634
    gen_op_6xx_tlbld();
4635
#endif
4636
}
4637

    
4638
/* tlbli */
4639
GEN_HANDLER(tlbli_6xx, 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB)
4640
{
4641
#if defined(CONFIG_USER_ONLY)
4642
    GEN_EXCP_PRIVOPC(ctx);
4643
#else
4644
    if (unlikely(!ctx->supervisor)) {
4645
        GEN_EXCP_PRIVOPC(ctx);
4646
        return;
4647
    }
4648
    gen_op_load_gpr_T0(rB(ctx->opcode));
4649
    gen_op_6xx_tlbli();
4650
#endif
4651
}
4652

    
4653
/* 74xx TLB management */
4654
/* tlbld */
4655
GEN_HANDLER(tlbld_74xx, 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB)
4656
{
4657
#if defined(CONFIG_USER_ONLY)
4658
    GEN_EXCP_PRIVOPC(ctx);
4659
#else
4660
    if (unlikely(!ctx->supervisor)) {
4661
        GEN_EXCP_PRIVOPC(ctx);
4662
        return;
4663
    }
4664
    gen_op_load_gpr_T0(rB(ctx->opcode));
4665
    gen_op_74xx_tlbld();
4666
#endif
4667
}
4668

    
4669
/* tlbli */
4670
GEN_HANDLER(tlbli_74xx, 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB)
4671
{
4672
#if defined(CONFIG_USER_ONLY)
4673
    GEN_EXCP_PRIVOPC(ctx);
4674
#else
4675
    if (unlikely(!ctx->supervisor)) {
4676
        GEN_EXCP_PRIVOPC(ctx);
4677
        return;
4678
    }
4679
    gen_op_load_gpr_T0(rB(ctx->opcode));
4680
    gen_op_74xx_tlbli();
4681
#endif
4682
}
4683

    
4684
/* POWER instructions not in PowerPC 601 */
4685
/* clf */
4686
GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER)
4687
{
4688
    /* Cache line flush: implemented as no-op */
4689
}
4690

    
4691
/* cli */
4692
GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER)
4693
{
4694
    /* Cache line invalidate: privileged and treated as no-op */
4695
#if defined(CONFIG_USER_ONLY)
4696
    GEN_EXCP_PRIVOPC(ctx);
4697
#else
4698
    if (unlikely(!ctx->supervisor)) {
4699
        GEN_EXCP_PRIVOPC(ctx);
4700
        return;
4701
    }
4702
#endif
4703
}
4704

    
4705
/* dclst */
4706
GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER)
4707
{
4708
    /* Data cache line store: treated as no-op */
4709
}
4710

    
4711
GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER)
4712
{
4713
#if defined(CONFIG_USER_ONLY)
4714
    GEN_EXCP_PRIVOPC(ctx);
4715
#else
4716
    if (unlikely(!ctx->supervisor)) {
4717
        GEN_EXCP_PRIVOPC(ctx);
4718
        return;
4719
    }
4720
    int ra = rA(ctx->opcode);
4721
    int rd = rD(ctx->opcode);
4722

    
4723
    gen_addr_reg_index(ctx);
4724
    gen_op_POWER_mfsri();
4725
    gen_op_store_T0_gpr(rd);
4726
    if (ra != 0 && ra != rd)
4727
        gen_op_store_T1_gpr(ra);
4728
#endif
4729
}
4730

    
4731
GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER)
4732
{
4733
#if defined(CONFIG_USER_ONLY)
4734
    GEN_EXCP_PRIVOPC(ctx);
4735
#else
4736
    if (unlikely(!ctx->supervisor)) {
4737
        GEN_EXCP_PRIVOPC(ctx);
4738
        return;
4739
    }
4740
    gen_addr_reg_index(ctx);
4741
    gen_op_POWER_rac();
4742
    gen_op_store_T0_gpr(rD(ctx->opcode));
4743
#endif
4744
}
4745

    
4746
GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER)
4747
{
4748
#if defined(CONFIG_USER_ONLY)
4749
    GEN_EXCP_PRIVOPC(ctx);
4750
#else
4751
    if (unlikely(!ctx->supervisor)) {
4752
        GEN_EXCP_PRIVOPC(ctx);
4753
        return;
4754
    }
4755
    gen_op_POWER_rfsvc();
4756
    GEN_SYNC(ctx);
4757
#endif
4758
}
4759

    
4760
/* svc is not implemented for now */
4761

    
4762
/* POWER2 specific instructions */
4763
/* Quad manipulation (load/store two floats at a time) */
4764
#define op_POWER2_lfq() (*gen_op_POWER2_lfq[ctx->mem_idx])()
4765
#define op_POWER2_stfq() (*gen_op_POWER2_stfq[ctx->mem_idx])()
4766
#if defined(CONFIG_USER_ONLY)
4767
static GenOpFunc *gen_op_POWER2_lfq[] = {
4768
    &gen_op_POWER2_lfq_le_raw,
4769
    &gen_op_POWER2_lfq_raw,
4770
};
4771
static GenOpFunc *gen_op_POWER2_stfq[] = {
4772
    &gen_op_POWER2_stfq_le_raw,
4773
    &gen_op_POWER2_stfq_raw,
4774
};
4775
#else
4776
static GenOpFunc *gen_op_POWER2_lfq[] = {
4777
    &gen_op_POWER2_lfq_le_user,
4778
    &gen_op_POWER2_lfq_user,
4779
    &gen_op_POWER2_lfq_le_kernel,
4780
    &gen_op_POWER2_lfq_kernel,
4781
};
4782
static GenOpFunc *gen_op_POWER2_stfq[] = {
4783
    &gen_op_POWER2_stfq_le_user,
4784
    &gen_op_POWER2_stfq_user,
4785
    &gen_op_POWER2_stfq_le_kernel,
4786
    &gen_op_POWER2_stfq_kernel,
4787
};
4788
#endif
4789

    
4790
/* lfq */
4791
GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
4792
{
4793
    /* NIP cannot be restored if the memory exception comes from an helper */
4794
    gen_update_nip(ctx, ctx->nip - 4);
4795
    gen_addr_imm_index(ctx, 0);
4796
    op_POWER2_lfq();
4797
    gen_op_store_FT0_fpr(rD(ctx->opcode));
4798
    gen_op_store_FT1_fpr(rD(ctx->opcode) + 1);
4799
}
4800

    
4801
/* lfqu */
4802
GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
4803
{
4804
    int ra = rA(ctx->opcode);
4805

    
4806
    /* NIP cannot be restored if the memory exception comes from an helper */
4807
    gen_update_nip(ctx, ctx->nip - 4);
4808
    gen_addr_imm_index(ctx, 0);
4809
    op_POWER2_lfq();
4810
    gen_op_store_FT0_fpr(rD(ctx->opcode));
4811
    gen_op_store_FT1_fpr(rD(ctx->opcode) + 1);
4812
    if (ra != 0)
4813
        gen_op_store_T0_gpr(ra);
4814
}
4815

    
4816
/* lfqux */
4817
GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2)
4818
{
4819
    int ra = rA(ctx->opcode);
4820

    
4821
    /* NIP cannot be restored if the memory exception comes from an helper */
4822
    gen_update_nip(ctx, ctx->nip - 4);
4823
    gen_addr_reg_index(ctx);
4824
    op_POWER2_lfq();
4825
    gen_op_store_FT0_fpr(rD(ctx->opcode));
4826
    gen_op_store_FT1_fpr(rD(ctx->opcode) + 1);
4827
    if (ra != 0)
4828
        gen_op_store_T0_gpr(ra);
4829
}
4830

    
4831
/* lfqx */
4832
GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2)
4833
{
4834
    /* NIP cannot be restored if the memory exception comes from an helper */
4835
    gen_update_nip(ctx, ctx->nip - 4);
4836
    gen_addr_reg_index(ctx);
4837
    op_POWER2_lfq();
4838
    gen_op_store_FT0_fpr(rD(ctx->opcode));
4839
    gen_op_store_FT1_fpr(rD(ctx->opcode) + 1);
4840
}
4841

    
4842
/* stfq */
4843
GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
4844
{
4845
    /* NIP cannot be restored if the memory exception comes from an helper */
4846
    gen_update_nip(ctx, ctx->nip - 4);
4847
    gen_addr_imm_index(ctx, 0);
4848
    gen_op_load_fpr_FT0(rS(ctx->opcode));
4849
    gen_op_load_fpr_FT1(rS(ctx->opcode) + 1);
4850
    op_POWER2_stfq();
4851
}
4852

    
4853
/* stfqu */
4854
GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
4855
{
4856
    int ra = rA(ctx->opcode);
4857

    
4858
    /* NIP cannot be restored if the memory exception comes from an helper */
4859
    gen_update_nip(ctx, ctx->nip - 4);
4860
    gen_addr_imm_index(ctx, 0);
4861
    gen_op_load_fpr_FT0(rS(ctx->opcode));
4862
    gen_op_load_fpr_FT1(rS(ctx->opcode) + 1);
4863
    op_POWER2_stfq();
4864
    if (ra != 0)
4865
        gen_op_store_T0_gpr(ra);
4866
}
4867

    
4868
/* stfqux */
4869
GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2)
4870
{
4871
    int ra = rA(ctx->opcode);
4872

    
4873
    /* NIP cannot be restored if the memory exception comes from an helper */
4874
    gen_update_nip(ctx, ctx->nip - 4);
4875
    gen_addr_reg_index(ctx);
4876
    gen_op_load_fpr_FT0(rS(ctx->opcode));
4877
    gen_op_load_fpr_FT1(rS(ctx->opcode) + 1);
4878
    op_POWER2_stfq();
4879
    if (ra != 0)
4880
        gen_op_store_T0_gpr(ra);
4881
}
4882

    
4883
/* stfqx */
4884
GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2)
4885
{
4886
    /* NIP cannot be restored if the memory exception comes from an helper */
4887
    gen_update_nip(ctx, ctx->nip - 4);
4888
    gen_addr_reg_index(ctx);
4889
    gen_op_load_fpr_FT0(rS(ctx->opcode));
4890
    gen_op_load_fpr_FT1(rS(ctx->opcode) + 1);
4891
    op_POWER2_stfq();
4892
}
4893

    
4894
/* BookE specific instructions */
4895
/* XXX: not implemented on 440 ? */
4896
GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_BOOKE_EXT)
4897
{
4898
    /* XXX: TODO */
4899
    GEN_EXCP_INVAL(ctx);
4900
}
4901

    
4902
/* XXX: not implemented on 440 ? */
4903
GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_BOOKE_EXT)
4904
{
4905
#if defined(CONFIG_USER_ONLY)
4906
    GEN_EXCP_PRIVOPC(ctx);
4907
#else
4908
    if (unlikely(!ctx->supervisor)) {
4909
        GEN_EXCP_PRIVOPC(ctx);
4910
        return;
4911
    }
4912
    gen_addr_reg_index(ctx);
4913
    /* Use the same micro-ops as for tlbie */
4914
#if defined(TARGET_PPC64)
4915
    if (ctx->sf_mode)
4916
        gen_op_tlbie_64();
4917
    else
4918
#endif
4919
        gen_op_tlbie();
4920
#endif
4921
}
4922

    
4923
/* All 405 MAC instructions are translated here */
4924
static always_inline void gen_405_mulladd_insn (DisasContext *ctx,
4925
                                                int opc2, int opc3,
4926
                                                int ra, int rb, int rt, int Rc)
4927
{
4928
    gen_op_load_gpr_T0(ra);
4929
    gen_op_load_gpr_T1(rb);
4930
    switch (opc3 & 0x0D) {
4931
    case 0x05:
4932
        /* macchw    - macchw.    - macchwo   - macchwo.   */
4933
        /* macchws   - macchws.   - macchwso  - macchwso.  */
4934
        /* nmacchw   - nmacchw.   - nmacchwo  - nmacchwo.  */
4935
        /* nmacchws  - nmacchws.  - nmacchwso - nmacchwso. */
4936
        /* mulchw - mulchw. */
4937
        gen_op_405_mulchw();
4938
        break;
4939
    case 0x04:
4940
        /* macchwu   - macchwu.   - macchwuo  - macchwuo.  */
4941
        /* macchwsu  - macchwsu.  - macchwsuo - macchwsuo. */
4942
        /* mulchwu - mulchwu. */
4943
        gen_op_405_mulchwu();
4944
        break;
4945
    case 0x01:
4946
        /* machhw    - machhw.    - machhwo   - machhwo.   */
4947
        /* machhws   - machhws.   - machhwso  - machhwso.  */
4948
        /* nmachhw   - nmachhw.   - nmachhwo  - nmachhwo.  */
4949
        /* nmachhws  - nmachhws.  - nmachhwso - nmachhwso. */
4950
        /* mulhhw - mulhhw. */
4951
        gen_op_405_mulhhw();
4952
        break;
4953
    case 0x00:
4954
        /* machhwu   - machhwu.   - machhwuo  - machhwuo.  */
4955
        /* machhwsu  - machhwsu.  - machhwsuo - machhwsuo. */
4956
        /* mulhhwu - mulhhwu. */
4957
        gen_op_405_mulhhwu();
4958
        break;
4959
    case 0x0D:
4960
        /* maclhw    - maclhw.    - maclhwo   - maclhwo.   */
4961
        /* maclhws   - maclhws.   - maclhwso  - maclhwso.  */
4962
        /* nmaclhw   - nmaclhw.   - nmaclhwo  - nmaclhwo.  */
4963
        /* nmaclhws  - nmaclhws.  - nmaclhwso - nmaclhwso. */
4964
        /* mullhw - mullhw. */
4965
        gen_op_405_mullhw();
4966
        break;
4967
    case 0x0C:
4968
        /* maclhwu   - maclhwu.   - maclhwuo  - maclhwuo.  */
4969
        /* maclhwsu  - maclhwsu.  - maclhwsuo - maclhwsuo. */
4970
        /* mullhwu - mullhwu. */
4971
        gen_op_405_mullhwu();
4972
        break;
4973
    }
4974
    if (opc2 & 0x02) {
4975
        /* nmultiply-and-accumulate (0x0E) */
4976
        gen_op_neg();
4977
    }
4978
    if (opc2 & 0x04) {
4979
        /* (n)multiply-and-accumulate (0x0C - 0x0E) */
4980
        gen_op_load_gpr_T2(rt);
4981
        gen_op_move_T1_T0();
4982
        gen_op_405_add_T0_T2();
4983
    }
4984
    if (opc3 & 0x10) {
4985
        /* Check overflow */
4986
        if (opc3 & 0x01)
4987
            gen_op_405_check_ov();
4988
        else
4989
            gen_op_405_check_ovu();
4990
    }
4991
    if (opc3 & 0x02) {
4992
        /* Saturate */
4993
        if (opc3 & 0x01)
4994
            gen_op_405_check_sat();
4995
        else
4996
            gen_op_405_check_satu();
4997
    }
4998
    gen_op_store_T0_gpr(rt);
4999
    if (unlikely(Rc) != 0) {
5000
        /* Update Rc0 */
5001
        gen_set_Rc0(ctx);
5002
    }
5003
}
5004

    
5005
#define GEN_MAC_HANDLER(name, opc2, opc3)                                     \
5006
GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)                  \
5007
{                                                                             \
5008
    gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode),   \
5009
                         rD(ctx->opcode), Rc(ctx->opcode));                   \
5010
}
5011

    
5012
/* macchw    - macchw.    */
5013
GEN_MAC_HANDLER(macchw, 0x0C, 0x05);
5014
/* macchwo   - macchwo.   */
5015
GEN_MAC_HANDLER(macchwo, 0x0C, 0x15);
5016
/* macchws   - macchws.   */
5017
GEN_MAC_HANDLER(macchws, 0x0C, 0x07);
5018
/* macchwso  - macchwso.  */
5019
GEN_MAC_HANDLER(macchwso, 0x0C, 0x17);
5020
/* macchwsu  - macchwsu.  */
5021
GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06);
5022
/* macchwsuo - macchwsuo. */
5023
GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16);
5024
/* macchwu   - macchwu.   */
5025
GEN_MAC_HANDLER(macchwu, 0x0C, 0x04);
5026
/* macchwuo  - macchwuo.  */
5027
GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14);
5028
/* machhw    - machhw.    */
5029
GEN_MAC_HANDLER(machhw, 0x0C, 0x01);
5030
/* machhwo   - machhwo.   */
5031
GEN_MAC_HANDLER(machhwo, 0x0C, 0x11);
5032
/* machhws   - machhws.   */
5033
GEN_MAC_HANDLER(machhws, 0x0C, 0x03);
5034
/* machhwso  - machhwso.  */
5035
GEN_MAC_HANDLER(machhwso, 0x0C, 0x13);
5036
/* machhwsu  - machhwsu.  */
5037
GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02);
5038
/* machhwsuo - machhwsuo. */
5039
GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12);
5040
/* machhwu   - machhwu.   */
5041
GEN_MAC_HANDLER(machhwu, 0x0C, 0x00);
5042
/* machhwuo  - machhwuo.  */
5043
GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10);
5044
/* maclhw    - maclhw.    */
5045
GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D);
5046
/* maclhwo   - maclhwo.   */
5047
GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D);
5048
/* maclhws   - maclhws.   */
5049
GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F);
5050
/* maclhwso  - maclhwso.  */
5051
GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F);
5052
/* maclhwu   - maclhwu.   */
5053
GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C);
5054
/* maclhwuo  - maclhwuo.  */
5055
GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C);
5056
/* maclhwsu  - maclhwsu.  */
5057
GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E);
5058
/* maclhwsuo - maclhwsuo. */
5059
GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E);
5060
/* nmacchw   - nmacchw.   */
5061
GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05);
5062
/* nmacchwo  - nmacchwo.  */
5063
GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15);
5064
/* nmacchws  - nmacchws.  */
5065
GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07);
5066
/* nmacchwso - nmacchwso. */
5067
GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17);
5068
/* nmachhw   - nmachhw.   */
5069
GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01);
5070
/* nmachhwo  - nmachhwo.  */
5071
GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11);
5072
/* nmachhws  - nmachhws.  */
5073
GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03);
5074
/* nmachhwso - nmachhwso. */
5075
GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13);
5076
/* nmaclhw   - nmaclhw.   */
5077
GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D);
5078
/* nmaclhwo  - nmaclhwo.  */
5079
GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D);
5080
/* nmaclhws  - nmaclhws.  */
5081
GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F);
5082
/* nmaclhwso - nmaclhwso. */
5083
GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F);
5084

    
5085
/* mulchw  - mulchw.  */
5086
GEN_MAC_HANDLER(mulchw, 0x08, 0x05);
5087
/* mulchwu - mulchwu. */
5088
GEN_MAC_HANDLER(mulchwu, 0x08, 0x04);
5089
/* mulhhw  - mulhhw.  */
5090
GEN_MAC_HANDLER(mulhhw, 0x08, 0x01);
5091
/* mulhhwu - mulhhwu. */
5092
GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00);
5093
/* mullhw  - mullhw.  */
5094
GEN_MAC_HANDLER(mullhw, 0x08, 0x0D);
5095
/* mullhwu - mullhwu. */
5096
GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C);
5097

    
5098
/* mfdcr */
5099
GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_EMB_COMMON)
5100
{
5101
#if defined(CONFIG_USER_ONLY)
5102
    GEN_EXCP_PRIVREG(ctx);
5103
#else
5104
    uint32_t dcrn = SPR(ctx->opcode);
5105

    
5106
    if (unlikely(!ctx->supervisor)) {
5107
        GEN_EXCP_PRIVREG(ctx);
5108
        return;
5109
    }
5110
    gen_op_set_T0(dcrn);
5111
    gen_op_load_dcr();
5112
    gen_op_store_T0_gpr(rD(ctx->opcode));
5113
#endif
5114
}
5115

    
5116
/* mtdcr */
5117
GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_EMB_COMMON)
5118
{
5119
#if defined(CONFIG_USER_ONLY)
5120
    GEN_EXCP_PRIVREG(ctx);
5121
#else
5122
    uint32_t dcrn = SPR(ctx->opcode);
5123

    
5124
    if (unlikely(!ctx->supervisor)) {
5125
        GEN_EXCP_PRIVREG(ctx);
5126
        return;
5127
    }
5128
    gen_op_set_T0(dcrn);
5129
    gen_op_load_gpr_T1(rS(ctx->opcode));
5130
    gen_op_store_dcr();
5131
#endif
5132
}
5133

    
5134
/* mfdcrx */
5135
/* XXX: not implemented on 440 ? */
5136
GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_BOOKE_EXT)
5137
{
5138
#if defined(CONFIG_USER_ONLY)
5139
    GEN_EXCP_PRIVREG(ctx);
5140
#else
5141
    if (unlikely(!ctx->supervisor)) {
5142
        GEN_EXCP_PRIVREG(ctx);
5143
        return;
5144
    }
5145
    gen_op_load_gpr_T0(rA(ctx->opcode));
5146
    gen_op_load_dcr();
5147
    gen_op_store_T0_gpr(rD(ctx->opcode));
5148
    /* Note: Rc update flag set leads to undefined state of Rc0 */
5149
#endif
5150
}
5151

    
5152
/* mtdcrx */
5153
/* XXX: not implemented on 440 ? */
5154
GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_BOOKE_EXT)
5155
{
5156
#if defined(CONFIG_USER_ONLY)
5157
    GEN_EXCP_PRIVREG(ctx);
5158
#else
5159
    if (unlikely(!ctx->supervisor)) {
5160
        GEN_EXCP_PRIVREG(ctx);
5161
        return;
5162
    }
5163
    gen_op_load_gpr_T0(rA(ctx->opcode));
5164
    gen_op_load_gpr_T1(rS(ctx->opcode));
5165
    gen_op_store_dcr();
5166
    /* Note: Rc update flag set leads to undefined state of Rc0 */
5167
#endif
5168
}
5169

    
5170
/* mfdcrux (PPC 460) : user-mode access to DCR */
5171
GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX)
5172
{
5173
    gen_op_load_gpr_T0(rA(ctx->opcode));
5174
    gen_op_load_dcr();
5175
    gen_op_store_T0_gpr(rD(ctx->opcode));
5176
    /* Note: Rc update flag set leads to undefined state of Rc0 */
5177
}
5178

    
5179
/* mtdcrux (PPC 460) : user-mode access to DCR */
5180
GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX)
5181
{
5182
    gen_op_load_gpr_T0(rA(ctx->opcode));
5183
    gen_op_load_gpr_T1(rS(ctx->opcode));
5184
    gen_op_store_dcr();
5185
    /* Note: Rc update flag set leads to undefined state of Rc0 */
5186
}
5187

    
5188
/* dccci */
5189
GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON)
5190
{
5191
#if defined(CONFIG_USER_ONLY)
5192
    GEN_EXCP_PRIVOPC(ctx);
5193
#else
5194
    if (unlikely(!ctx->supervisor)) {
5195
        GEN_EXCP_PRIVOPC(ctx);
5196
        return;
5197
    }
5198
    /* interpreted as no-op */
5199
#endif
5200
}
5201

    
5202
/* dcread */
5203
GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON)
5204
{
5205
#if defined(CONFIG_USER_ONLY)
5206
    GEN_EXCP_PRIVOPC(ctx);
5207
#else
5208
    if (unlikely(!ctx->supervisor)) {
5209
        GEN_EXCP_PRIVOPC(ctx);
5210
        return;
5211
    }
5212
    gen_addr_reg_index(ctx);
5213
    op_ldst(lwz);
5214
    gen_op_store_T0_gpr(rD(ctx->opcode));
5215
#endif
5216
}
5217

    
5218
/* icbt */
5219
GEN_HANDLER(icbt_40x, 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT)
5220
{
5221
    /* interpreted as no-op */
5222
    /* XXX: specification say this is treated as a load by the MMU
5223
     *      but does not generate any exception
5224
     */
5225
}
5226

    
5227
/* iccci */
5228
GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON)
5229
{
5230
#if defined(CONFIG_USER_ONLY)
5231
    GEN_EXCP_PRIVOPC(ctx);
5232
#else
5233
    if (unlikely(!ctx->supervisor)) {
5234
        GEN_EXCP_PRIVOPC(ctx);
5235
        return;
5236
    }
5237
    /* interpreted as no-op */
5238
#endif
5239
}
5240

    
5241
/* icread */
5242
GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON)
5243
{
5244
#if defined(CONFIG_USER_ONLY)
5245
    GEN_EXCP_PRIVOPC(ctx);
5246
#else
5247
    if (unlikely(!ctx->supervisor)) {
5248
        GEN_EXCP_PRIVOPC(ctx);
5249
        return;
5250
    }
5251
    /* interpreted as no-op */
5252
#endif
5253
}
5254

    
5255
/* rfci (supervisor only) */
5256
GEN_HANDLER(rfci_40x, 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP)
5257
{
5258
#if defined(CONFIG_USER_ONLY)
5259
    GEN_EXCP_PRIVOPC(ctx);
5260
#else
5261
    if (unlikely(!ctx->supervisor)) {
5262
        GEN_EXCP_PRIVOPC(ctx);
5263
        return;
5264
    }
5265
    /* Restore CPU state */
5266
    gen_op_40x_rfci();
5267
    GEN_SYNC(ctx);
5268
#endif
5269
}
5270

    
5271
GEN_HANDLER(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE)
5272
{
5273
#if defined(CONFIG_USER_ONLY)
5274
    GEN_EXCP_PRIVOPC(ctx);
5275
#else
5276
    if (unlikely(!ctx->supervisor)) {
5277
        GEN_EXCP_PRIVOPC(ctx);
5278
        return;
5279
    }
5280
    /* Restore CPU state */
5281
    gen_op_rfci();
5282
    GEN_SYNC(ctx);
5283
#endif
5284
}
5285

    
5286
/* BookE specific */
5287
/* XXX: not implemented on 440 ? */
5288
GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_BOOKE_EXT)
5289
{
5290
#if defined(CONFIG_USER_ONLY)
5291
    GEN_EXCP_PRIVOPC(ctx);
5292
#else
5293
    if (unlikely(!ctx->supervisor)) {
5294
        GEN_EXCP_PRIVOPC(ctx);
5295
        return;
5296
    }
5297
    /* Restore CPU state */
5298
    gen_op_rfdi();
5299
    GEN_SYNC(ctx);
5300
#endif
5301
}
5302

    
5303
/* XXX: not implemented on 440 ? */
5304
GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI)
5305
{
5306
#if defined(CONFIG_USER_ONLY)
5307
    GEN_EXCP_PRIVOPC(ctx);
5308
#else
5309
    if (unlikely(!ctx->supervisor)) {
5310
        GEN_EXCP_PRIVOPC(ctx);
5311
        return;
5312
    }
5313
    /* Restore CPU state */
5314
    gen_op_rfmci();
5315
    GEN_SYNC(ctx);
5316
#endif
5317
}
5318

    
5319
/* TLB management - PowerPC 405 implementation */
5320
/* tlbre */
5321
GEN_HANDLER(tlbre_40x, 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB)
5322
{
5323
#if defined(CONFIG_USER_ONLY)
5324
    GEN_EXCP_PRIVOPC(ctx);
5325
#else
5326
    if (unlikely(!ctx->supervisor)) {
5327
        GEN_EXCP_PRIVOPC(ctx);
5328
        return;
5329
    }
5330
    switch (rB(ctx->opcode)) {
5331
    case 0:
5332
        gen_op_load_gpr_T0(rA(ctx->opcode));
5333
        gen_op_4xx_tlbre_hi();
5334
        gen_op_store_T0_gpr(rD(ctx->opcode));
5335
        break;
5336
    case 1:
5337
        gen_op_load_gpr_T0(rA(ctx->opcode));
5338
        gen_op_4xx_tlbre_lo();
5339
        gen_op_store_T0_gpr(rD(ctx->opcode));
5340
        break;
5341
    default:
5342
        GEN_EXCP_INVAL(ctx);
5343
        break;
5344
    }
5345
#endif
5346
}
5347

    
5348
/* tlbsx - tlbsx. */
5349
GEN_HANDLER(tlbsx_40x, 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB)
5350
{
5351
#if defined(CONFIG_USER_ONLY)
5352
    GEN_EXCP_PRIVOPC(ctx);
5353
#else
5354
    if (unlikely(!ctx->supervisor)) {
5355
        GEN_EXCP_PRIVOPC(ctx);
5356
        return;
5357
    }
5358
    gen_addr_reg_index(ctx);
5359
    gen_op_4xx_tlbsx();
5360
    if (Rc(ctx->opcode))
5361
        gen_op_4xx_tlbsx_check();
5362
    gen_op_store_T0_gpr(rD(ctx->opcode));
5363
#endif
5364
}
5365

    
5366
/* tlbwe */
5367
GEN_HANDLER(tlbwe_40x, 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB)
5368
{
5369
#if defined(CONFIG_USER_ONLY)
5370
    GEN_EXCP_PRIVOPC(ctx);
5371
#else
5372
    if (unlikely(!ctx->supervisor)) {
5373
        GEN_EXCP_PRIVOPC(ctx);
5374
        return;
5375
    }
5376
    switch (rB(ctx->opcode)) {
5377
    case 0:
5378
        gen_op_load_gpr_T0(rA(ctx->opcode));
5379
        gen_op_load_gpr_T1(rS(ctx->opcode));
5380
        gen_op_4xx_tlbwe_hi();
5381
        break;
5382
    case 1:
5383
        gen_op_load_gpr_T0(rA(ctx->opcode));
5384
        gen_op_load_gpr_T1(rS(ctx->opcode));
5385
        gen_op_4xx_tlbwe_lo();
5386
        break;
5387
    default:
5388
        GEN_EXCP_INVAL(ctx);
5389
        break;
5390
    }
5391
#endif
5392
}
5393

    
5394
/* TLB management - PowerPC 440 implementation */
5395
/* tlbre */
5396
GEN_HANDLER(tlbre_440, 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE)
5397
{
5398
#if defined(CONFIG_USER_ONLY)
5399
    GEN_EXCP_PRIVOPC(ctx);
5400
#else
5401
    if (unlikely(!ctx->supervisor)) {
5402
        GEN_EXCP_PRIVOPC(ctx);
5403
        return;
5404
    }
5405
    switch (rB(ctx->opcode)) {
5406
    case 0:
5407
    case 1:
5408
    case 2:
5409
        gen_op_load_gpr_T0(rA(ctx->opcode));
5410
        gen_op_440_tlbre(rB(ctx->opcode));
5411
        gen_op_store_T0_gpr(rD(ctx->opcode));
5412
        break;
5413
    default:
5414
        GEN_EXCP_INVAL(ctx);
5415
        break;
5416
    }
5417
#endif
5418
}
5419

    
5420
/* tlbsx - tlbsx. */
5421
GEN_HANDLER(tlbsx_440, 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE)
5422
{
5423
#if defined(CONFIG_USER_ONLY)
5424
    GEN_EXCP_PRIVOPC(ctx);
5425
#else
5426
    if (unlikely(!ctx->supervisor)) {
5427
        GEN_EXCP_PRIVOPC(ctx);
5428
        return;
5429
    }
5430
    gen_addr_reg_index(ctx);
5431
    gen_op_440_tlbsx();
5432
    if (Rc(ctx->opcode))
5433
        gen_op_4xx_tlbsx_check();
5434
    gen_op_store_T0_gpr(rD(ctx->opcode));
5435
#endif
5436
}
5437

    
5438
/* tlbwe */
5439
GEN_HANDLER(tlbwe_440, 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE)
5440
{
5441
#if defined(CONFIG_USER_ONLY)
5442
    GEN_EXCP_PRIVOPC(ctx);
5443
#else
5444
    if (unlikely(!ctx->supervisor)) {
5445
        GEN_EXCP_PRIVOPC(ctx);
5446
        return;
5447
    }
5448
    switch (rB(ctx->opcode)) {
5449
    case 0:
5450
    case 1:
5451
    case 2:
5452
        gen_op_load_gpr_T0(rA(ctx->opcode));
5453
        gen_op_load_gpr_T1(rS(ctx->opcode));
5454
        gen_op_440_tlbwe(rB(ctx->opcode));
5455
        break;
5456
    default:
5457
        GEN_EXCP_INVAL(ctx);
5458
        break;
5459
    }
5460
#endif
5461
}
5462

    
5463
/* wrtee */
5464
GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_EMB_COMMON)
5465
{
5466
#if defined(CONFIG_USER_ONLY)
5467
    GEN_EXCP_PRIVOPC(ctx);
5468
#else
5469
    if (unlikely(!ctx->supervisor)) {
5470
        GEN_EXCP_PRIVOPC(ctx);
5471
        return;
5472
    }
5473
    gen_op_load_gpr_T0(rD(ctx->opcode));
5474
    gen_op_wrte();
5475
    /* Stop translation to have a chance to raise an exception
5476
     * if we just set msr_ee to 1
5477
     */
5478
    GEN_STOP(ctx);
5479
#endif
5480
}
5481

    
5482
/* wrteei */
5483
GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000EFC01, PPC_EMB_COMMON)
5484
{
5485
#if defined(CONFIG_USER_ONLY)
5486
    GEN_EXCP_PRIVOPC(ctx);
5487
#else
5488
    if (unlikely(!ctx->supervisor)) {
5489
        GEN_EXCP_PRIVOPC(ctx);
5490
        return;
5491
    }
5492
    gen_op_set_T0(ctx->opcode & 0x00010000);
5493
    gen_op_wrte();
5494
    /* Stop translation to have a chance to raise an exception
5495
     * if we just set msr_ee to 1
5496
     */
5497
    GEN_STOP(ctx);
5498
#endif
5499
}
5500

    
5501
/* PowerPC 440 specific instructions */
5502
/* dlmzb */
5503
GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC)
5504
{
5505
    gen_op_load_gpr_T0(rS(ctx->opcode));
5506
    gen_op_load_gpr_T1(rB(ctx->opcode));
5507
    gen_op_440_dlmzb();
5508
    gen_op_store_T0_gpr(rA(ctx->opcode));
5509
    gen_op_store_xer_bc();
5510
    if (Rc(ctx->opcode)) {
5511
        gen_op_440_dlmzb_update_Rc();
5512
        gen_op_store_T0_crf(0);
5513
    }
5514
}
5515

    
5516
/* mbar replaces eieio on 440 */
5517
GEN_HANDLER(mbar, 0x1F, 0x16, 0x13, 0x001FF801, PPC_BOOKE)
5518
{
5519
    /* interpreted as no-op */
5520
}
5521

    
5522
/* msync replaces sync on 440 */
5523
GEN_HANDLER(msync, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE)
5524
{
5525
    /* interpreted as no-op */
5526
}
5527

    
5528
/* icbt */
5529
GEN_HANDLER(icbt_440, 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE)
5530
{
5531
    /* interpreted as no-op */
5532
    /* XXX: specification say this is treated as a load by the MMU
5533
     *      but does not generate any exception
5534
     */
5535
}
5536

    
5537
/***                      Altivec vector extension                         ***/
5538
/* Altivec registers moves */
5539
GEN32(gen_op_load_avr_A0, gen_op_load_avr_A0_avr);
5540
GEN32(gen_op_load_avr_A1, gen_op_load_avr_A1_avr);
5541
GEN32(gen_op_load_avr_A2, gen_op_load_avr_A2_avr);
5542

    
5543
GEN32(gen_op_store_A0_avr, gen_op_store_A0_avr_avr);
5544
GEN32(gen_op_store_A1_avr, gen_op_store_A1_avr_avr);
5545
#if 0 // unused
5546
GEN32(gen_op_store_A2_avr, gen_op_store_A2_avr_avr);
5547
#endif
5548

    
5549
#define op_vr_ldst(name)        (*gen_op_##name[ctx->mem_idx])()
5550
#if defined(CONFIG_USER_ONLY)
5551
#if defined(TARGET_PPC64)
5552
/* User-mode only - 64 bits mode */
5553
#define OP_VR_LD_TABLE(name)                                                  \
5554
static GenOpFunc *gen_op_vr_l##name[] = {                                     \
5555
    &gen_op_vr_l##name##_raw,                                                 \
5556
    &gen_op_vr_l##name##_le_raw,                                              \
5557
    &gen_op_vr_l##name##_64_raw,                                              \
5558
    &gen_op_vr_l##name##_le_64_raw,                                           \
5559
};
5560
#define OP_VR_ST_TABLE(name)                                                  \
5561
static GenOpFunc *gen_op_vr_st##name[] = {                                    \
5562
    &gen_op_vr_st##name##_raw,                                                \
5563
    &gen_op_vr_st##name##_le_raw,                                             \
5564
    &gen_op_vr_st##name##_64_raw,                                             \
5565
    &gen_op_vr_st##name##_le_64_raw,                                          \
5566
};
5567
#else /* defined(TARGET_PPC64) */
5568
/* User-mode only - 32 bits mode */
5569
#define OP_VR_LD_TABLE(name)                                                  \
5570
static GenOpFunc *gen_op_vr_l##name[] = {                                     \
5571
    &gen_op_vr_l##name##_raw,                                                 \
5572
    &gen_op_vr_l##name##_le_raw,                                              \
5573
};
5574
#define OP_VR_ST_TABLE(name)                                                  \
5575
static GenOpFunc *gen_op_vr_st##name[] = {                                    \
5576
    &gen_op_vr_st##name##_raw,                                                \
5577
    &gen_op_vr_st##name##_le_raw,                                             \
5578
};
5579
#endif /* defined(TARGET_PPC64) */
5580
#else /* defined(CONFIG_USER_ONLY) */
5581
#if defined(TARGET_PPC64H)
5582
/* Full system with hypervisor mode */
5583
#define OP_VR_LD_TABLE(name)                                                  \
5584
static GenOpFunc *gen_op_vr_l##name[] = {                                     \
5585
    &gen_op_vr_l##name##_user,                                                \
5586
    &gen_op_vr_l##name##_le_user,                                             \
5587
    &gen_op_vr_l##name##_64_user,                                             \
5588
    &gen_op_vr_l##name##_le_64_user,                                          \
5589
    &gen_op_vr_l##name##_kernel,                                              \
5590
    &gen_op_vr_l##name##_le_kernel,                                           \
5591
    &gen_op_vr_l##name##_64_kernel,                                           \
5592
    &gen_op_vr_l##name##_le_64_kernel,                                        \
5593
    &gen_op_vr_l##name##_hypv,                                                \
5594
    &gen_op_vr_l##name##_le_hypv,                                             \
5595
    &gen_op_vr_l##name##_64_hypv,                                             \
5596
    &gen_op_vr_l##name##_le_64_hypv,                                          \
5597
};
5598
#define OP_VR_ST_TABLE(name)                                                  \
5599
static GenOpFunc *gen_op_vr_st##name[] = {                                    \
5600
    &gen_op_vr_st##name##_user,                                               \
5601
    &gen_op_vr_st##name##_le_user,                                            \
5602
    &gen_op_vr_st##name##_64_user,                                            \
5603
    &gen_op_vr_st##name##_le_64_user,                                         \
5604
    &gen_op_vr_st##name##_kernel,                                             \
5605
    &gen_op_vr_st##name##_le_kernel,                                          \
5606
    &gen_op_vr_st##name##_64_kernel,                                          \
5607
    &gen_op_vr_st##name##_le_64_kernel,                                       \
5608
    &gen_op_vr_st##name##_hypv,                                               \
5609
    &gen_op_vr_st##name##_le_hypv,                                            \
5610
    &gen_op_vr_st##name##_64_hypv,                                            \
5611
    &gen_op_vr_st##name##_le_64_hypv,                                         \
5612
};
5613
#elif defined(TARGET_PPC64)
5614
/* Full system - 64 bits mode */
5615
#define OP_VR_LD_TABLE(name)                                                  \
5616
static GenOpFunc *gen_op_vr_l##name[] = {                                     \
5617
    &gen_op_vr_l##name##_user,                                                \
5618
    &gen_op_vr_l##name##_le_user,                                             \
5619
    &gen_op_vr_l##name##_64_user,                                             \
5620
    &gen_op_vr_l##name##_le_64_user,                                          \
5621
    &gen_op_vr_l##name##_kernel,                                              \
5622
    &gen_op_vr_l##name##_le_kernel,                                           \
5623
    &gen_op_vr_l##name##_64_kernel,                                           \
5624
    &gen_op_vr_l##name##_le_64_kernel,                                        \
5625
};
5626
#define OP_VR_ST_TABLE(name)                                                  \
5627
static GenOpFunc *gen_op_vr_st##name[] = {                                    \
5628
    &gen_op_vr_st##name##_user,                                               \
5629
    &gen_op_vr_st##name##_le_user,                                            \
5630
    &gen_op_vr_st##name##_64_user,                                            \
5631
    &gen_op_vr_st##name##_le_64_user,                                         \
5632
    &gen_op_vr_st##name##_kernel,                                             \
5633
    &gen_op_vr_st##name##_le_kernel,                                          \
5634
    &gen_op_vr_st##name##_64_kernel,                                          \
5635
    &gen_op_vr_st##name##_le_64_kernel,                                       \
5636
};
5637
#else /* defined(TARGET_PPC64) */
5638
/* Full system - 32 bits mode */
5639
#define OP_VR_LD_TABLE(name)                                                  \
5640
static GenOpFunc *gen_op_vr_l##name[] = {                                     \
5641
    &gen_op_vr_l##name##_user,                                                \
5642
    &gen_op_vr_l##name##_le_user,                                             \
5643
    &gen_op_vr_l##name##_kernel,                                              \
5644
    &gen_op_vr_l##name##_le_kernel,                                           \
5645
};
5646
#define OP_VR_ST_TABLE(name)                                                  \
5647
static GenOpFunc *gen_op_vr_st##name[] = {                                    \
5648
    &gen_op_vr_st##name##_user,                                               \
5649
    &gen_op_vr_st##name##_le_user,                                            \
5650
    &gen_op_vr_st##name##_kernel,                                             \
5651
    &gen_op_vr_st##name##_le_kernel,                                          \
5652
};
5653
#endif /* defined(TARGET_PPC64) */
5654
#endif /* defined(CONFIG_USER_ONLY) */
5655

    
5656
#define GEN_VR_LDX(name, opc2, opc3)                                          \
5657
GEN_HANDLER(l##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)               \
5658
{                                                                             \
5659
    if (unlikely(!ctx->altivec_enabled)) {                                    \
5660
        GEN_EXCP_NO_VR(ctx);                                                  \
5661
        return;                                                               \
5662
    }                                                                         \
5663
    gen_addr_reg_index(ctx);                                                  \
5664
    op_vr_ldst(vr_l##name);                                                   \
5665
    gen_op_store_A0_avr(rD(ctx->opcode));                                     \
5666
}
5667

    
5668
#define GEN_VR_STX(name, opc2, opc3)                                          \
5669
GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)              \
5670
{                                                                             \
5671
    if (unlikely(!ctx->altivec_enabled)) {                                    \
5672
        GEN_EXCP_NO_VR(ctx);                                                  \
5673
        return;                                                               \
5674
    }                                                                         \
5675
    gen_addr_reg_index(ctx);                                                  \
5676
    gen_op_load_avr_A0(rS(ctx->opcode));                                      \
5677
    op_vr_ldst(vr_st##name);                                                  \
5678
}
5679

    
5680
OP_VR_LD_TABLE(vx);
5681
GEN_VR_LDX(vx, 0x07, 0x03);
5682
/* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
5683
#define gen_op_vr_lvxl gen_op_vr_lvx
5684
GEN_VR_LDX(vxl, 0x07, 0x0B);
5685

    
5686
OP_VR_ST_TABLE(vx);
5687
GEN_VR_STX(vx, 0x07, 0x07);
5688
/* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
5689
#define gen_op_vr_stvxl gen_op_vr_stvx
5690
GEN_VR_STX(vxl, 0x07, 0x0F);
5691

    
5692
#if defined(TARGET_PPCEMB)
5693
/***                           SPE extension                               ***/
5694

    
5695
/* Register moves */
5696
GEN32(gen_op_load_gpr64_T0, gen_op_load_gpr64_T0_gpr);
5697
GEN32(gen_op_load_gpr64_T1, gen_op_load_gpr64_T1_gpr);
5698
#if 0 // unused
5699
GEN32(gen_op_load_gpr64_T2, gen_op_load_gpr64_T2_gpr);
5700
#endif
5701

    
5702
GEN32(gen_op_store_T0_gpr64, gen_op_store_T0_gpr64_gpr);
5703
GEN32(gen_op_store_T1_gpr64, gen_op_store_T1_gpr64_gpr);
5704
#if 0 // unused
5705
GEN32(gen_op_store_T2_gpr64, gen_op_store_T2_gpr64_gpr);
5706
#endif
5707

    
5708
#define GEN_SPE(name0, name1, opc2, opc3, inval, type)                        \
5709
GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type)                   \
5710
{                                                                             \
5711
    if (Rc(ctx->opcode))                                                      \
5712
        gen_##name1(ctx);                                                     \
5713
    else                                                                      \
5714
        gen_##name0(ctx);                                                     \
5715
}
5716

    
5717
/* Handler for undefined SPE opcodes */
5718
static always_inline void gen_speundef (DisasContext *ctx)
5719
{
5720
    GEN_EXCP_INVAL(ctx);
5721
}
5722

    
5723
/* SPE load and stores */
5724
static always_inline void gen_addr_spe_imm_index (DisasContext *ctx, int sh)
5725
{
5726
    target_long simm = rB(ctx->opcode);
5727

    
5728
    if (rA(ctx->opcode) == 0) {
5729
        gen_set_T0(simm << sh);
5730
    } else {
5731
        gen_op_load_gpr_T0(rA(ctx->opcode));
5732
        if (likely(simm != 0))
5733
            gen_op_addi(simm << sh);
5734
    }
5735
}
5736

    
5737
#define op_spe_ldst(name)        (*gen_op_##name[ctx->mem_idx])()
5738
#if defined(CONFIG_USER_ONLY)
5739
#if defined(TARGET_PPC64)
5740
/* User-mode only - 64 bits mode */
5741
#define OP_SPE_LD_TABLE(name)                                                 \
5742
static GenOpFunc *gen_op_spe_l##name[] = {                                    \
5743
    &gen_op_spe_l##name##_raw,                                                \
5744
    &gen_op_spe_l##name##_le_raw,                                             \
5745
    &gen_op_spe_l##name##_64_raw,                                             \
5746
    &gen_op_spe_l##name##_le_64_raw,                                          \
5747
};
5748
#define OP_SPE_ST_TABLE(name)                                                 \
5749
static GenOpFunc *gen_op_spe_st##name[] = {                                   \
5750
    &gen_op_spe_st##name##_raw,                                               \
5751
    &gen_op_spe_st##name##_le_raw,                                            \
5752
    &gen_op_spe_st##name##_64_raw,                                            \
5753
    &gen_op_spe_st##name##_le_64_raw,                                         \
5754
};
5755
#else /* defined(TARGET_PPC64) */
5756
/* User-mode only - 32 bits mode */
5757
#define OP_SPE_LD_TABLE(name)                                                 \
5758
static GenOpFunc *gen_op_spe_l##name[] = {                                    \
5759
    &gen_op_spe_l##name##_raw,                                                \
5760
    &gen_op_spe_l##name##_le_raw,                                             \
5761
};
5762
#define OP_SPE_ST_TABLE(name)                                                 \
5763
static GenOpFunc *gen_op_spe_st##name[] = {                                   \
5764
    &gen_op_spe_st##name##_raw,                                               \
5765
    &gen_op_spe_st##name##_le_raw,                                            \
5766
};
5767
#endif /* defined(TARGET_PPC64) */
5768
#else /* defined(CONFIG_USER_ONLY) */
5769
#if defined(TARGET_PPC64H)
5770
/* Full system with hypervisor mode */
5771
#define OP_SPE_LD_TABLE(name)                                                 \
5772
static GenOpFunc *gen_op_spe_l##name[] = {                                    \
5773
    &gen_op_spe_l##name##_user,                                               \
5774
    &gen_op_spe_l##name##_le_user,                                            \
5775
    &gen_op_spe_l##name##_64_user,                                            \
5776
    &gen_op_spe_l##name##_le_64_user,                                         \
5777
    &gen_op_spe_l##name##_kernel,                                             \
5778
    &gen_op_spe_l##name##_le_kernel,                                          \
5779
    &gen_op_spe_l##name##_64_kernel,                                          \
5780
    &gen_op_spe_l##name##_le_64_kernel,                                       \
5781
    &gen_op_spe_l##name##_hypv,                                               \
5782
    &gen_op_spe_l##name##_le_hypv,                                            \
5783
    &gen_op_spe_l##name##_64_hypv,                                            \
5784
    &gen_op_spe_l##name##_le_64_hypv,                                         \
5785
};
5786
#define OP_SPE_ST_TABLE(name)                                                 \
5787
static GenOpFunc *gen_op_spe_st##name[] = {                                   \
5788
    &gen_op_spe_st##name##_user,                                              \
5789
    &gen_op_spe_st##name##_le_user,                                           \
5790
    &gen_op_spe_st##name##_64_user,                                           \
5791
    &gen_op_spe_st##name##_le_64_user,                                        \
5792
    &gen_op_spe_st##name##_kernel,                                            \
5793
    &gen_op_spe_st##name##_le_kernel,                                         \
5794
    &gen_op_spe_st##name##_64_kernel,                                         \
5795
    &gen_op_spe_st##name##_le_64_kernel,                                      \
5796
    &gen_op_spe_st##name##_hypv,                                              \
5797
    &gen_op_spe_st##name##_le_hypv,                                           \
5798
    &gen_op_spe_st##name##_64_hypv,                                           \
5799
    &gen_op_spe_st##name##_le_64_hypv,                                        \
5800
};
5801
#elif defined(TARGET_PPC64)
5802
/* Full system - 64 bits mode */
5803
#define OP_SPE_LD_TABLE(name)                                                 \
5804
static GenOpFunc *gen_op_spe_l##name[] = {                                    \
5805
    &gen_op_spe_l##name##_user,                                               \
5806
    &gen_op_spe_l##name##_le_user,                                            \
5807
    &gen_op_spe_l##name##_64_user,                                            \
5808
    &gen_op_spe_l##name##_le_64_user,                                         \
5809
    &gen_op_spe_l##name##_kernel,                                             \
5810
    &gen_op_spe_l##name##_le_kernel,                                          \
5811
    &gen_op_spe_l##name##_64_kernel,                                          \
5812
    &gen_op_spe_l##name##_le_64_kernel,                                       \
5813
};
5814
#define OP_SPE_ST_TABLE(name)                                                 \
5815
static GenOpFunc *gen_op_spe_st##name[] = {                                   \
5816
    &gen_op_spe_st##name##_user,                                              \
5817
    &gen_op_spe_st##name##_le_user,                                           \
5818
    &gen_op_spe_st##name##_64_user,                                           \
5819
    &gen_op_spe_st##name##_le_64_user,                                        \
5820
    &gen_op_spe_st##name##_kernel,                                            \
5821
    &gen_op_spe_st##name##_le_kernel,                                         \
5822
    &gen_op_spe_st##name##_64_kernel,                                         \
5823
    &gen_op_spe_st##name##_le_64_kernel,                                      \
5824
};
5825
#else /* defined(TARGET_PPC64) */
5826
/* Full system - 32 bits mode */
5827
#define OP_SPE_LD_TABLE(name)                                                 \
5828
static GenOpFunc *gen_op_spe_l##name[] = {                                    \
5829
    &gen_op_spe_l##name##_user,                                               \
5830
    &gen_op_spe_l##name##_le_user,                                            \
5831
    &gen_op_spe_l##name##_kernel,                                             \
5832
    &gen_op_spe_l##name##_le_kernel,                                          \
5833
};
5834
#define OP_SPE_ST_TABLE(name)                                                 \
5835
static GenOpFunc *gen_op_spe_st##name[] = {                                   \
5836
    &gen_op_spe_st##name##_user,                                              \
5837
    &gen_op_spe_st##name##_le_user,                                           \
5838
    &gen_op_spe_st##name##_kernel,                                            \
5839
    &gen_op_spe_st##name##_le_kernel,                                         \
5840
};
5841
#endif /* defined(TARGET_PPC64) */
5842
#endif /* defined(CONFIG_USER_ONLY) */
5843

    
5844
#define GEN_SPE_LD(name, sh)                                                  \
5845
static always_inline void gen_evl##name (DisasContext *ctx)                   \
5846
{                                                                             \
5847
    if (unlikely(!ctx->spe_enabled)) {                                        \
5848
        GEN_EXCP_NO_AP(ctx);                                                  \
5849
        return;                                                               \
5850
    }                                                                         \
5851
    gen_addr_spe_imm_index(ctx, sh);                                          \
5852
    op_spe_ldst(spe_l##name);                                                 \
5853
    gen_op_store_T1_gpr64(rD(ctx->opcode));                                   \
5854
}
5855

    
5856
#define GEN_SPE_LDX(name)                                                     \
5857
static always_inline void gen_evl##name##x (DisasContext *ctx)                \
5858
{                                                                             \
5859
    if (unlikely(!ctx->spe_enabled)) {                                        \
5860
        GEN_EXCP_NO_AP(ctx);                                                  \
5861
        return;                                                               \
5862
    }                                                                         \
5863
    gen_addr_reg_index(ctx);                                                  \
5864
    op_spe_ldst(spe_l##name);                                                 \
5865
    gen_op_store_T1_gpr64(rD(ctx->opcode));                                   \
5866
}
5867

    
5868
#define GEN_SPEOP_LD(name, sh)                                                \
5869
OP_SPE_LD_TABLE(name);                                                        \
5870
GEN_SPE_LD(name, sh);                                                         \
5871
GEN_SPE_LDX(name)
5872

    
5873
#define GEN_SPE_ST(name, sh)                                                  \
5874
static always_inline void gen_evst##name (DisasContext *ctx)                  \
5875
{                                                                             \
5876
    if (unlikely(!ctx->spe_enabled)) {                                        \
5877
        GEN_EXCP_NO_AP(ctx);                                                  \
5878
        return;                                                               \
5879
    }                                                                         \
5880
    gen_addr_spe_imm_index(ctx, sh);                                          \
5881
    gen_op_load_gpr64_T1(rS(ctx->opcode));                                    \
5882
    op_spe_ldst(spe_st##name);                                                \
5883
}
5884

    
5885
#define GEN_SPE_STX(name)                                                     \
5886
static always_inline void gen_evst##name##x (DisasContext *ctx)               \
5887
{                                                                             \
5888
    if (unlikely(!ctx->spe_enabled)) {                                        \
5889
        GEN_EXCP_NO_AP(ctx);                                                  \
5890
        return;                                                               \
5891
    }                                                                         \
5892
    gen_addr_reg_index(ctx);                                                  \
5893
    gen_op_load_gpr64_T1(rS(ctx->opcode));                                    \
5894
    op_spe_ldst(spe_st##name);                                                \
5895
}
5896

    
5897
#define GEN_SPEOP_ST(name, sh)                                                \
5898
OP_SPE_ST_TABLE(name);                                                        \
5899
GEN_SPE_ST(name, sh);                                                         \
5900
GEN_SPE_STX(name)
5901

    
5902
#define GEN_SPEOP_LDST(name, sh)                                              \
5903
GEN_SPEOP_LD(name, sh);                                                       \
5904
GEN_SPEOP_ST(name, sh)
5905

    
5906
/* SPE arithmetic and logic */
5907
#define GEN_SPEOP_ARITH2(name)                                                \
5908
static always_inline void gen_##name (DisasContext *ctx)                      \
5909
{                                                                             \
5910
    if (unlikely(!ctx->spe_enabled)) {                                        \
5911
        GEN_EXCP_NO_AP(ctx);                                                  \
5912
        return;                                                               \
5913
    }                                                                         \
5914
    gen_op_load_gpr64_T0(rA(ctx->opcode));                                    \
5915
    gen_op_load_gpr64_T1(rB(ctx->opcode));                                    \
5916
    gen_op_##name();                                                          \
5917
    gen_op_store_T0_gpr64(rD(ctx->opcode));                                   \
5918
}
5919

    
5920
#define GEN_SPEOP_ARITH1(name)                                                \
5921
static always_inline void gen_##name (DisasContext *ctx)                      \
5922
{                                                                             \
5923
    if (unlikely(!ctx->spe_enabled)) {                                        \
5924
        GEN_EXCP_NO_AP(ctx);                                                  \
5925
        return;                                                               \
5926
    }                                                                         \
5927
    gen_op_load_gpr64_T0(rA(ctx->opcode));                                    \
5928
    gen_op_##name();                                                          \
5929
    gen_op_store_T0_gpr64(rD(ctx->opcode));                                   \
5930
}
5931

    
5932
#define GEN_SPEOP_COMP(name)                                                  \
5933
static always_inline void gen_##name (DisasContext *ctx)                      \
5934
{                                                                             \
5935
    if (unlikely(!ctx->spe_enabled)) {                                        \
5936
        GEN_EXCP_NO_AP(ctx);                                                  \
5937
        return;                                                               \
5938
    }                                                                         \
5939
    gen_op_load_gpr64_T0(rA(ctx->opcode));                                    \
5940
    gen_op_load_gpr64_T1(rB(ctx->opcode));                                    \
5941
    gen_op_##name();                                                          \
5942
    gen_op_store_T0_crf(crfD(ctx->opcode));                                   \
5943
}
5944

    
5945
/* Logical */
5946
GEN_SPEOP_ARITH2(evand);
5947
GEN_SPEOP_ARITH2(evandc);
5948
GEN_SPEOP_ARITH2(evxor);
5949
GEN_SPEOP_ARITH2(evor);
5950
GEN_SPEOP_ARITH2(evnor);
5951
GEN_SPEOP_ARITH2(eveqv);
5952
GEN_SPEOP_ARITH2(evorc);
5953
GEN_SPEOP_ARITH2(evnand);
5954
GEN_SPEOP_ARITH2(evsrwu);
5955
GEN_SPEOP_ARITH2(evsrws);
5956
GEN_SPEOP_ARITH2(evslw);
5957
GEN_SPEOP_ARITH2(evrlw);
5958
GEN_SPEOP_ARITH2(evmergehi);
5959
GEN_SPEOP_ARITH2(evmergelo);
5960
GEN_SPEOP_ARITH2(evmergehilo);
5961
GEN_SPEOP_ARITH2(evmergelohi);
5962

    
5963
/* Arithmetic */
5964
GEN_SPEOP_ARITH2(evaddw);
5965
GEN_SPEOP_ARITH2(evsubfw);
5966
GEN_SPEOP_ARITH1(evabs);
5967
GEN_SPEOP_ARITH1(evneg);
5968
GEN_SPEOP_ARITH1(evextsb);
5969
GEN_SPEOP_ARITH1(evextsh);
5970
GEN_SPEOP_ARITH1(evrndw);
5971
GEN_SPEOP_ARITH1(evcntlzw);
5972
GEN_SPEOP_ARITH1(evcntlsw);
5973
static always_inline void gen_brinc (DisasContext *ctx)
5974
{
5975
    /* Note: brinc is usable even if SPE is disabled */
5976
    gen_op_load_gpr64_T0(rA(ctx->opcode));
5977
    gen_op_load_gpr64_T1(rB(ctx->opcode));
5978
    gen_op_brinc();
5979
    gen_op_store_T0_gpr64(rD(ctx->opcode));
5980
}
5981

    
5982
#define GEN_SPEOP_ARITH_IMM2(name)                                            \
5983
static always_inline void gen_##name##i (DisasContext *ctx)                   \
5984
{                                                                             \
5985
    if (unlikely(!ctx->spe_enabled)) {                                        \
5986
        GEN_EXCP_NO_AP(ctx);                                                  \
5987
        return;                                                               \
5988
    }                                                                         \
5989
    gen_op_load_gpr64_T0(rB(ctx->opcode));                                    \
5990
    gen_op_splatwi_T1_64(rA(ctx->opcode));                                    \
5991
    gen_op_##name();                                                          \
5992
    gen_op_store_T0_gpr64(rD(ctx->opcode));                                   \
5993
}
5994

    
5995
#define GEN_SPEOP_LOGIC_IMM2(name)                                            \
5996
static always_inline void gen_##name##i (DisasContext *ctx)                   \
5997
{                                                                             \
5998
    if (unlikely(!ctx->spe_enabled)) {                                        \
5999
        GEN_EXCP_NO_AP(ctx);                                                  \
6000
        return;                                                               \
6001
    }                                                                         \
6002
    gen_op_load_gpr64_T0(rA(ctx->opcode));                                    \
6003
    gen_op_splatwi_T1_64(rB(ctx->opcode));                                    \
6004
    gen_op_##name();                                                          \
6005
    gen_op_store_T0_gpr64(rD(ctx->opcode));                                   \
6006
}
6007

    
6008
GEN_SPEOP_ARITH_IMM2(evaddw);
6009
#define gen_evaddiw gen_evaddwi
6010
GEN_SPEOP_ARITH_IMM2(evsubfw);
6011
#define gen_evsubifw gen_evsubfwi
6012
GEN_SPEOP_LOGIC_IMM2(evslw);
6013
GEN_SPEOP_LOGIC_IMM2(evsrwu);
6014
#define gen_evsrwis gen_evsrwsi
6015
GEN_SPEOP_LOGIC_IMM2(evsrws);
6016
#define gen_evsrwiu gen_evsrwui
6017
GEN_SPEOP_LOGIC_IMM2(evrlw);
6018

    
6019
static always_inline void gen_evsplati (DisasContext *ctx)
6020
{
6021
    int32_t imm = (int32_t)(rA(ctx->opcode) << 27) >> 27;
6022

    
6023
    gen_op_splatwi_T0_64(imm);
6024
    gen_op_store_T0_gpr64(rD(ctx->opcode));
6025
}
6026

    
6027
static always_inline void gen_evsplatfi (DisasContext *ctx)
6028
{
6029
    uint32_t imm = rA(ctx->opcode) << 27;
6030

    
6031
    gen_op_splatwi_T0_64(imm);
6032
    gen_op_store_T0_gpr64(rD(ctx->opcode));
6033
}
6034

    
6035
/* Comparison */
6036
GEN_SPEOP_COMP(evcmpgtu);
6037
GEN_SPEOP_COMP(evcmpgts);
6038
GEN_SPEOP_COMP(evcmpltu);
6039
GEN_SPEOP_COMP(evcmplts);
6040
GEN_SPEOP_COMP(evcmpeq);
6041

    
6042
GEN_SPE(evaddw,         speundef,      0x00, 0x08, 0x00000000, PPC_SPE); ////
6043
GEN_SPE(evaddiw,        speundef,      0x01, 0x08, 0x00000000, PPC_SPE);
6044
GEN_SPE(evsubfw,        speundef,      0x02, 0x08, 0x00000000, PPC_SPE); ////
6045
GEN_SPE(evsubifw,       speundef,      0x03, 0x08, 0x00000000, PPC_SPE);
6046
GEN_SPE(evabs,          evneg,         0x04, 0x08, 0x0000F800, PPC_SPE); ////
6047
GEN_SPE(evextsb,        evextsh,       0x05, 0x08, 0x0000F800, PPC_SPE); ////
6048
GEN_SPE(evrndw,         evcntlzw,      0x06, 0x08, 0x0000F800, PPC_SPE); ////
6049
GEN_SPE(evcntlsw,       brinc,         0x07, 0x08, 0x00000000, PPC_SPE); //
6050
GEN_SPE(speundef,       evand,         0x08, 0x08, 0x00000000, PPC_SPE); ////
6051
GEN_SPE(evandc,         speundef,      0x09, 0x08, 0x00000000, PPC_SPE); ////
6052
GEN_SPE(evxor,          evor,          0x0B, 0x08, 0x00000000, PPC_SPE); ////
6053
GEN_SPE(evnor,          eveqv,         0x0C, 0x08, 0x00000000, PPC_SPE); ////
6054
GEN_SPE(speundef,       evorc,         0x0D, 0x08, 0x00000000, PPC_SPE); ////
6055
GEN_SPE(evnand,         speundef,      0x0F, 0x08, 0x00000000, PPC_SPE); ////
6056
GEN_SPE(evsrwu,         evsrws,        0x10, 0x08, 0x00000000, PPC_SPE); ////
6057
GEN_SPE(evsrwiu,        evsrwis,       0x11, 0x08, 0x00000000, PPC_SPE);
6058
GEN_SPE(evslw,          speundef,      0x12, 0x08, 0x00000000, PPC_SPE); ////
6059
GEN_SPE(evslwi,         speundef,      0x13, 0x08, 0x00000000, PPC_SPE);
6060
GEN_SPE(evrlw,          evsplati,      0x14, 0x08, 0x00000000, PPC_SPE); //
6061
GEN_SPE(evrlwi,         evsplatfi,     0x15, 0x08, 0x00000000, PPC_SPE);
6062
GEN_SPE(evmergehi,      evmergelo,     0x16, 0x08, 0x00000000, PPC_SPE); ////
6063
GEN_SPE(evmergehilo,    evmergelohi,   0x17, 0x08, 0x00000000, PPC_SPE); ////
6064
GEN_SPE(evcmpgtu,       evcmpgts,      0x18, 0x08, 0x00600000, PPC_SPE); ////
6065
GEN_SPE(evcmpltu,       evcmplts,      0x19, 0x08, 0x00600000, PPC_SPE); ////
6066
GEN_SPE(evcmpeq,        speundef,      0x1A, 0x08, 0x00600000, PPC_SPE); ////
6067

    
6068
static always_inline void gen_evsel (DisasContext *ctx)
6069
{
6070
    if (unlikely(!ctx->spe_enabled)) {
6071
        GEN_EXCP_NO_AP(ctx);
6072
        return;
6073
    }
6074
    gen_op_load_crf_T0(ctx->opcode & 0x7);
6075
    gen_op_load_gpr64_T0(rA(ctx->opcode));
6076
    gen_op_load_gpr64_T1(rB(ctx->opcode));
6077
    gen_op_evsel();
6078
    gen_op_store_T0_gpr64(rD(ctx->opcode));
6079
}
6080

    
6081
GEN_HANDLER(evsel0, 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE)
6082
{
6083
    gen_evsel(ctx);
6084
}
6085
GEN_HANDLER(evsel1, 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE)
6086
{
6087
    gen_evsel(ctx);
6088
}
6089
GEN_HANDLER(evsel2, 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE)
6090
{
6091
    gen_evsel(ctx);
6092
}
6093
GEN_HANDLER(evsel3, 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE)
6094
{
6095
    gen_evsel(ctx);
6096
}
6097

    
6098
/* Load and stores */
6099
#if defined(TARGET_PPC64)
6100
/* In that case, we already have 64 bits load & stores
6101
 * so, spe_ldd is equivalent to ld and spe_std is equivalent to std
6102
 */
6103
#if defined(CONFIG_USER_ONLY)
6104
#define gen_op_spe_ldd_raw gen_op_ld_raw
6105
#define gen_op_spe_ldd_64_raw gen_op_ld_64_raw
6106
#define gen_op_spe_ldd_le_raw gen_op_ld_le_raw
6107
#define gen_op_spe_ldd_le_64_raw gen_op_ld_le_64_raw
6108
#define gen_op_spe_stdd_raw gen_op_ld_raw
6109
#define gen_op_spe_stdd_64_raw gen_op_std_64_raw
6110
#define gen_op_spe_stdd_le_raw gen_op_std_le_raw
6111
#define gen_op_spe_stdd_le_64_raw gen_op_std_le_64_raw
6112
#else /* defined(CONFIG_USER_ONLY) */
6113
#define gen_op_spe_ldd_kernel gen_op_ld_kernel
6114
#define gen_op_spe_ldd_64_kernel gen_op_ld_64_kernel
6115
#define gen_op_spe_ldd_le_kernel gen_op_ld_kernel
6116
#define gen_op_spe_ldd_le_64_kernel gen_op_ld_64_kernel
6117
#define gen_op_spe_ldd_user gen_op_ld_user
6118
#define gen_op_spe_ldd_64_user gen_op_ld_64_user
6119
#define gen_op_spe_ldd_le_user gen_op_ld_le_user
6120
#define gen_op_spe_ldd_le_64_user gen_op_ld_le_64_user
6121
#define gen_op_spe_stdd_kernel gen_op_std_kernel
6122
#define gen_op_spe_stdd_64_kernel gen_op_std_64_kernel
6123
#define gen_op_spe_stdd_le_kernel gen_op_std_kernel
6124
#define gen_op_spe_stdd_le_64_kernel gen_op_std_64_kernel
6125
#define gen_op_spe_stdd_user gen_op_std_user
6126
#define gen_op_spe_stdd_64_user gen_op_std_64_user
6127
#define gen_op_spe_stdd_le_user gen_op_std_le_user
6128
#define gen_op_spe_stdd_le_64_user gen_op_std_le_64_user
6129
#endif /* defined(CONFIG_USER_ONLY) */
6130
#endif /* defined(TARGET_PPC64) */
6131
GEN_SPEOP_LDST(dd, 3);
6132
GEN_SPEOP_LDST(dw, 3);
6133
GEN_SPEOP_LDST(dh, 3);
6134
GEN_SPEOP_LDST(whe, 2);
6135
GEN_SPEOP_LD(whou, 2);
6136
GEN_SPEOP_LD(whos, 2);
6137
GEN_SPEOP_ST(who, 2);
6138

    
6139
#if defined(TARGET_PPC64)
6140
/* In that case, spe_stwwo is equivalent to stw */
6141
#if defined(CONFIG_USER_ONLY)
6142
#define gen_op_spe_stwwo_raw gen_op_stw_raw
6143
#define gen_op_spe_stwwo_le_raw gen_op_stw_le_raw
6144
#define gen_op_spe_stwwo_64_raw gen_op_stw_64_raw
6145
#define gen_op_spe_stwwo_le_64_raw gen_op_stw_le_64_raw
6146
#else
6147
#define gen_op_spe_stwwo_user gen_op_stw_user
6148
#define gen_op_spe_stwwo_le_user gen_op_stw_le_user
6149
#define gen_op_spe_stwwo_64_user gen_op_stw_64_user
6150
#define gen_op_spe_stwwo_le_64_user gen_op_stw_le_64_user
6151
#define gen_op_spe_stwwo_kernel gen_op_stw_kernel
6152
#define gen_op_spe_stwwo_le_kernel gen_op_stw_le_kernel
6153
#define gen_op_spe_stwwo_64_kernel gen_op_stw_64_kernel
6154
#define gen_op_spe_stwwo_le_64_kernel gen_op_stw_le_64_kernel
6155
#endif
6156
#endif
6157
#define _GEN_OP_SPE_STWWE(suffix)                                             \
6158
static always_inline void gen_op_spe_stwwe_##suffix (void)                    \
6159
{                                                                             \
6160
    gen_op_srli32_T1_64();                                                    \
6161
    gen_op_spe_stwwo_##suffix();                                              \
6162
}
6163
#define _GEN_OP_SPE_STWWE_LE(suffix)                                          \
6164
static always_inline void gen_op_spe_stwwe_le_##suffix (void)                 \
6165
{                                                                             \
6166
    gen_op_srli32_T1_64();                                                    \
6167
    gen_op_spe_stwwo_le_##suffix();                                           \
6168
}
6169
#if defined(TARGET_PPC64)
6170
#define GEN_OP_SPE_STWWE(suffix)                                              \
6171
_GEN_OP_SPE_STWWE(suffix);                                                    \
6172
_GEN_OP_SPE_STWWE_LE(suffix);                                                 \
6173
static always_inline void gen_op_spe_stwwe_64_##suffix (void)                 \
6174
{                                                                             \
6175
    gen_op_srli32_T1_64();                                                    \
6176
    gen_op_spe_stwwo_64_##suffix();                                           \
6177
}                                                                             \
6178
static always_inline void gen_op_spe_stwwe_le_64_##suffix (void)              \
6179
{                                                                             \
6180
    gen_op_srli32_T1_64();                                                    \
6181
    gen_op_spe_stwwo_le_64_##suffix();                                        \
6182
}
6183
#else
6184
#define GEN_OP_SPE_STWWE(suffix)                                              \
6185
_GEN_OP_SPE_STWWE(suffix);                                                    \
6186
_GEN_OP_SPE_STWWE_LE(suffix)
6187
#endif
6188
#if defined(CONFIG_USER_ONLY)
6189
GEN_OP_SPE_STWWE(raw);
6190
#else /* defined(CONFIG_USER_ONLY) */
6191
GEN_OP_SPE_STWWE(kernel);
6192
GEN_OP_SPE_STWWE(user);
6193
#endif /* defined(CONFIG_USER_ONLY) */
6194
GEN_SPEOP_ST(wwe, 2);
6195
GEN_SPEOP_ST(wwo, 2);
6196

    
6197
#define GEN_SPE_LDSPLAT(name, op, suffix)                                     \
6198
static always_inline void gen_op_spe_l##name##_##suffix (void)                \
6199
{                                                                             \
6200
    gen_op_##op##_##suffix();                                                 \
6201
    gen_op_splatw_T1_64();                                                    \
6202
}
6203

    
6204
#define GEN_OP_SPE_LHE(suffix)                                                \
6205
static always_inline void gen_op_spe_lhe_##suffix (void)                      \
6206
{                                                                             \
6207
    gen_op_spe_lh_##suffix();                                                 \
6208
    gen_op_sli16_T1_64();                                                     \
6209
}
6210

    
6211
#define GEN_OP_SPE_LHX(suffix)                                                \
6212
static always_inline void gen_op_spe_lhx_##suffix (void)                      \
6213
{                                                                             \
6214
    gen_op_spe_lh_##suffix();                                                 \
6215
    gen_op_extsh_T1_64();                                                     \
6216
}
6217

    
6218
#if defined(CONFIG_USER_ONLY)
6219
GEN_OP_SPE_LHE(raw);
6220
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, raw);
6221
GEN_OP_SPE_LHE(le_raw);
6222
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, le_raw);
6223
GEN_SPE_LDSPLAT(hhousplat, spe_lh, raw);
6224
GEN_SPE_LDSPLAT(hhousplat, spe_lh, le_raw);
6225
GEN_OP_SPE_LHX(raw);
6226
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, raw);
6227
GEN_OP_SPE_LHX(le_raw);
6228
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, le_raw);
6229
#if defined(TARGET_PPC64)
6230
GEN_OP_SPE_LHE(64_raw);
6231
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, 64_raw);
6232
GEN_OP_SPE_LHE(le_64_raw);
6233
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, le_64_raw);
6234
GEN_SPE_LDSPLAT(hhousplat, spe_lh, 64_raw);
6235
GEN_SPE_LDSPLAT(hhousplat, spe_lh, le_64_raw);
6236
GEN_OP_SPE_LHX(64_raw);
6237
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, 64_raw);
6238
GEN_OP_SPE_LHX(le_64_raw);
6239
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, le_64_raw);
6240
#endif
6241
#else
6242
GEN_OP_SPE_LHE(kernel);
6243
GEN_OP_SPE_LHE(user);
6244
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, kernel);
6245
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, user);
6246
GEN_OP_SPE_LHE(le_kernel);
6247
GEN_OP_SPE_LHE(le_user);
6248
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, le_kernel);
6249
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, le_user);
6250
GEN_SPE_LDSPLAT(hhousplat, spe_lh, kernel);
6251
GEN_SPE_LDSPLAT(hhousplat, spe_lh, user);
6252
GEN_SPE_LDSPLAT(hhousplat, spe_lh, le_kernel);
6253
GEN_SPE_LDSPLAT(hhousplat, spe_lh, le_user);
6254
GEN_OP_SPE_LHX(kernel);
6255
GEN_OP_SPE_LHX(user);
6256
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, kernel);
6257
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, user);
6258
GEN_OP_SPE_LHX(le_kernel);
6259
GEN_OP_SPE_LHX(le_user);
6260
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, le_kernel);
6261
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, le_user);
6262
#if defined(TARGET_PPC64)
6263
GEN_OP_SPE_LHE(64_kernel);
6264
GEN_OP_SPE_LHE(64_user);
6265
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, 64_kernel);
6266
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, 64_user);
6267
GEN_OP_SPE_LHE(le_64_kernel);
6268
GEN_OP_SPE_LHE(le_64_user);
6269
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, le_64_kernel);
6270
GEN_SPE_LDSPLAT(hhesplat, spe_lhe, le_64_user);
6271
GEN_SPE_LDSPLAT(hhousplat, spe_lh, 64_kernel);
6272
GEN_SPE_LDSPLAT(hhousplat, spe_lh, 64_user);
6273
GEN_SPE_LDSPLAT(hhousplat, spe_lh, le_64_kernel);
6274
GEN_SPE_LDSPLAT(hhousplat, spe_lh, le_64_user);
6275
GEN_OP_SPE_LHX(64_kernel);
6276
GEN_OP_SPE_LHX(64_user);
6277
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, 64_kernel);
6278
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, 64_user);
6279
GEN_OP_SPE_LHX(le_64_kernel);
6280
GEN_OP_SPE_LHX(le_64_user);
6281
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, le_64_kernel);
6282
GEN_SPE_LDSPLAT(hhossplat, spe_lhx, le_64_user);
6283
#endif
6284
#endif
6285
GEN_SPEOP_LD(hhesplat, 1);
6286
GEN_SPEOP_LD(hhousplat, 1);
6287
GEN_SPEOP_LD(hhossplat, 1);
6288
GEN_SPEOP_LD(wwsplat, 2);
6289
GEN_SPEOP_LD(whsplat, 2);
6290

    
6291
GEN_SPE(evlddx,         evldd,         0x00, 0x0C, 0x00000000, PPC_SPE); //
6292
GEN_SPE(evldwx,         evldw,         0x01, 0x0C, 0x00000000, PPC_SPE); //
6293
GEN_SPE(evldhx,         evldh,         0x02, 0x0C, 0x00000000, PPC_SPE); //
6294
GEN_SPE(evlhhesplatx,   evlhhesplat,   0x04, 0x0C, 0x00000000, PPC_SPE); //
6295
GEN_SPE(evlhhousplatx,  evlhhousplat,  0x06, 0x0C, 0x00000000, PPC_SPE); //
6296
GEN_SPE(evlhhossplatx,  evlhhossplat,  0x07, 0x0C, 0x00000000, PPC_SPE); //
6297
GEN_SPE(evlwhex,        evlwhe,        0x08, 0x0C, 0x00000000, PPC_SPE); //
6298
GEN_SPE(evlwhoux,       evlwhou,       0x0A, 0x0C, 0x00000000, PPC_SPE); //
6299
GEN_SPE(evlwhosx,       evlwhos,       0x0B, 0x0C, 0x00000000, PPC_SPE); //
6300
GEN_SPE(evlwwsplatx,    evlwwsplat,    0x0C, 0x0C, 0x00000000, PPC_SPE); //
6301
GEN_SPE(evlwhsplatx,    evlwhsplat,    0x0E, 0x0C, 0x00000000, PPC_SPE); //
6302
GEN_SPE(evstddx,        evstdd,        0x10, 0x0C, 0x00000000, PPC_SPE); //
6303
GEN_SPE(evstdwx,        evstdw,        0x11, 0x0C, 0x00000000, PPC_SPE); //
6304
GEN_SPE(evstdhx,        evstdh,        0x12, 0x0C, 0x00000000, PPC_SPE); //
6305
GEN_SPE(evstwhex,       evstwhe,       0x18, 0x0C, 0x00000000, PPC_SPE); //
6306
GEN_SPE(evstwhox,       evstwho,       0x1A, 0x0C, 0x00000000, PPC_SPE); //
6307
GEN_SPE(evstwwex,       evstwwe,       0x1C, 0x0C, 0x00000000, PPC_SPE); //
6308
GEN_SPE(evstwwox,       evstwwo,       0x1E, 0x0C, 0x00000000, PPC_SPE); //
6309

    
6310
/* Multiply and add - TODO */
6311
#if 0
6312
GEN_SPE(speundef,       evmhessf,      0x01, 0x10, 0x00000000, PPC_SPE);
6313
GEN_SPE(speundef,       evmhossf,      0x03, 0x10, 0x00000000, PPC_SPE);
6314
GEN_SPE(evmheumi,       evmhesmi,      0x04, 0x10, 0x00000000, PPC_SPE);
6315
GEN_SPE(speundef,       evmhesmf,      0x05, 0x10, 0x00000000, PPC_SPE);
6316
GEN_SPE(evmhoumi,       evmhosmi,      0x06, 0x10, 0x00000000, PPC_SPE);
6317
GEN_SPE(speundef,       evmhosmf,      0x07, 0x10, 0x00000000, PPC_SPE);
6318
GEN_SPE(speundef,       evmhessfa,     0x11, 0x10, 0x00000000, PPC_SPE);
6319
GEN_SPE(speundef,       evmhossfa,     0x13, 0x10, 0x00000000, PPC_SPE);
6320
GEN_SPE(evmheumia,      evmhesmia,     0x14, 0x10, 0x00000000, PPC_SPE);
6321
GEN_SPE(speundef,       evmhesmfa,     0x15, 0x10, 0x00000000, PPC_SPE);
6322
GEN_SPE(evmhoumia,      evmhosmia,     0x16, 0x10, 0x00000000, PPC_SPE);
6323
GEN_SPE(speundef,       evmhosmfa,     0x17, 0x10, 0x00000000, PPC_SPE);
6324

6325
GEN_SPE(speundef,       evmwhssf,      0x03, 0x11, 0x00000000, PPC_SPE);
6326
GEN_SPE(evmwlumi,       speundef,      0x04, 0x11, 0x00000000, PPC_SPE);
6327
GEN_SPE(evmwhumi,       evmwhsmi,      0x06, 0x11, 0x00000000, PPC_SPE);
6328
GEN_SPE(speundef,       evmwhsmf,      0x07, 0x11, 0x00000000, PPC_SPE);
6329
GEN_SPE(speundef,       evmwssf,       0x09, 0x11, 0x00000000, PPC_SPE);
6330
GEN_SPE(evmwumi,        evmwsmi,       0x0C, 0x11, 0x00000000, PPC_SPE);
6331
GEN_SPE(speundef,       evmwsmf,       0x0D, 0x11, 0x00000000, PPC_SPE);
6332
GEN_SPE(speundef,       evmwhssfa,     0x13, 0x11, 0x00000000, PPC_SPE);
6333
GEN_SPE(evmwlumia,      speundef,      0x14, 0x11, 0x00000000, PPC_SPE);
6334
GEN_SPE(evmwhumia,      evmwhsmia,     0x16, 0x11, 0x00000000, PPC_SPE);
6335
GEN_SPE(speundef,       evmwhsmfa,     0x17, 0x11, 0x00000000, PPC_SPE);
6336
GEN_SPE(speundef,       evmwssfa,      0x19, 0x11, 0x00000000, PPC_SPE);
6337
GEN_SPE(evmwumia,       evmwsmia,      0x1C, 0x11, 0x00000000, PPC_SPE);
6338
GEN_SPE(speundef,       evmwsmfa,      0x1D, 0x11, 0x00000000, PPC_SPE);
6339

6340
GEN_SPE(evadduiaaw,     evaddsiaaw,    0x00, 0x13, 0x0000F800, PPC_SPE);
6341
GEN_SPE(evsubfusiaaw,   evsubfssiaaw,  0x01, 0x13, 0x0000F800, PPC_SPE);
6342
GEN_SPE(evaddumiaaw,    evaddsmiaaw,   0x04, 0x13, 0x0000F800, PPC_SPE);
6343
GEN_SPE(evsubfumiaaw,   evsubfsmiaaw,  0x05, 0x13, 0x0000F800, PPC_SPE);
6344
GEN_SPE(evdivws,        evdivwu,       0x06, 0x13, 0x00000000, PPC_SPE);
6345
GEN_SPE(evmra,          speundef,      0x07, 0x13, 0x0000F800, PPC_SPE);
6346

6347
GEN_SPE(evmheusiaaw,    evmhessiaaw,   0x00, 0x14, 0x00000000, PPC_SPE);
6348
GEN_SPE(speundef,       evmhessfaaw,   0x01, 0x14, 0x00000000, PPC_SPE);
6349
GEN_SPE(evmhousiaaw,    evmhossiaaw,   0x02, 0x14, 0x00000000, PPC_SPE);
6350
GEN_SPE(speundef,       evmhossfaaw,   0x03, 0x14, 0x00000000, PPC_SPE);
6351
GEN_SPE(evmheumiaaw,    evmhesmiaaw,   0x04, 0x14, 0x00000000, PPC_SPE);
6352
GEN_SPE(speundef,       evmhesmfaaw,   0x05, 0x14, 0x00000000, PPC_SPE);
6353
GEN_SPE(evmhoumiaaw,    evmhosmiaaw,   0x06, 0x14, 0x00000000, PPC_SPE);
6354
GEN_SPE(speundef,       evmhosmfaaw,   0x07, 0x14, 0x00000000, PPC_SPE);
6355
GEN_SPE(evmhegumiaa,    evmhegsmiaa,   0x14, 0x14, 0x00000000, PPC_SPE);
6356
GEN_SPE(speundef,       evmhegsmfaa,   0x15, 0x14, 0x00000000, PPC_SPE);
6357
GEN_SPE(evmhogumiaa,    evmhogsmiaa,   0x16, 0x14, 0x00000000, PPC_SPE);
6358
GEN_SPE(speundef,       evmhogsmfaa,   0x17, 0x14, 0x00000000, PPC_SPE);
6359

6360
GEN_SPE(evmwlusiaaw,    evmwlssiaaw,   0x00, 0x15, 0x00000000, PPC_SPE);
6361
GEN_SPE(evmwlumiaaw,    evmwlsmiaaw,   0x04, 0x15, 0x00000000, PPC_SPE);
6362
GEN_SPE(speundef,       evmwssfaa,     0x09, 0x15, 0x00000000, PPC_SPE);
6363
GEN_SPE(evmwumiaa,      evmwsmiaa,     0x0C, 0x15, 0x00000000, PPC_SPE);
6364
GEN_SPE(speundef,       evmwsmfaa,     0x0D, 0x15, 0x00000000, PPC_SPE);
6365

6366
GEN_SPE(evmheusianw,    evmhessianw,   0x00, 0x16, 0x00000000, PPC_SPE);
6367
GEN_SPE(speundef,       evmhessfanw,   0x01, 0x16, 0x00000000, PPC_SPE);
6368
GEN_SPE(evmhousianw,    evmhossianw,   0x02, 0x16, 0x00000000, PPC_SPE);
6369
GEN_SPE(speundef,       evmhossfanw,   0x03, 0x16, 0x00000000, PPC_SPE);
6370
GEN_SPE(evmheumianw,    evmhesmianw,   0x04, 0x16, 0x00000000, PPC_SPE);
6371
GEN_SPE(speundef,       evmhesmfanw,   0x05, 0x16, 0x00000000, PPC_SPE);
6372
GEN_SPE(evmhoumianw,    evmhosmianw,   0x06, 0x16, 0x00000000, PPC_SPE);
6373
GEN_SPE(speundef,       evmhosmfanw,   0x07, 0x16, 0x00000000, PPC_SPE);
6374
GEN_SPE(evmhegumian,    evmhegsmian,   0x14, 0x16, 0x00000000, PPC_SPE);
6375
GEN_SPE(speundef,       evmhegsmfan,   0x15, 0x16, 0x00000000, PPC_SPE);
6376
GEN_SPE(evmhigumian,    evmhigsmian,   0x16, 0x16, 0x00000000, PPC_SPE);
6377
GEN_SPE(speundef,       evmhogsmfan,   0x17, 0x16, 0x00000000, PPC_SPE);
6378

6379
GEN_SPE(evmwlusianw,    evmwlssianw,   0x00, 0x17, 0x00000000, PPC_SPE);
6380
GEN_SPE(evmwlumianw,    evmwlsmianw,   0x04, 0x17, 0x00000000, PPC_SPE);
6381
GEN_SPE(speundef,       evmwssfan,     0x09, 0x17, 0x00000000, PPC_SPE);
6382
GEN_SPE(evmwumian,      evmwsmian,     0x0C, 0x17, 0x00000000, PPC_SPE);
6383
GEN_SPE(speundef,       evmwsmfan,     0x0D, 0x17, 0x00000000, PPC_SPE);
6384
#endif
6385

    
6386
/***                      SPE floating-point extension                     ***/
6387
#define GEN_SPEFPUOP_CONV(name)                                               \
6388
static always_inline void gen_##name (DisasContext *ctx)                      \
6389
{                                                                             \
6390
    gen_op_load_gpr64_T0(rB(ctx->opcode));                                    \
6391
    gen_op_##name();                                                          \
6392
    gen_op_store_T0_gpr64(rD(ctx->opcode));                                   \
6393
}
6394

    
6395
/* Single precision floating-point vectors operations */
6396
/* Arithmetic */
6397
GEN_SPEOP_ARITH2(evfsadd);
6398
GEN_SPEOP_ARITH2(evfssub);
6399
GEN_SPEOP_ARITH2(evfsmul);
6400
GEN_SPEOP_ARITH2(evfsdiv);
6401
GEN_SPEOP_ARITH1(evfsabs);
6402
GEN_SPEOP_ARITH1(evfsnabs);
6403
GEN_SPEOP_ARITH1(evfsneg);
6404
/* Conversion */
6405
GEN_SPEFPUOP_CONV(evfscfui);
6406
GEN_SPEFPUOP_CONV(evfscfsi);
6407
GEN_SPEFPUOP_CONV(evfscfuf);
6408
GEN_SPEFPUOP_CONV(evfscfsf);
6409
GEN_SPEFPUOP_CONV(evfsctui);
6410
GEN_SPEFPUOP_CONV(evfsctsi);
6411
GEN_SPEFPUOP_CONV(evfsctuf);
6412
GEN_SPEFPUOP_CONV(evfsctsf);
6413
GEN_SPEFPUOP_CONV(evfsctuiz);
6414
GEN_SPEFPUOP_CONV(evfsctsiz);
6415
/* Comparison */
6416
GEN_SPEOP_COMP(evfscmpgt);
6417
GEN_SPEOP_COMP(evfscmplt);
6418
GEN_SPEOP_COMP(evfscmpeq);
6419
GEN_SPEOP_COMP(evfststgt);
6420
GEN_SPEOP_COMP(evfststlt);
6421
GEN_SPEOP_COMP(evfststeq);
6422

    
6423
/* Opcodes definitions */
6424
GEN_SPE(evfsadd,        evfssub,       0x00, 0x0A, 0x00000000, PPC_SPEFPU); //
6425
GEN_SPE(evfsabs,        evfsnabs,      0x02, 0x0A, 0x0000F800, PPC_SPEFPU); //
6426
GEN_SPE(evfsneg,        speundef,      0x03, 0x0A, 0x0000F800, PPC_SPEFPU); //
6427
GEN_SPE(evfsmul,        evfsdiv,       0x04, 0x0A, 0x00000000, PPC_SPEFPU); //
6428
GEN_SPE(evfscmpgt,      evfscmplt,     0x06, 0x0A, 0x00600000, PPC_SPEFPU); //
6429
GEN_SPE(evfscmpeq,      speundef,      0x07, 0x0A, 0x00600000, PPC_SPEFPU); //
6430
GEN_SPE(evfscfui,       evfscfsi,      0x08, 0x0A, 0x00180000, PPC_SPEFPU); //
6431
GEN_SPE(evfscfuf,       evfscfsf,      0x09, 0x0A, 0x00180000, PPC_SPEFPU); //
6432
GEN_SPE(evfsctui,       evfsctsi,      0x0A, 0x0A, 0x00180000, PPC_SPEFPU); //
6433
GEN_SPE(evfsctuf,       evfsctsf,      0x0B, 0x0A, 0x00180000, PPC_SPEFPU); //
6434
GEN_SPE(evfsctuiz,      speundef,      0x0C, 0x0A, 0x00180000, PPC_SPEFPU); //
6435
GEN_SPE(evfsctsiz,      speundef,      0x0D, 0x0A, 0x00180000, PPC_SPEFPU); //
6436
GEN_SPE(evfststgt,      evfststlt,     0x0E, 0x0A, 0x00600000, PPC_SPEFPU); //
6437
GEN_SPE(evfststeq,      speundef,      0x0F, 0x0A, 0x00600000, PPC_SPEFPU); //
6438

    
6439
/* Single precision floating-point operations */
6440
/* Arithmetic */
6441
GEN_SPEOP_ARITH2(efsadd);
6442
GEN_SPEOP_ARITH2(efssub);
6443
GEN_SPEOP_ARITH2(efsmul);
6444
GEN_SPEOP_ARITH2(efsdiv);
6445
GEN_SPEOP_ARITH1(efsabs);
6446
GEN_SPEOP_ARITH1(efsnabs);
6447
GEN_SPEOP_ARITH1(efsneg);
6448
/* Conversion */
6449
GEN_SPEFPUOP_CONV(efscfui);
6450
GEN_SPEFPUOP_CONV(efscfsi);
6451
GEN_SPEFPUOP_CONV(efscfuf);
6452
GEN_SPEFPUOP_CONV(efscfsf);
6453
GEN_SPEFPUOP_CONV(efsctui);
6454
GEN_SPEFPUOP_CONV(efsctsi);
6455
GEN_SPEFPUOP_CONV(efsctuf);
6456
GEN_SPEFPUOP_CONV(efsctsf);
6457
GEN_SPEFPUOP_CONV(efsctuiz);
6458
GEN_SPEFPUOP_CONV(efsctsiz);
6459
GEN_SPEFPUOP_CONV(efscfd);
6460
/* Comparison */
6461
GEN_SPEOP_COMP(efscmpgt);
6462
GEN_SPEOP_COMP(efscmplt);
6463
GEN_SPEOP_COMP(efscmpeq);
6464
GEN_SPEOP_COMP(efststgt);
6465
GEN_SPEOP_COMP(efststlt);
6466
GEN_SPEOP_COMP(efststeq);
6467

    
6468
/* Opcodes definitions */
6469
GEN_SPE(efsadd,         efssub,        0x00, 0x0A, 0x00000000, PPC_SPEFPU); //
6470
GEN_SPE(efsabs,         efsnabs,       0x02, 0x0B, 0x0000F800, PPC_SPEFPU); //
6471
GEN_SPE(efsneg,         speundef,      0x03, 0x0B, 0x0000F800, PPC_SPEFPU); //
6472
GEN_SPE(efsmul,         efsdiv,        0x04, 0x0B, 0x00000000, PPC_SPEFPU); //
6473
GEN_SPE(efscmpgt,       efscmplt,      0x06, 0x0B, 0x00600000, PPC_SPEFPU); //
6474
GEN_SPE(efscmpeq,       efscfd,        0x07, 0x0B, 0x00600000, PPC_SPEFPU); //
6475
GEN_SPE(efscfui,        efscfsi,       0x08, 0x0B, 0x00180000, PPC_SPEFPU); //
6476
GEN_SPE(efscfuf,        efscfsf,       0x09, 0x0B, 0x00180000, PPC_SPEFPU); //
6477
GEN_SPE(efsctui,        efsctsi,       0x0A, 0x0B, 0x00180000, PPC_SPEFPU); //
6478
GEN_SPE(efsctuf,        efsctsf,       0x0B, 0x0B, 0x00180000, PPC_SPEFPU); //
6479
GEN_SPE(efsctuiz,       efsctsiz,      0x0C, 0x0B, 0x00180000, PPC_SPEFPU); //
6480
GEN_SPE(efststgt,       efststlt,      0x0E, 0x0B, 0x00600000, PPC_SPEFPU); //
6481
GEN_SPE(efststeq,       speundef,      0x0F, 0x0B, 0x00600000, PPC_SPEFPU); //
6482

    
6483
/* Double precision floating-point operations */
6484
/* Arithmetic */
6485
GEN_SPEOP_ARITH2(efdadd);
6486
GEN_SPEOP_ARITH2(efdsub);
6487
GEN_SPEOP_ARITH2(efdmul);
6488
GEN_SPEOP_ARITH2(efddiv);
6489
GEN_SPEOP_ARITH1(efdabs);
6490
GEN_SPEOP_ARITH1(efdnabs);
6491
GEN_SPEOP_ARITH1(efdneg);
6492
/* Conversion */
6493

    
6494
GEN_SPEFPUOP_CONV(efdcfui);
6495
GEN_SPEFPUOP_CONV(efdcfsi);
6496
GEN_SPEFPUOP_CONV(efdcfuf);
6497
GEN_SPEFPUOP_CONV(efdcfsf);
6498
GEN_SPEFPUOP_CONV(efdctui);
6499
GEN_SPEFPUOP_CONV(efdctsi);
6500
GEN_SPEFPUOP_CONV(efdctuf);
6501
GEN_SPEFPUOP_CONV(efdctsf);
6502
GEN_SPEFPUOP_CONV(efdctuiz);
6503
GEN_SPEFPUOP_CONV(efdctsiz);
6504
GEN_SPEFPUOP_CONV(efdcfs);
6505
GEN_SPEFPUOP_CONV(efdcfuid);
6506
GEN_SPEFPUOP_CONV(efdcfsid);
6507
GEN_SPEFPUOP_CONV(efdctuidz);
6508
GEN_SPEFPUOP_CONV(efdctsidz);
6509
/* Comparison */
6510
GEN_SPEOP_COMP(efdcmpgt);
6511
GEN_SPEOP_COMP(efdcmplt);
6512
GEN_SPEOP_COMP(efdcmpeq);
6513
GEN_SPEOP_COMP(efdtstgt);
6514
GEN_SPEOP_COMP(efdtstlt);
6515
GEN_SPEOP_COMP(efdtsteq);
6516

    
6517
/* Opcodes definitions */
6518
GEN_SPE(efdadd,         efdsub,        0x10, 0x0B, 0x00000000, PPC_SPEFPU); //
6519
GEN_SPE(efdcfuid,       efdcfsid,      0x11, 0x0B, 0x00180000, PPC_SPEFPU); //
6520
GEN_SPE(efdabs,         efdnabs,       0x12, 0x0B, 0x0000F800, PPC_SPEFPU); //
6521
GEN_SPE(efdneg,         speundef,      0x13, 0x0B, 0x0000F800, PPC_SPEFPU); //
6522
GEN_SPE(efdmul,         efddiv,        0x14, 0x0B, 0x00000000, PPC_SPEFPU); //
6523
GEN_SPE(efdctuidz,      efdctsidz,     0x15, 0x0B, 0x00180000, PPC_SPEFPU); //
6524
GEN_SPE(efdcmpgt,       efdcmplt,      0x16, 0x0B, 0x00600000, PPC_SPEFPU); //
6525
GEN_SPE(efdcmpeq,       efdcfs,        0x17, 0x0B, 0x00600000, PPC_SPEFPU); //
6526
GEN_SPE(efdcfui,        efdcfsi,       0x18, 0x0B, 0x00180000, PPC_SPEFPU); //
6527
GEN_SPE(efdcfuf,        efdcfsf,       0x19, 0x0B, 0x00180000, PPC_SPEFPU); //
6528
GEN_SPE(efdctui,        efdctsi,       0x1A, 0x0B, 0x00180000, PPC_SPEFPU); //
6529
GEN_SPE(efdctuf,        efdctsf,       0x1B, 0x0B, 0x00180000, PPC_SPEFPU); //
6530
GEN_SPE(efdctuiz,       speundef,      0x1C, 0x0B, 0x00180000, PPC_SPEFPU); //
6531
GEN_SPE(efdctsiz,       speundef,      0x1D, 0x0B, 0x00180000, PPC_SPEFPU); //
6532
GEN_SPE(efdtstgt,       efdtstlt,      0x1E, 0x0B, 0x00600000, PPC_SPEFPU); //
6533
GEN_SPE(efdtsteq,       speundef,      0x1F, 0x0B, 0x00600000, PPC_SPEFPU); //
6534
#endif
6535

    
6536
/* End opcode list */
6537
GEN_OPCODE_MARK(end);
6538

    
6539
#include "translate_init.c"
6540

    
6541
/*****************************************************************************/
6542
/* Misc PowerPC helpers */
6543
static always_inline uint32_t load_xer (CPUState *env)
6544
{
6545
    return (xer_so << XER_SO) |
6546
        (xer_ov << XER_OV) |
6547
        (xer_ca << XER_CA) |
6548
        (xer_bc << XER_BC) |
6549
        (xer_cmp << XER_CMP);
6550
}
6551

    
6552
void cpu_dump_state (CPUState *env, FILE *f,
6553
                     int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
6554
                     int flags)
6555
{
6556
#if defined(TARGET_PPC64) || 1
6557
#define FILL ""
6558
#define RGPL  4
6559
#define RFPL  4
6560
#else
6561
#define FILL "        "
6562
#define RGPL  8
6563
#define RFPL  4
6564
#endif
6565

    
6566
    int i;
6567

    
6568
    cpu_fprintf(f, "NIP " ADDRX " LR " ADDRX " CTR " ADDRX "\n",
6569
                env->nip, env->lr, env->ctr);
6570
    cpu_fprintf(f, "MSR " REGX FILL " XER %08x      "
6571
#if !defined(NO_TIMER_DUMP)
6572
                "TB %08x %08x "
6573
#if !defined(CONFIG_USER_ONLY)
6574
                "DECR %08x"
6575
#endif
6576
#endif
6577
                "\n",
6578
                do_load_msr(env), load_xer(env)
6579
#if !defined(NO_TIMER_DUMP)
6580
                , cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env)
6581
#if !defined(CONFIG_USER_ONLY)
6582
                , cpu_ppc_load_decr(env)
6583
#endif
6584
#endif
6585
                );
6586
    for (i = 0; i < 32; i++) {
6587
        if ((i & (RGPL - 1)) == 0)
6588
            cpu_fprintf(f, "GPR%02d", i);
6589
        cpu_fprintf(f, " " REGX, (target_ulong)env->gpr[i]);
6590
        if ((i & (RGPL - 1)) == (RGPL - 1))
6591
            cpu_fprintf(f, "\n");
6592
    }
6593
    cpu_fprintf(f, "CR ");
6594
    for (i = 0; i < 8; i++)
6595
        cpu_fprintf(f, "%01x", env->crf[i]);
6596
    cpu_fprintf(f, "  [");
6597
    for (i = 0; i < 8; i++) {
6598
        char a = '-';
6599
        if (env->crf[i] & 0x08)
6600
            a = 'L';
6601
        else if (env->crf[i] & 0x04)
6602
            a = 'G';
6603
        else if (env->crf[i] & 0x02)
6604
            a = 'E';
6605
        cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
6606
    }
6607
    cpu_fprintf(f, " ]             " FILL "RES " REGX "\n", env->reserve);
6608
    for (i = 0; i < 32; i++) {
6609
        if ((i & (RFPL - 1)) == 0)
6610
            cpu_fprintf(f, "FPR%02d", i);
6611
        cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i]));
6612
        if ((i & (RFPL - 1)) == (RFPL - 1))
6613
            cpu_fprintf(f, "\n");
6614
    }
6615
#if !defined(CONFIG_USER_ONLY)
6616
    cpu_fprintf(f, "SRR0 " REGX " SRR1 " REGX "         " FILL FILL FILL
6617
                "SDR1 " REGX "\n",
6618
                env->spr[SPR_SRR0], env->spr[SPR_SRR1], env->sdr1);
6619
#endif
6620

    
6621
#undef RGPL
6622
#undef RFPL
6623
#undef FILL
6624
}
6625

    
6626
void cpu_dump_statistics (CPUState *env, FILE*f,
6627
                          int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
6628
                          int flags)
6629
{
6630
#if defined(DO_PPC_STATISTICS)
6631
    opc_handler_t **t1, **t2, **t3, *handler;
6632
    int op1, op2, op3;
6633

    
6634
    t1 = env->opcodes;
6635
    for (op1 = 0; op1 < 64; op1++) {
6636
        handler = t1[op1];
6637
        if (is_indirect_opcode(handler)) {
6638
            t2 = ind_table(handler);
6639
            for (op2 = 0; op2 < 32; op2++) {
6640
                handler = t2[op2];
6641
                if (is_indirect_opcode(handler)) {
6642
                    t3 = ind_table(handler);
6643
                    for (op3 = 0; op3 < 32; op3++) {
6644
                        handler = t3[op3];
6645
                        if (handler->count == 0)
6646
                            continue;
6647
                        cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
6648
                                    "%016llx %lld\n",
6649
                                    op1, op2, op3, op1, (op3 << 5) | op2,
6650
                                    handler->oname,
6651
                                    handler->count, handler->count);
6652
                    }
6653
                } else {
6654
                    if (handler->count == 0)
6655
                        continue;
6656
                    cpu_fprintf(f, "%02x %02x    (%02x %04d) %16s: "
6657
                                "%016llx %lld\n",
6658
                                op1, op2, op1, op2, handler->oname,
6659
                                handler->count, handler->count);
6660
                }
6661
            }
6662
        } else {
6663
            if (handler->count == 0)
6664
                continue;
6665
            cpu_fprintf(f, "%02x       (%02x     ) %16s: %016llx %lld\n",
6666
                        op1, op1, handler->oname,
6667
                        handler->count, handler->count);
6668
        }
6669
    }
6670
#endif
6671
}
6672

    
6673
/*****************************************************************************/
6674
static always_inline int gen_intermediate_code_internal (CPUState *env,
6675
                                                         TranslationBlock *tb,
6676
                                                         int search_pc)
6677
{
6678
    DisasContext ctx, *ctxp = &ctx;
6679
    opc_handler_t **table, *handler;
6680
    target_ulong pc_start;
6681
    uint16_t *gen_opc_end;
6682
    int supervisor;
6683
    int single_step, branch_step;
6684
    int j, lj = -1;
6685

    
6686
    pc_start = tb->pc;
6687
    gen_opc_ptr = gen_opc_buf;
6688
    gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
6689
    gen_opparam_ptr = gen_opparam_buf;
6690
    nb_gen_labels = 0;
6691
    ctx.nip = pc_start;
6692
    ctx.tb = tb;
6693
    ctx.exception = POWERPC_EXCP_NONE;
6694
    ctx.spr_cb = env->spr_cb;
6695
#if defined(CONFIG_USER_ONLY)
6696
    supervisor = 0;
6697
#else
6698
#if defined(TARGET_PPC64H)
6699
    if (msr_pr == 0 && msr_hv == 1)
6700
        supervisor = 2;
6701
    else
6702
#endif
6703
        supervisor = 1 - msr_pr;
6704
    ctx.supervisor = supervisor;
6705
#endif
6706
#if defined(TARGET_PPC64)
6707
    ctx.sf_mode = msr_sf;
6708
    ctx.mem_idx = (supervisor << 2) | (msr_sf << 1) | msr_le;
6709
#else
6710
    ctx.mem_idx = (supervisor << 1) | msr_le;
6711
#endif
6712
    ctx.dcache_line_size = env->dcache_line_size;
6713
    ctx.fpu_enabled = msr_fp;
6714
#if defined(TARGET_PPCEMB)
6715
    if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
6716
        ctx.spe_enabled = msr_spe;
6717
    else
6718
        ctx.spe_enabled = 0;
6719
#endif
6720
    if ((env->flags & POWERPC_FLAG_VRE) && msr_vr)
6721
        ctx.altivec_enabled = msr_vr;
6722
    else
6723
        ctx.altivec_enabled = 0;
6724
    if ((env->flags & POWERPC_FLAG_SE) && msr_se)
6725
        single_step = 1;
6726
    else
6727
        single_step = 0;
6728
    if ((env->flags & POWERPC_FLAG_BE) && msr_be)
6729
        branch_step = 1;
6730
    else
6731
        branch_step = 0;
6732
    ctx.singlestep_enabled = env->singlestep_enabled || single_step == 1;
6733
#if defined (DO_SINGLE_STEP) && 0
6734
    /* Single step trace mode */
6735
    msr_se = 1;
6736
#endif
6737
    /* Set env in case of segfault during code fetch */
6738
    while (ctx.exception == POWERPC_EXCP_NONE && gen_opc_ptr < gen_opc_end) {
6739
        if (unlikely(env->nb_breakpoints > 0)) {
6740
            for (j = 0; j < env->nb_breakpoints; j++) {
6741
                if (env->breakpoints[j] == ctx.nip) {
6742
                    gen_update_nip(&ctx, ctx.nip);
6743
                    gen_op_debug();
6744
                    break;
6745
                }
6746
            }
6747
        }
6748
        if (unlikely(search_pc)) {
6749
            j = gen_opc_ptr - gen_opc_buf;
6750
            if (lj < j) {
6751
                lj++;
6752
                while (lj < j)
6753
                    gen_opc_instr_start[lj++] = 0;
6754
                gen_opc_pc[lj] = ctx.nip;
6755
                gen_opc_instr_start[lj] = 1;
6756
            }
6757
        }
6758
#if defined PPC_DEBUG_DISAS
6759
        if (loglevel & CPU_LOG_TB_IN_ASM) {
6760
            fprintf(logfile, "----------------\n");
6761
            fprintf(logfile, "nip=" ADDRX " super=%d ir=%d\n",
6762
                    ctx.nip, 1 - msr_pr, msr_ir);
6763
        }
6764
#endif
6765
        ctx.opcode = ldl_code(ctx.nip);
6766
        if (msr_le) {
6767
            ctx.opcode = ((ctx.opcode & 0xFF000000) >> 24) |
6768
                ((ctx.opcode & 0x00FF0000) >> 8) |
6769
                ((ctx.opcode & 0x0000FF00) << 8) |
6770
                ((ctx.opcode & 0x000000FF) << 24);
6771
        }
6772
#if defined PPC_DEBUG_DISAS
6773
        if (loglevel & CPU_LOG_TB_IN_ASM) {
6774
            fprintf(logfile, "translate opcode %08x (%02x %02x %02x) (%s)\n",
6775
                    ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
6776
                    opc3(ctx.opcode), msr_le ? "little" : "big");
6777
        }
6778
#endif
6779
        ctx.nip += 4;
6780
        table = env->opcodes;
6781
        handler = table[opc1(ctx.opcode)];
6782
        if (is_indirect_opcode(handler)) {
6783
            table = ind_table(handler);
6784
            handler = table[opc2(ctx.opcode)];
6785
            if (is_indirect_opcode(handler)) {
6786
                table = ind_table(handler);
6787
                handler = table[opc3(ctx.opcode)];
6788
            }
6789
        }
6790
        /* Is opcode *REALLY* valid ? */
6791
        if (unlikely(handler->handler == &gen_invalid)) {
6792
            if (loglevel != 0) {
6793
                fprintf(logfile, "invalid/unsupported opcode: "
6794
                        "%02x - %02x - %02x (%08x) 0x" ADDRX " %d\n",
6795
                        opc1(ctx.opcode), opc2(ctx.opcode),
6796
                        opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, msr_ir);
6797
            } else {
6798
                printf("invalid/unsupported opcode: "
6799
                       "%02x - %02x - %02x (%08x) 0x" ADDRX " %d\n",
6800
                       opc1(ctx.opcode), opc2(ctx.opcode),
6801
                       opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, msr_ir);
6802
            }
6803
        } else {
6804
            if (unlikely((ctx.opcode & handler->inval) != 0)) {
6805
                if (loglevel != 0) {
6806
                    fprintf(logfile, "invalid bits: %08x for opcode: "
6807
                            "%02x - %02x - %02x (%08x) 0x" ADDRX "\n",
6808
                            ctx.opcode & handler->inval, opc1(ctx.opcode),
6809
                            opc2(ctx.opcode), opc3(ctx.opcode),
6810
                            ctx.opcode, ctx.nip - 4);
6811
                } else {
6812
                    printf("invalid bits: %08x for opcode: "
6813
                           "%02x - %02x - %02x (%08x) 0x" ADDRX "\n",
6814
                           ctx.opcode & handler->inval, opc1(ctx.opcode),
6815
                           opc2(ctx.opcode), opc3(ctx.opcode),
6816
                           ctx.opcode, ctx.nip - 4);
6817
                }
6818
                GEN_EXCP_INVAL(ctxp);
6819
                break;
6820
            }
6821
        }
6822
        (*(handler->handler))(&ctx);
6823
#if defined(DO_PPC_STATISTICS)
6824
        handler->count++;
6825
#endif
6826
        /* Check trace mode exceptions */
6827
        if (unlikely(branch_step != 0 &&
6828
                     ctx.exception == POWERPC_EXCP_BRANCH)) {
6829
            GEN_EXCP(ctxp, POWERPC_EXCP_TRACE, 0);
6830
        } else if (unlikely(single_step != 0 &&
6831
                            (ctx.nip <= 0x100 || ctx.nip > 0xF00 ||
6832
                             (ctx.nip & 0xFC) != 0x04) &&
6833
#if defined(CONFIG_USER_ONLY)
6834
                            ctx.exception != POWERPC_EXCP_SYSCALL_USER &&
6835
#else
6836
                            ctx.exception != POWERPC_EXCP_SYSCALL &&
6837
#endif
6838
                            ctx.exception != POWERPC_EXCP_TRAP)) {
6839
            GEN_EXCP(ctxp, POWERPC_EXCP_TRACE, 0);
6840
        } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) ||
6841
                            (env->singlestep_enabled))) {
6842
            /* if we reach a page boundary or are single stepping, stop
6843
             * generation
6844
             */
6845
            break;
6846
        }
6847
#if defined (DO_SINGLE_STEP)
6848
        break;
6849
#endif
6850
    }
6851
    if (ctx.exception == POWERPC_EXCP_NONE) {
6852
        gen_goto_tb(&ctx, 0, ctx.nip);
6853
    } else if (ctx.exception != POWERPC_EXCP_BRANCH) {
6854
        gen_op_reset_T0();
6855
        /* Generate the return instruction */
6856
        gen_op_exit_tb();
6857
    }
6858
    *gen_opc_ptr = INDEX_op_end;
6859
    if (unlikely(search_pc)) {
6860
        j = gen_opc_ptr - gen_opc_buf;
6861
        lj++;
6862
        while (lj <= j)
6863
            gen_opc_instr_start[lj++] = 0;
6864
    } else {
6865
        tb->size = ctx.nip - pc_start;
6866
    }
6867
#if defined(DEBUG_DISAS)
6868
    if (loglevel & CPU_LOG_TB_CPU) {
6869
        fprintf(logfile, "---------------- excp: %04x\n", ctx.exception);
6870
        cpu_dump_state(env, logfile, fprintf, 0);
6871
    }
6872
    if (loglevel & CPU_LOG_TB_IN_ASM) {
6873
        int flags;
6874
        flags = env->bfd_mach;
6875
        flags |= msr_le << 16;
6876
        fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
6877
        target_disas(logfile, pc_start, ctx.nip - pc_start, flags);
6878
        fprintf(logfile, "\n");
6879
    }
6880
    if (loglevel & CPU_LOG_TB_OP) {
6881
        fprintf(logfile, "OP:\n");
6882
        dump_ops(gen_opc_buf, gen_opparam_buf);
6883
        fprintf(logfile, "\n");
6884
    }
6885
#endif
6886
    return 0;
6887
}
6888

    
6889
int gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
6890
{
6891
    return gen_intermediate_code_internal(env, tb, 0);
6892
}
6893

    
6894
int gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
6895
{
6896
    return gen_intermediate_code_internal(env, tb, 1);
6897
}