PowerPC system emulation (Jocelyn Mayer) - modified patch to use new TLB api
[qemu] / target-ppc / exec.h
1 /*
2  *  PPC emulation definitions 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 #if !defined (__PPC_H__)
21 #define __PPC_H__
22
23 #include "dyngen-exec.h"
24
25 register struct CPUPPCState *env asm(AREG0);
26 register uint32_t T0 asm(AREG1);
27 register uint32_t T1 asm(AREG2);
28 register uint32_t T2 asm(AREG3);
29
30 #define PARAM(n) ((uint32_t)PARAM##n)
31 #define SPARAM(n) ((int32_t)PARAM##n)
32 #define FT0 (env->ft0)
33 #define FT1 (env->ft1)
34 #define FT2 (env->ft2)
35 #define FTS0 ((float)env->ft0)
36 #define FTS1 ((float)env->ft1)
37 #define FTS2 ((float)env->ft2)
38
39 #define RETURN() __asm__ __volatile__("");
40
41 #include "cpu.h"
42 #include "exec-all.h"
43
44 static inline uint32_t rotl (uint32_t i, int n)
45 {
46     return ((i << n) | (i >> (32 - n)));
47 }
48
49 /* XXX: move that to a generic header */
50 #if !defined(CONFIG_USER_ONLY)
51
52 #define ldul_user ldl_user
53 #define ldul_kernel ldl_kernel
54
55 #define ACCESS_TYPE 0
56 #define MEMSUFFIX _kernel
57 #define DATA_SIZE 1
58 #include "softmmu_header.h"
59
60 #define DATA_SIZE 2
61 #include "softmmu_header.h"
62
63 #define DATA_SIZE 4
64 #include "softmmu_header.h"
65
66 #define DATA_SIZE 8
67 #include "softmmu_header.h"
68 #undef ACCESS_TYPE
69 #undef MEMSUFFIX
70
71 #define ACCESS_TYPE 1
72 #define MEMSUFFIX _user
73 #define DATA_SIZE 1
74 #include "softmmu_header.h"
75
76 #define DATA_SIZE 2
77 #include "softmmu_header.h"
78
79 #define DATA_SIZE 4
80 #include "softmmu_header.h"
81
82 #define DATA_SIZE 8
83 #include "softmmu_header.h"
84 #undef ACCESS_TYPE
85 #undef MEMSUFFIX
86
87 /* these access are slower, they must be as rare as possible */
88 #define ACCESS_TYPE 2
89 #define MEMSUFFIX _data
90 #define DATA_SIZE 1
91 #include "softmmu_header.h"
92
93 #define DATA_SIZE 2
94 #include "softmmu_header.h"
95
96 #define DATA_SIZE 4
97 #include "softmmu_header.h"
98
99 #define DATA_SIZE 8
100 #include "softmmu_header.h"
101 #undef ACCESS_TYPE
102 #undef MEMSUFFIX
103
104 #define ldub(p) ldub_data(p)
105 #define ldsb(p) ldsb_data(p)
106 #define lduw(p) lduw_data(p)
107 #define ldsw(p) ldsw_data(p)
108 #define ldl(p) ldl_data(p)
109 #define ldq(p) ldq_data(p)
110
111 #define stb(p, v) stb_data(p, v)
112 #define stw(p, v) stw_data(p, v)
113 #define stl(p, v) stl_data(p, v)
114 #define stq(p, v) stq_data(p, v)
115
116 #endif /* !defined(CONFIG_USER_ONLY) */
117
118 int check_exception_state (CPUState *env);
119
120 void do_queue_exception_err (uint32_t exception, int error_code);
121 void do_queue_exception (uint32_t exception);
122 void do_process_exceptions (void);
123 void do_check_exception_state (void);
124
125 void do_load_cr (void);
126 void do_store_cr (uint32_t mask);
127 void do_load_xer (void);
128 void do_store_xer (void);
129 void do_load_msr (void);
130 void do_store_msr (void);
131 void do_load_fpscr (void);
132 void do_store_fpscr (uint32_t mask);
133
134 void do_sraw(void);
135
136 void do_fctiw (void);
137 void do_fctiwz (void);
138 void do_fsqrt (void);
139 void do_fsqrts (void);
140 void do_fres (void);
141 void do_fsqrte (void);
142 void do_fsel (void);
143 void do_fcmpu (void);
144 void do_fcmpo (void);
145 void do_fabs (void);
146 void do_fnabs (void);
147
148 void do_icbi (void);
149 void do_tlbia (void);
150 void do_tlbie (void);
151
152 void dump_rfi (void);
153 void dump_store_sr (int srnum);
154 void dump_store_ibat (int ul, int nr);
155 void dump_store_dbat (int ul, int nr);
156 void dump_store_tb (int ul);
157 void dump_update_tb(uint32_t param);
158
159 #endif /* !defined (__PPC_H__) */