Statistics
| Branch: | Revision:

root / target-ppc / exec.h @ 1e6784f9

History | View | Annotate | Download (3.8 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 d9bce9d9 j_mayer
/* We may, sometime, need 64 bits registers on 32 bits target */
46 3c4c9f9f ths
#if TARGET_GPR_BITS > HOST_LONG_BITS
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 d9bce9d9 j_mayer
#define T0_avr (env->t0_avr)
58 d9bce9d9 j_mayer
#define T1_avr (env->t1_avr)
59 d9bce9d9 j_mayer
#define T2_avr (env->t2_avr)
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 76a66253 j_mayer
static 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 76a66253 j_mayer
static 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 76a66253 j_mayer
static 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 76a66253 j_mayer
static 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 76a66253 j_mayer
                          int rw, int access_type, int check_BATs);
102 79aceca5 bellard
103 76a66253 j_mayer
void ppc6xx_tlb_invalidate_all (CPUState *env);
104 76a66253 j_mayer
void ppc6xx_tlb_invalidate_virt (CPUState *env, target_ulong eaddr,
105 76a66253 j_mayer
                                 int is_code);
106 76a66253 j_mayer
void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
107 76a66253 j_mayer
                       target_ulong pte0, target_ulong pte1);
108 8ecc7913 j_mayer
void ppc4xx_tlb_invalidate_all (CPUState *env);
109 a750fc0b j_mayer
void ppc4xx_tlb_invalidate_virt (CPUState *env, target_ulong eaddr,
110 a750fc0b j_mayer
                                 uint32_t pid);
111 9a64fbe4 bellard
112 36081602 j_mayer
static inline void env_to_regs (void)
113 0d1a29f9 bellard
{
114 0d1a29f9 bellard
}
115 0d1a29f9 bellard
116 36081602 j_mayer
static inline void regs_to_env (void)
117 0d1a29f9 bellard
{
118 0d1a29f9 bellard
}
119 0d1a29f9 bellard
120 76a66253 j_mayer
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
121 0fa85d43 bellard
                              int is_user, int is_softmmu);
122 0fa85d43 bellard
123 36081602 j_mayer
static inline int cpu_halted (CPUState *env)
124 36081602 j_mayer
{
125 bfed01fc ths
    if (!env->halted)
126 bfed01fc ths
        return 0;
127 bfed01fc ths
    if (env->msr[MSR_EE] && (env->interrupt_request & CPU_INTERRUPT_HARD)) {
128 bfed01fc ths
        env->halted = 0;
129 bfed01fc ths
        return 0;
130 bfed01fc ths
    }
131 bfed01fc ths
    return EXCP_HALTED;
132 bfed01fc ths
}
133 bfed01fc ths
134 79aceca5 bellard
#endif /* !defined (__PPC_H__) */