ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/sysdeps.h
Revision: 1.23
Committed: 2002-09-16T12:03:07Z (21 years, 9 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
Changes since 1.22: +8 -0 lines
Log Message:
- Make "ieee" core default, where applicable
- Import gcc configury to determine HOST_FLOAT_FORMAT

File Contents

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