Statistics
| Branch: | Revision:

root / target-ppc / exec.h @ 3c4c9f9f

History | View | Annotate | Download (3.8 kB)

1 79aceca5 bellard
/*
2 3fc6c082 bellard
 *  PowerPC emulation definitions for qemu.
3 79aceca5 bellard
 * 
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 76a66253 j_mayer
/* XXX: to clean: remove this mess */
62 79aceca5 bellard
#define PARAM(n) ((uint32_t)PARAM##n)
63 79aceca5 bellard
#define SPARAM(n) ((int32_t)PARAM##n)
64 76a66253 j_mayer
65 fb0eaffc bellard
#define FT0 (env->ft0)
66 fb0eaffc bellard
#define FT1 (env->ft1)
67 fb0eaffc bellard
#define FT2 (env->ft2)
68 79aceca5 bellard
69 a541f297 bellard
#if defined (DEBUG_OP)
70 70ead434 ths
# define RETURN() __asm__ __volatile__("nop" : : : "memory");
71 a541f297 bellard
#else
72 70ead434 ths
# define RETURN() __asm__ __volatile__("" : : : "memory");
73 a541f297 bellard
#endif
74 79aceca5 bellard
75 76a66253 j_mayer
static inline target_ulong rotl8 (target_ulong i, int n)
76 76a66253 j_mayer
{
77 76a66253 j_mayer
    return (((uint8_t)i << n) | ((uint8_t)i >> (8 - n)));
78 76a66253 j_mayer
}
79 76a66253 j_mayer
80 76a66253 j_mayer
static inline target_ulong rotl16 (target_ulong i, int n)
81 76a66253 j_mayer
{
82 76a66253 j_mayer
    return (((uint16_t)i << n) | ((uint16_t)i >> (16 - n)));
83 76a66253 j_mayer
}
84 79aceca5 bellard
85 76a66253 j_mayer
static inline target_ulong rotl32 (target_ulong i, int n)
86 79aceca5 bellard
{
87 76a66253 j_mayer
    return (((uint32_t)i << n) | ((uint32_t)i >> (32 - n)));
88 79aceca5 bellard
}
89 79aceca5 bellard
90 76a66253 j_mayer
#if defined(TARGET_PPC64)
91 76a66253 j_mayer
static inline target_ulong rotl64 (target_ulong i, int n)
92 76a66253 j_mayer
{
93 76a66253 j_mayer
    return (((uint64_t)i << n) | ((uint64_t)i >> (64 - n)));
94 76a66253 j_mayer
}
95 76a66253 j_mayer
#endif
96 76a66253 j_mayer
97 9a64fbe4 bellard
#if !defined(CONFIG_USER_ONLY)
98 a9049a07 bellard
#include "softmmu_exec.h"
99 9a64fbe4 bellard
#endif /* !defined(CONFIG_USER_ONLY) */
100 79aceca5 bellard
101 9fddaa0c bellard
void do_raise_exception_err (uint32_t exception, int error_code);
102 9fddaa0c bellard
void do_raise_exception (uint32_t exception);
103 79aceca5 bellard
104 76a66253 j_mayer
int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong vaddr,
105 76a66253 j_mayer
                          int rw, int access_type, int check_BATs);
106 79aceca5 bellard
107 76a66253 j_mayer
void ppc6xx_tlb_invalidate_all (CPUState *env);
108 76a66253 j_mayer
void ppc6xx_tlb_invalidate_virt (CPUState *env, target_ulong eaddr,
109 76a66253 j_mayer
                                 int is_code);
110 76a66253 j_mayer
void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
111 76a66253 j_mayer
                       target_ulong pte0, target_ulong pte1);
112 8ecc7913 j_mayer
void ppc4xx_tlb_invalidate_all (CPUState *env);
113 9a64fbe4 bellard
114 0d1a29f9 bellard
static inline void env_to_regs(void)
115 0d1a29f9 bellard
{
116 0d1a29f9 bellard
}
117 0d1a29f9 bellard
118 0d1a29f9 bellard
static inline void regs_to_env(void)
119 0d1a29f9 bellard
{
120 0d1a29f9 bellard
}
121 0d1a29f9 bellard
122 76a66253 j_mayer
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
123 0fa85d43 bellard
                              int is_user, int is_softmmu);
124 0fa85d43 bellard
125 bfed01fc ths
static inline int cpu_halted(CPUState *env) {
126 bfed01fc ths
    if (!env->halted)
127 bfed01fc ths
        return 0;
128 bfed01fc ths
    if (env->msr[MSR_EE] && (env->interrupt_request & CPU_INTERRUPT_HARD)) {
129 bfed01fc ths
        env->halted = 0;
130 bfed01fc ths
        return 0;
131 bfed01fc ths
    }
132 bfed01fc ths
    return EXCP_HALTED;
133 bfed01fc ths
}
134 bfed01fc ths
135 79aceca5 bellard
#endif /* !defined (__PPC_H__) */