Statistics
| Branch: | Revision:

root / target-ppc / exec.h @ 0487d6a8

History | View | Annotate | Download (3.4 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 79aceca5 bellard
register struct CPUPPCState *env asm(AREG0);
31 76a66253 j_mayer
#if TARGET_LONG_BITS > HOST_LONG_BITS
32 76a66253 j_mayer
/* no registers can be used */
33 76a66253 j_mayer
#define T0 (env->t0)
34 76a66253 j_mayer
#define T1 (env->t1)
35 76a66253 j_mayer
#define T2 (env->t2)
36 76a66253 j_mayer
#else
37 76a66253 j_mayer
register unsigned long T0 asm(AREG1);
38 76a66253 j_mayer
register unsigned long T1 asm(AREG2);
39 76a66253 j_mayer
register unsigned long T2 asm(AREG3);
40 76a66253 j_mayer
#endif
41 d9bce9d9 j_mayer
/* We may, sometime, need 64 bits registers on 32 bits target */
42 0487d6a8 j_mayer
#if defined(TARGET_PPC64) || defined(TARGET_PPCSPE) || (HOST_LONG_BITS == 64)
43 d9bce9d9 j_mayer
#define T0_64 T0
44 0487d6a8 j_mayer
#define T1_64 T1
45 0487d6a8 j_mayer
#define T2_64 T2
46 d9bce9d9 j_mayer
#else
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 76a66253 j_mayer
#endif
52 d9bce9d9 j_mayer
/* Provision for Altivec */
53 d9bce9d9 j_mayer
#define T0_avr (env->t0_avr)
54 d9bce9d9 j_mayer
#define T1_avr (env->t1_avr)
55 d9bce9d9 j_mayer
#define T2_avr (env->t2_avr)
56 79aceca5 bellard
57 76a66253 j_mayer
/* XXX: to clean: remove this mess */
58 79aceca5 bellard
#define PARAM(n) ((uint32_t)PARAM##n)
59 79aceca5 bellard
#define SPARAM(n) ((int32_t)PARAM##n)
60 76a66253 j_mayer
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 9a64fbe4 bellard
109 0d1a29f9 bellard
static inline void env_to_regs(void)
110 0d1a29f9 bellard
{
111 0d1a29f9 bellard
}
112 0d1a29f9 bellard
113 0d1a29f9 bellard
static inline void regs_to_env(void)
114 0d1a29f9 bellard
{
115 0d1a29f9 bellard
}
116 0d1a29f9 bellard
117 76a66253 j_mayer
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
118 0fa85d43 bellard
                              int is_user, int is_softmmu);
119 0fa85d43 bellard
120 79aceca5 bellard
#endif /* !defined (__PPC_H__) */