Statistics
| Branch: | Revision:

root / target-ppc / op_helper.c @ d720b93d

History | View | Annotate | Download (9.1 kB)

1
/*
2
 *  PPC emulation helpers for qemu.
3
 * 
4
 *  Copyright (c) 2003 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 <math.h>
21
#include "exec.h"
22

    
23
#define MEMSUFFIX _raw
24
#include "op_helper_mem.h"
25
#if !defined(CONFIG_USER_ONLY)
26
#define MEMSUFFIX _user
27
#include "op_helper_mem.h"
28
#define MEMSUFFIX _kernel
29
#include "op_helper_mem.h"
30
#endif
31

    
32
/*****************************************************************************/
33
/* Exceptions processing helpers */
34
void do_queue_exception_err (uint32_t exception, int error_code)
35
{
36
    /* Queue real PPC exceptions */
37
    if (exception < EXCP_PPC_MAX) {
38
        env->exceptions |= 1 << exception;
39
        env->errors[exception] = error_code;
40
    } else {
41
        /* Preserve compatibility with qemu core */
42
        env->exceptions |= 1;
43
        env->exception_index = exception;
44
        env->error_code = error_code;
45
    }
46
}
47

    
48
void do_queue_exception (uint32_t exception)
49
{
50
    do_queue_exception_err(exception, 0);
51
}
52

    
53
void do_check_exception_state (void)
54
{
55
    if ((env->exceptions & 1) == 1 || check_exception_state(env)) {
56
        env->exceptions &= ~1;
57
        cpu_loop_exit();
58
    }
59
}
60

    
61
/*****************************************************************************/
62
/* Helpers for "fat" micro operations */
63
/* Special registers load and store */
64
void do_load_cr (void)
65
{
66
    T0 = (env->crf[0] << 28) |
67
        (env->crf[1] << 24) |
68
        (env->crf[2] << 20) |
69
        (env->crf[3] << 16) |
70
        (env->crf[4] << 12) |
71
        (env->crf[5] << 8) |
72
        (env->crf[6] << 4) |
73
        (env->crf[7] << 0);
74
}
75

    
76
void do_store_cr (uint32_t mask)
77
{
78
    int i, sh;
79

    
80
    for (i = 0, sh = 7; i < 8; i++, sh --) {
81
        if (mask & (1 << sh))
82
            env->crf[i] = (T0 >> (sh * 4)) & 0xF;
83
    }
84
}
85

    
86
void do_load_xer (void)
87
{
88
    T0 = (xer_so << XER_SO) |
89
        (xer_ov << XER_OV) |
90
        (xer_ca << XER_CA) |
91
        (xer_bc << XER_BC);
92
}
93

    
94
void do_store_xer (void)
95
{
96
    xer_so = (T0 >> XER_SO) & 0x01;
97
    xer_ov = (T0 >> XER_OV) & 0x01;
98
    xer_ca = (T0 >> XER_CA) & 0x01;
99
    xer_bc = (T0 >> XER_BC) & 0x1f;
100
}
101

    
102
void do_load_msr (void)
103
{
104
    T0 = (msr_pow << MSR_POW) |
105
        (msr_ile << MSR_ILE) |
106
        (msr_ee << MSR_EE) |
107
        (msr_pr << MSR_PR) |
108
        (msr_fp << MSR_FP) |
109
        (msr_me << MSR_ME) |
110
        (msr_fe0 << MSR_FE0) |
111
        (msr_se << MSR_SE) |
112
        (msr_be << MSR_BE) |
113
        (msr_fe1 << MSR_FE1) |
114
        (msr_ip << MSR_IP) |
115
        (msr_ir << MSR_IR) |
116
        (msr_dr << MSR_DR) |
117
        (msr_ri << MSR_RI) |
118
        (msr_le << MSR_LE);
119
}
120

    
121
void do_store_msr (void)
122
{
123
    if (((T0 >> MSR_IR) & 0x01) != msr_ir ||
124
        ((T0 >> MSR_DR) & 0x01) != msr_dr) {
125
        /* Flush all tlb when changing translation mode or privilege level */
126
        do_tlbia();
127
    }
128
#if 0
129
    if ((T0 >> MSR_IP) & 0x01) {
130
        printf("Halting CPU. Stop emulation\n");
131
        do_queue_exception(EXCP_HLT);
132
        cpu_loop_exit();
133
    }
134
#endif
135
    msr_pow = (T0 >> MSR_POW) & 0x03;
136
    msr_ile = (T0 >> MSR_ILE) & 0x01;
137
    msr_ee = (T0 >> MSR_EE) & 0x01;
138
    msr_pr = (T0 >> MSR_PR) & 0x01;
139
    msr_fp = (T0 >> MSR_FP) & 0x01;
140
    msr_me = (T0 >> MSR_ME) & 0x01;
141
    msr_fe0 = (T0 >> MSR_FE0) & 0x01;
142
    msr_se = (T0 >> MSR_SE) & 0x01;
143
    msr_be = (T0 >> MSR_BE) & 0x01;
144
    msr_fe1 = (T0 >> MSR_FE1) & 0x01;
145
    msr_ip = (T0 >> MSR_IP) & 0x01;
146
    msr_ir = (T0 >> MSR_IR) & 0x01;
147
    msr_dr = (T0 >> MSR_DR) & 0x01;
148
    msr_ri = (T0 >> MSR_RI) & 0x01;
149
    msr_le = (T0 >> MSR_LE) & 0x01;
150
}
151

    
152
/* shift right arithmetic helper */
153
void do_sraw (void)
154
{
155
    int32_t ret;
156

    
157
    xer_ca = 0;
158
    if (T1 & 0x20) {
159
        ret = (-1) * (T0 >> 31);
160
        if (ret < 0)
161
            xer_ca = 1;
162
    } else {
163
        ret = (int32_t)T0 >> (T1 & 0x1f);
164
        if (ret < 0 && ((int32_t)T0 & ((1 << T1) - 1)) != 0)
165
            xer_ca = 1;
166
    }
167
    (int32_t)T0 = ret;
168
}
169

    
170
/* Floating point operations helpers */
171
void do_load_fpscr (void)
172
{
173
    /* The 32 MSB of the target fpr are undefined.
174
     * They'll be zero...
175
     */
176
    union {
177
        double d;
178
        struct {
179
            uint32_t u[2];
180
        } s;
181
    } u;
182
    int i;
183

    
184
    u.s.u[0] = 0;
185
    u.s.u[1] = 0;
186
    for (i = 0; i < 8; i++)
187
        u.s.u[1] |= env->fpscr[i] << (4 * i);
188
    FT0 = u.d;
189
}
190

    
191
void do_store_fpscr (uint32_t mask)
192
{
193
    /*
194
     * We use only the 32 LSB of the incoming fpr
195
     */
196
    union {
197
        double d;
198
        struct {
199
            uint32_t u[2];
200
        } s;
201
    } u;
202
    int i;
203

    
204
    u.d = FT0;
205
    if (mask & 0x80)
206
        env->fpscr[0] = (env->fpscr[0] & 0x9) | ((u.s.u[1] >> 28) & ~0x9);
207
    for (i = 1; i < 7; i++) {
208
        if (mask & (1 << (7 - i)))
209
            env->fpscr[i] = (u.s.u[1] >> (4 * (7 - i))) & 0xF;
210
    }
211
    /* TODO: update FEX & VX */
212
    /* Set rounding mode */
213
    switch (env->fpscr[0] & 0x3) {
214
    case 0:
215
        /* Best approximation (round to nearest) */
216
        fesetround(FE_TONEAREST);
217
        break;
218
    case 1:
219
        /* Smaller magnitude (round toward zero) */
220
        fesetround(FE_TOWARDZERO);
221
        break;
222
    case 2:
223
        /* Round toward +infinite */
224
        fesetround(FE_UPWARD);
225
        break;
226
    case 3:
227
        /* Round toward -infinite */
228
        fesetround(FE_DOWNWARD);
229
        break;
230
    }
231
}
232

    
233
void do_fctiw (void)
234
{
235
    union {
236
        double d;
237
        uint64_t i;
238
    } *p = (void *)&FT1;
239

    
240
    if (FT0 > (double)0x7FFFFFFF)
241
        p->i = 0x7FFFFFFFULL << 32;
242
    else if (FT0 < -(double)0x80000000)
243
        p->i = 0x80000000ULL << 32;
244
    else
245
        p->i = 0;
246
    p->i |= (uint32_t)FT0;
247
    FT0 = p->d;
248
}
249

    
250
void do_fctiwz (void)
251
{
252
    union {
253
        double d;
254
        uint64_t i;
255
    } *p = (void *)&FT1;
256
    int cround = fegetround();
257

    
258
    fesetround(FE_TOWARDZERO);
259
    if (FT0 > (double)0x7FFFFFFF)
260
        p->i = 0x7FFFFFFFULL << 32;
261
    else if (FT0 < -(double)0x80000000)
262
        p->i = 0x80000000ULL << 32;
263
    else
264
        p->i = 0;
265
    p->i |= (uint32_t)FT0;
266
    FT0 = p->d;
267
    fesetround(cround);
268
}
269

    
270
void do_fsqrt (void)
271
{
272
    FT0 = sqrt(FT0);
273
}
274

    
275
void do_fsqrts (void)
276
{
277
    FT0 = (float)sqrt((float)FT0);
278
}
279

    
280
void do_fres (void)
281
{
282
    FT0 = 1.0 / FT0;
283
}
284

    
285
void do_fsqrte (void)
286
{
287
    FT0 = 1.0 / sqrt(FT0);
288
}
289

    
290
void do_fsel (void)
291
{
292
    if (FT0 >= 0)
293
        FT0 = FT2;
294
    else
295
        FT0 = FT1;
296
}
297

    
298
void do_fcmpu (void)
299
{
300
    env->fpscr[4] &= ~0x1;
301
    if (isnan(FT0) || isnan(FT1)) {
302
        T0 = 0x01;
303
        env->fpscr[4] |= 0x1;
304
        env->fpscr[6] |= 0x1;
305
    } else if (FT0 < FT1) {
306
        T0 = 0x08;
307
    } else if (FT0 > FT1) {
308
        T0 = 0x04;
309
    } else {
310
        T0 = 0x02;
311
    }
312
    env->fpscr[3] |= T0;
313
}
314

    
315
void do_fcmpo (void)
316
{
317
    env->fpscr[4] &= ~0x1;
318
    if (isnan(FT0) || isnan(FT1)) {
319
        T0 = 0x01;
320
        env->fpscr[4] |= 0x1;
321
        /* I don't know how to test "quiet" nan... */
322
        if (0 /* || ! quiet_nan(...) */) {
323
            env->fpscr[6] |= 0x1;
324
            if (!(env->fpscr[1] & 0x8))
325
                env->fpscr[4] |= 0x8;
326
        } else {
327
            env->fpscr[4] |= 0x8;
328
        }
329
    } else if (FT0 < FT1) {
330
        T0 = 0x08;
331
    } else if (FT0 > FT1) {
332
        T0 = 0x04;
333
    } else {
334
        T0 = 0x02;
335
    }
336
    env->fpscr[3] |= T0;
337
}
338

    
339
void do_fabs (void)
340
{
341
    FT0 = fabsl(FT0);
342
}
343

    
344
void do_fnabs (void)
345
{
346
    FT0 = -fabsl(FT0);
347
}
348

    
349
/* Instruction cache invalidation helper */
350
#define ICACHE_LINE_SIZE 32
351

    
352
void do_icbi (void)
353
{
354
    /* Invalidate one cache line */
355
    T0 &= ~(ICACHE_LINE_SIZE - 1);
356
    tb_invalidate_page_range(T0, T0 + ICACHE_LINE_SIZE);
357
}
358

    
359
/* TLB invalidation helpers */
360
void do_tlbia (void)
361
{
362
    tlb_flush(env, 1);
363
}
364

    
365
void do_tlbie (void)
366
{
367
    tlb_flush_page(env, T0);
368
}
369

    
370
/*****************************************************************************/
371
/* Special helpers for debug */
372
extern FILE *stdout;
373

    
374
void dump_state (void)
375
{
376
    cpu_ppc_dump_state(env, stdout, 0);
377
}
378

    
379
void dump_rfi (void)
380
{
381
#if 0
382
    printf("Return from interrupt %d => 0x%08x\n", pos, env->nip);
383
    //    cpu_ppc_dump_state(env, stdout, 0);
384
#endif
385
}
386

    
387
void dump_store_sr (int srnum)
388
{
389
#if 0
390
    printf("%s: reg=%d 0x%08x\n", __func__, srnum, T0);
391
#endif
392
}
393

    
394
static void _dump_store_bat (char ID, int ul, int nr)
395
{
396
    printf("Set %cBAT%d%c to 0x%08x (0x%08x)\n",
397
           ID, nr, ul == 0 ? 'u' : 'l', T0, env->nip);
398
}
399

    
400
void dump_store_ibat (int ul, int nr)
401
{
402
    _dump_store_bat('I', ul, nr);
403
}
404

    
405
void dump_store_dbat (int ul, int nr)
406
{
407
    _dump_store_bat('D', ul, nr);
408
}
409

    
410
void dump_store_tb (int ul)
411
{
412
    printf("Set TB%c to 0x%08x\n", ul == 0 ? 'L' : 'U', T0);
413
}
414

    
415
void dump_update_tb(uint32_t param)
416
{
417
#if 0
418
    printf("Update TB: 0x%08x + %d => 0x%08x\n", T1, param, T0);
419
#endif
420
}
421