Statistics
| Branch: | Revision:

root / target-ppc / exec.h @ 7863667f

History | View | Annotate | Download (3.5 kB)

1 79aceca5 bellard
/*
2 3fc6c082 bellard
 *  PowerPC emulation definitions for qemu.
3 5fafdf24 ths
 *
4 76a66253 j_mayer
 *  Copyright (c) 2003-2007 Jocelyn Mayer
5 79aceca5 bellard
 *
6 79aceca5 bellard
 * This library is free software; you can redistribute it and/or
7 79aceca5 bellard
 * modify it under the terms of the GNU Lesser General Public
8 79aceca5 bellard
 * License as published by the Free Software Foundation; either
9 79aceca5 bellard
 * version 2 of the License, or (at your option) any later version.
10 79aceca5 bellard
 *
11 79aceca5 bellard
 * This library is distributed in the hope that it will be useful,
12 79aceca5 bellard
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 79aceca5 bellard
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 79aceca5 bellard
 * Lesser General Public License for more details.
15 79aceca5 bellard
 *
16 79aceca5 bellard
 * You should have received a copy of the GNU Lesser General Public
17 79aceca5 bellard
 * License along with this library; if not, write to the Free Software
18 79aceca5 bellard
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 79aceca5 bellard
 */
20 79aceca5 bellard
#if !defined (__PPC_H__)
21 79aceca5 bellard
#define __PPC_H__
22 79aceca5 bellard
23 fdabc366 bellard
#include "config.h"
24 fdabc366 bellard
25 79aceca5 bellard
#include "dyngen-exec.h"
26 79aceca5 bellard
27 76a66253 j_mayer
#include "cpu.h"
28 76a66253 j_mayer
#include "exec-all.h"
29 fdabc366 bellard
30 e864cabd j_mayer
/* For normal operations, precise emulation should not be needed */
31 e864cabd j_mayer
//#define USE_PRECISE_EMULATION 1
32 e864cabd j_mayer
#define USE_PRECISE_EMULATION 0
33 e864cabd j_mayer
34 79aceca5 bellard
register struct CPUPPCState *env asm(AREG0);
35 76a66253 j_mayer
#if TARGET_LONG_BITS > HOST_LONG_BITS
36 76a66253 j_mayer
/* no registers can be used */
37 76a66253 j_mayer
#define T0 (env->t0)
38 76a66253 j_mayer
#define T1 (env->t1)
39 76a66253 j_mayer
#define T2 (env->t2)
40 76a66253 j_mayer
#else
41 76a66253 j_mayer
register unsigned long T0 asm(AREG1);
42 76a66253 j_mayer
register unsigned long T1 asm(AREG2);
43 76a66253 j_mayer
register unsigned long T2 asm(AREG3);
44 76a66253 j_mayer
#endif
45 57c26279 j_mayer
/* We may, sometime, need 64 bits registers on 32 bits targets */
46 57c26279 j_mayer
#if (HOST_LONG_BITS == 32)
47 d9bce9d9 j_mayer
/* no registers can be used */
48 d9bce9d9 j_mayer
#define T0_64 (env->t0)
49 d9bce9d9 j_mayer
#define T1_64 (env->t1)
50 d9bce9d9 j_mayer
#define T2_64 (env->t2)
51 3c4c9f9f ths
#else
52 3c4c9f9f ths
#define T0_64 T0
53 3c4c9f9f ths
#define T1_64 T1
54 3c4c9f9f ths
#define T2_64 T2
55 76a66253 j_mayer
#endif
56 d9bce9d9 j_mayer
/* Provision for Altivec */
57 a9d9eb8f j_mayer
#define AVR0 (env->avr0)
58 a9d9eb8f j_mayer
#define AVR1 (env->avr1)
59 a9d9eb8f j_mayer
#define AVR2 (env->avr2)
60 79aceca5 bellard
61 fb0eaffc bellard
#define FT0 (env->ft0)
62 fb0eaffc bellard
#define FT1 (env->ft1)
63 fb0eaffc bellard
#define FT2 (env->ft2)
64 79aceca5 bellard
65 a541f297 bellard
#if defined (DEBUG_OP)
66 70ead434 ths
# define RETURN() __asm__ __volatile__("nop" : : : "memory");
67 a541f297 bellard
#else
68 70ead434 ths
# define RETURN() __asm__ __volatile__("" : : : "memory");
69 a541f297 bellard
#endif
70 79aceca5 bellard
71 b068d6a7 j_mayer
static always_inline target_ulong rotl8 (target_ulong i, int n)
72 76a66253 j_mayer
{
73 76a66253 j_mayer
    return (((uint8_t)i << n) | ((uint8_t)i >> (8 - n)));
74 76a66253 j_mayer
}
75 76a66253 j_mayer
76 b068d6a7 j_mayer
static always_inline target_ulong rotl16 (target_ulong i, int n)
77 76a66253 j_mayer
{
78 76a66253 j_mayer
    return (((uint16_t)i << n) | ((uint16_t)i >> (16 - n)));
79 76a66253 j_mayer
}
80 79aceca5 bellard
81 b068d6a7 j_mayer
static always_inline target_ulong rotl32 (target_ulong i, int n)
82 79aceca5 bellard
{
83 76a66253 j_mayer
    return (((uint32_t)i << n) | ((uint32_t)i >> (32 - n)));
84 79aceca5 bellard
}
85 79aceca5 bellard
86 76a66253 j_mayer
#if defined(TARGET_PPC64)
87 b068d6a7 j_mayer
static always_inline target_ulong rotl64 (target_ulong i, int n)
88 76a66253 j_mayer
{
89 76a66253 j_mayer
    return (((uint64_t)i << n) | ((uint64_t)i >> (64 - n)));
90 76a66253 j_mayer
}
91 76a66253 j_mayer
#endif
92 76a66253 j_mayer
93 9a64fbe4 bellard
#if !defined(CONFIG_USER_ONLY)
94 a9049a07 bellard
#include "softmmu_exec.h"
95 9a64fbe4 bellard
#endif /* !defined(CONFIG_USER_ONLY) */
96 79aceca5 bellard
97 9fddaa0c bellard
void do_raise_exception_err (uint32_t exception, int error_code);
98 9fddaa0c bellard
void do_raise_exception (uint32_t exception);
99 79aceca5 bellard
100 76a66253 j_mayer
int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong vaddr,
101 faadf50e j_mayer
                          int rw, int access_type);
102 79aceca5 bellard
103 76a66253 j_mayer
void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
104 76a66253 j_mayer
                       target_ulong pte0, target_ulong pte1);
105 9a64fbe4 bellard
106 b068d6a7 j_mayer
static always_inline void env_to_regs (void)
107 0d1a29f9 bellard
{
108 0d1a29f9 bellard
}
109 0d1a29f9 bellard
110 b068d6a7 j_mayer
static always_inline void regs_to_env (void)
111 0d1a29f9 bellard
{
112 0d1a29f9 bellard
}
113 0d1a29f9 bellard
114 76a66253 j_mayer
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
115 6ebbf390 j_mayer
                              int mmu_idx, int is_softmmu);
116 0fa85d43 bellard
117 b068d6a7 j_mayer
static always_inline int cpu_halted (CPUState *env)
118 36081602 j_mayer
{
119 bfed01fc ths
    if (!env->halted)
120 bfed01fc ths
        return 0;
121 0411a972 j_mayer
    if (msr_ee && (env->interrupt_request & CPU_INTERRUPT_HARD)) {
122 bfed01fc ths
        env->halted = 0;
123 bfed01fc ths
        return 0;
124 bfed01fc ths
    }
125 bfed01fc ths
    return EXCP_HALTED;
126 bfed01fc ths
}
127 bfed01fc ths
128 79aceca5 bellard
#endif /* !defined (__PPC_H__) */