1 |
/* |
2 |
* sysdeps.h - System dependent definitions for Unix |
3 |
* |
4 |
* Basilisk II (C) 1997-2002 Christian Bauer |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program 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 |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
*/ |
20 |
|
21 |
#ifndef SYSDEPS_H |
22 |
#define SYSDEPS_H |
23 |
|
24 |
#ifndef __STDC__ |
25 |
#error "Your compiler is not ANSI. Get a real one." |
26 |
#endif |
27 |
|
28 |
#include "config.h" |
29 |
#include "user_strings_unix.h" |
30 |
|
31 |
#ifndef STDC_HEADERS |
32 |
#error "You don't have ANSI C header files." |
33 |
#endif |
34 |
|
35 |
#ifdef HAVE_UNISTD_H |
36 |
# include <sys/types.h> |
37 |
# include <unistd.h> |
38 |
#endif |
39 |
|
40 |
#include <netinet/in.h> |
41 |
#include <assert.h> |
42 |
#include <stdio.h> |
43 |
#include <stdlib.h> |
44 |
#include <string.h> |
45 |
|
46 |
#ifdef HAVE_PTHREADS |
47 |
# include <pthread.h> |
48 |
#endif |
49 |
|
50 |
#ifdef HAVE_FCNTL_H |
51 |
# include <fcntl.h> |
52 |
#endif |
53 |
|
54 |
#ifdef TIME_WITH_SYS_TIME |
55 |
# include <sys/time.h> |
56 |
# include <time.h> |
57 |
#else |
58 |
# ifdef HAVE_SYS_TIME_H |
59 |
# include <sys/time.h> |
60 |
# else |
61 |
# include <time.h> |
62 |
# endif |
63 |
#endif |
64 |
|
65 |
|
66 |
#ifdef ENABLE_NATIVE_M68K |
67 |
|
68 |
/* Mac and host address space are the same */ |
69 |
#define REAL_ADDRESSING 1 |
70 |
|
71 |
/* Using 68k natively */ |
72 |
#define EMULATED_68K 0 |
73 |
|
74 |
/* Mac ROM is not write protected */ |
75 |
#define ROM_IS_WRITE_PROTECTED 0 |
76 |
#define USE_SCRATCHMEM_SUBTERFUGE 1 |
77 |
|
78 |
#else |
79 |
|
80 |
/* Mac and host address space are distinct */ |
81 |
#ifndef REAL_ADDRESSING |
82 |
#define REAL_ADDRESSING 0 |
83 |
#endif |
84 |
|
85 |
/* Using 68k emulator */ |
86 |
#define EMULATED_68K 1 |
87 |
|
88 |
/* The m68k emulator uses a prefetch buffer ? */ |
89 |
#define USE_PREFETCH_BUFFER 0 |
90 |
|
91 |
/* Mac ROM is write protected when banked memory is used */ |
92 |
#if REAL_ADDRESSING || DIRECT_ADDRESSING |
93 |
# define ROM_IS_WRITE_PROTECTED 0 |
94 |
# define USE_SCRATCHMEM_SUBTERFUGE 1 |
95 |
#else |
96 |
# define ROM_IS_WRITE_PROTECTED 1 |
97 |
#endif |
98 |
|
99 |
#endif |
100 |
|
101 |
/* Direct Addressing requires Video on SEGV signals */ |
102 |
#if DIRECT_ADDRESSING && !ENABLE_VOSF |
103 |
# undef ENABLE_VOSF |
104 |
# define ENABLE_VOSF 1 |
105 |
#endif |
106 |
|
107 |
/* ExtFS is supported */ |
108 |
#define SUPPORTS_EXTFS 1 |
109 |
|
110 |
/* BSD socket API supported */ |
111 |
#define SUPPORTS_UDP_TUNNEL 1 |
112 |
|
113 |
|
114 |
/* Data types */ |
115 |
typedef unsigned char uint8; |
116 |
typedef signed char int8; |
117 |
#if SIZEOF_SHORT == 2 |
118 |
typedef unsigned short uint16; |
119 |
typedef short int16; |
120 |
#elif SIZEOF_INT == 2 |
121 |
typedef unsigned int uint16; |
122 |
typedef int int16; |
123 |
#else |
124 |
#error "No 2 byte type, you lose." |
125 |
#endif |
126 |
#if SIZEOF_INT == 4 |
127 |
typedef unsigned int uint32; |
128 |
typedef int int32; |
129 |
#elif SIZEOF_LONG == 4 |
130 |
typedef unsigned long uint32; |
131 |
typedef long int32; |
132 |
#else |
133 |
#error "No 4 byte type, you lose." |
134 |
#endif |
135 |
#if SIZEOF_LONG == 8 |
136 |
typedef unsigned long uint64; |
137 |
typedef long int64; |
138 |
#define VAL64(a) (a ## l) |
139 |
#define UVAL64(a) (a ## ul) |
140 |
#elif SIZEOF_LONG_LONG == 8 |
141 |
typedef unsigned long long uint64; |
142 |
typedef long long int64; |
143 |
#define VAL64(a) (a ## LL) |
144 |
#define UVAL64(a) (a ## uLL) |
145 |
#else |
146 |
#error "No 8 byte type, you lose." |
147 |
#endif |
148 |
#if SIZEOF_VOID_P == 4 |
149 |
typedef uint32 uintptr; |
150 |
typedef int32 intptr; |
151 |
#elif SIZEOF_VOID_P == 8 |
152 |
typedef uint64 uintptr; |
153 |
typedef int64 intptr; |
154 |
#else |
155 |
#error "Unsupported size of pointer" |
156 |
#endif |
157 |
|
158 |
#ifndef HAVE_LOFF_T |
159 |
typedef off_t loff_t; |
160 |
#endif |
161 |
|
162 |
/* Time data type for Time Manager emulation */ |
163 |
#ifdef HAVE_CLOCK_GETTIME |
164 |
typedef struct timespec tm_time_t; |
165 |
#else |
166 |
typedef struct timeval tm_time_t; |
167 |
#endif |
168 |
|
169 |
/* Define codes for all the float formats that we know of. |
170 |
* Though we only handle IEEE format. */ |
171 |
#define UNKNOWN_FLOAT_FORMAT 0 |
172 |
#define IEEE_FLOAT_FORMAT 1 |
173 |
#define VAX_FLOAT_FORMAT 2 |
174 |
#define IBM_FLOAT_FORMAT 3 |
175 |
#define C4X_FLOAT_FORMAT 4 |
176 |
|
177 |
/* UAE CPU data types */ |
178 |
#define uae_s8 int8 |
179 |
#define uae_u8 uint8 |
180 |
#define uae_s16 int16 |
181 |
#define uae_u16 uint16 |
182 |
#define uae_s32 int32 |
183 |
#define uae_u32 uint32 |
184 |
#define uae_s64 int64 |
185 |
#define uae_u64 uint64 |
186 |
typedef uae_u32 uaecptr; |
187 |
|
188 |
/* Alignment restrictions */ |
189 |
#if defined(__i386__) || defined(__powerpc__) || defined(__m68k__) || defined(__x86_64__) |
190 |
# define CPU_CAN_ACCESS_UNALIGNED |
191 |
#endif |
192 |
|
193 |
/* Timing functions */ |
194 |
extern uint64 GetTicks_usec(void); |
195 |
extern void Delay_usec(uint32 usec); |
196 |
|
197 |
#ifdef HAVE_PTHREADS |
198 |
/* Centralized pthread attribute setup */ |
199 |
void Set_pthread_attr(pthread_attr_t *attr, int priority); |
200 |
#endif |
201 |
|
202 |
/* UAE CPU defines */ |
203 |
#ifdef WORDS_BIGENDIAN |
204 |
|
205 |
#ifdef CPU_CAN_ACCESS_UNALIGNED |
206 |
|
207 |
/* Big-endian CPUs which can do unaligned accesses */ |
208 |
static inline uae_u32 do_get_mem_long(uae_u32 *a) {return *a;} |
209 |
static inline uae_u32 do_get_mem_word(uae_u16 *a) {return *a;} |
210 |
static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {*a = v;} |
211 |
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {*a = v;} |
212 |
|
213 |
#else /* CPU_CAN_ACCESS_UNALIGNED */ |
214 |
|
215 |
#ifdef sgi |
216 |
/* The SGI MIPSPro compilers can do unaligned accesses given enough hints. |
217 |
* They will automatically inline these routines. */ |
218 |
#ifdef __cplusplus |
219 |
extern "C" { /* only the C compiler does unaligned accesses */ |
220 |
#endif |
221 |
extern uae_u32 do_get_mem_long(uae_u32 *a); |
222 |
extern uae_u32 do_get_mem_word(uae_u16 *a); |
223 |
extern void do_put_mem_long(uae_u32 *a, uae_u32 v); |
224 |
extern void do_put_mem_word(uae_u16 *a, uae_u32 v); |
225 |
#ifdef __cplusplus |
226 |
} |
227 |
#endif |
228 |
|
229 |
#else /* sgi */ |
230 |
|
231 |
/* Big-endian CPUs which can not do unaligned accesses (this is not the most efficient way to do this...) */ |
232 |
static inline uae_u32 do_get_mem_long(uae_u32 *a) {uint8 *b = (uint8 *)a; return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];} |
233 |
static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint8 *b = (uint8 *)a; return (b[0] << 8) | b[1];} |
234 |
static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {uint8 *b = (uint8 *)a; b[0] = v >> 24; b[1] = v >> 16; b[2] = v >> 8; b[3] = v;} |
235 |
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {uint8 *b = (uint8 *)a; b[0] = v >> 8; b[1] = v;} |
236 |
#endif /* sgi */ |
237 |
|
238 |
#endif /* CPU_CAN_ACCESS_UNALIGNED */ |
239 |
|
240 |
#else /* WORDS_BIGENDIAN */ |
241 |
|
242 |
#if defined(__i386__) || defined(__x86_64__) |
243 |
|
244 |
/* Intel x86 */ |
245 |
#define X86_PPRO_OPT |
246 |
static inline uae_u32 do_get_mem_long(uae_u32 *a) {uint32 retval; __asm__ ("bswap %0" : "=r" (retval) : "0" (*a) : "cc"); return retval;} |
247 |
#ifdef X86_PPRO_OPT |
248 |
static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint32 retval; __asm__ ("movzwl %w1,%k0\n\tshll $16,%k0\n\tbswapl %k0\n" : "=&r" (retval) : "m" (*a) : "cc"); return retval;} |
249 |
#else |
250 |
static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint32 retval; __asm__ ("xorl %k0,%k0\n\tmovw %w1,%w0\n\trolw $8,%w0" : "=&r" (retval) : "m" (*a) : "cc"); return retval;} |
251 |
#endif |
252 |
#define HAVE_GET_WORD_UNSWAPPED |
253 |
#define do_get_mem_word_unswapped(a) ((uae_u32)*((uae_u16 *)(a))) |
254 |
static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {__asm__ ("bswap %0" : "=r" (v) : "0" (v) : "cc"); *a = v;} |
255 |
#ifdef X86_PPRO_OPT |
256 |
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {__asm__ ("bswapl %0" : "=&r" (v) : "0" (v << 16) : "cc"); *a = v;} |
257 |
#else |
258 |
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {__asm__ ("rolw $8,%0" : "=r" (v) : "0" (v) : "cc"); *a = v;} |
259 |
#endif |
260 |
#define HAVE_OPTIMIZED_BYTESWAP_32 |
261 |
/* bswap doesn't affect condition codes */ |
262 |
static inline uae_u32 do_byteswap_32(uae_u32 v) {__asm__ ("bswap %0" : "=r" (v) : "0" (v)); return v;} |
263 |
#define HAVE_OPTIMIZED_BYTESWAP_16 |
264 |
#ifdef X86_PPRO_OPT |
265 |
static inline uae_u32 do_byteswap_16(uae_u32 v) {__asm__ ("bswapl %0" : "=&r" (v) : "0" (v << 16) : "cc"); return v;} |
266 |
#else |
267 |
static inline uae_u32 do_byteswap_16(uae_u32 v) {__asm__ ("rolw $8,%0" : "=r" (v) : "0" (v) : "cc"); return v;} |
268 |
#endif |
269 |
|
270 |
#elif defined(CPU_CAN_ACCESS_UNALIGNED) |
271 |
|
272 |
/* Other little-endian CPUs which can do unaligned accesses */ |
273 |
static inline uae_u32 do_get_mem_long(uae_u32 *a) {uint32 x = *a; return (x >> 24) | (x >> 8) & 0xff00 | (x << 8) & 0xff0000 | (x << 24);} |
274 |
static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint16 x = *a; return (x >> 8) | (x << 8);} |
275 |
static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {*a = (v >> 24) | (v >> 8) & 0xff00 | (v << 8) & 0xff0000 | (v << 24);} |
276 |
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {*a = (v >> 8) | (v << 8);} |
277 |
|
278 |
#else /* CPU_CAN_ACCESS_UNALIGNED */ |
279 |
|
280 |
/* Other little-endian CPUs which can not do unaligned accesses (this needs optimization) */ |
281 |
static inline uae_u32 do_get_mem_long(uae_u32 *a) {uint8 *b = (uint8 *)a; return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];} |
282 |
static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint8 *b = (uint8 *)a; return (b[0] << 8) | b[1];} |
283 |
static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {uint8 *b = (uint8 *)a; b[0] = v >> 24; b[1] = v >> 16; b[2] = v >> 8; b[3] = v;} |
284 |
static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {uint8 *b = (uint8 *)a; b[0] = v >> 8; b[1] = v;} |
285 |
|
286 |
#endif /* CPU_CAN_ACCESS_UNALIGNED */ |
287 |
|
288 |
#endif /* WORDS_BIGENDIAN */ |
289 |
|
290 |
#ifndef HAVE_OPTIMIZED_BYTESWAP_32 |
291 |
static inline uae_u32 do_byteswap_32(uae_u32 v) |
292 |
{ return (((v >> 24) & 0xff) | ((v >> 8) & 0xff00) | ((v & 0xff) << 24) | ((v & 0xff00) << 8)); } |
293 |
#endif |
294 |
|
295 |
#ifndef HAVE_OPTIMIZED_BYTESWAP_16 |
296 |
static inline uae_u32 do_byteswap_16(uae_u32 v) |
297 |
{ return (((v >> 8) & 0xff) | ((v & 0xff) << 8)); } |
298 |
#endif |
299 |
|
300 |
#define do_get_mem_byte(a) ((uae_u32)*((uae_u8 *)(a))) |
301 |
#define do_put_mem_byte(a, v) (*(uae_u8 *)(a) = (v)) |
302 |
|
303 |
#define call_mem_get_func(func, addr) ((*func)(addr)) |
304 |
#define call_mem_put_func(func, addr, v) ((*func)(addr, v)) |
305 |
#define __inline__ inline |
306 |
#define CPU_EMU_SIZE 0 |
307 |
#undef NO_INLINE_MEMORY_ACCESS |
308 |
#undef MD_HAVE_MEM_1_FUNCS |
309 |
#define ENUMDECL typedef enum |
310 |
#define ENUMNAME(name) name |
311 |
#define write_log printf |
312 |
|
313 |
#if defined(X86_ASSEMBLY) || defined(X86_64_ASSEMBLY) |
314 |
#define ASM_SYM_FOR_FUNC(a) __asm__(a) |
315 |
#else |
316 |
#define ASM_SYM_FOR_FUNC(a) |
317 |
#endif |
318 |
|
319 |
#ifndef REGPARAM |
320 |
# define REGPARAM |
321 |
#endif |
322 |
#define REGPARAM2 |
323 |
|
324 |
#endif |