ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/sysdeps.h
Revision: 1.5
Committed: 1999-10-19T17:41:38Z (24 years, 8 months ago) by cebix
Content type: text/plain
Branch: MAIN
CVS Tags: snapshot-21101999
Changes since 1.4: +3 -0 lines
Log Message:
- added external file system
- moved most init/deinit code to InitAll()/ExitAll() in main.cpp

File Contents

# Content
1 /*
2 * sysdeps.h - System dependent definitions for Unix
3 *
4 * Basilisk II (C) 1997-1999 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 #include <pthread.h>
46
47 #ifdef HAVE_FCNTL_H
48 # include <fcntl.h>
49 #endif
50
51 #ifdef TIME_WITH_SYS_TIME
52 # include <sys/time.h>
53 # include <time.h>
54 #else
55 # ifdef HAVE_SYS_TIME_H
56 # include <sys/time.h>
57 # else
58 # include <time.h>
59 # endif
60 #endif
61
62
63 /* Are the Mac and the host address space the same? */
64 #define REAL_ADDRESSING 0
65
66 /* Are we using a 68k emulator or the real thing? */
67 #define EMULATED_68K 1
68
69 /* Is the Mac ROM write protected? */
70 #define ROM_IS_WRITE_PROTECTED 1
71
72 /* Data types */
73 typedef unsigned char uint8;
74 typedef signed char int8;
75 #if SIZEOF_SHORT == 2
76 typedef unsigned short uint16;
77 typedef short int16;
78 #elif SIZEOF_INT == 2
79 typedef unsigned int uint16;
80 typedef int int16;
81 #else
82 #error "No 2 byte type, you lose."
83 #endif
84 #if SIZEOF_INT == 4
85 typedef unsigned int uint32;
86 typedef int int32;
87 #elif SIZEOF_LONG == 4
88 typedef unsigned long uint32;
89 typedef long int32;
90 #else
91 #error "No 4 byte type, you lose."
92 #endif
93 #if SIZEOF_LONG == 8
94 typedef unsigned long uint64;
95 typedef long int64;
96 #elif SIZEOF_LONG_LONG == 8
97 typedef unsigned long long uint64;
98 typedef long long int64;
99 #else
100 #error "No 8 byte type, you lose."
101 #endif
102
103 /* Time data type for Time Manager emulation */
104 #ifdef HAVE_CLOCK_GETTIME
105 typedef struct timespec tm_time_t;
106 #else
107 typedef struct timeval tm_time_t;
108 #endif
109
110 /* Offset Mac->Unix time in seconds */
111 #define TIME_OFFSET 0x7c25b080
112
113 /* UAE CPU data types */
114 #define uae_s8 int8
115 #define uae_u8 uint8
116 #define uae_s16 int16
117 #define uae_u16 uint16
118 #define uae_s32 int32
119 #define uae_u32 uint32
120 typedef uae_u32 uaecptr;
121
122 /* Alignment restrictions */
123 #if defined(__i386__) || defined(__powerpc__) || defined(__m68k__)
124 # define CPU_CAN_ACCESS_UNALIGNED
125 #endif
126
127 /* UAE CPU defines */
128 #ifdef WORDS_BIGENDIAN
129
130 #ifdef CPU_CAN_ACCESS_UNALIGNED
131
132 /* Big-endian CPUs which can do unaligned accesses */
133 static inline uae_u32 do_get_mem_long(uae_u32 *a) {return *a;}
134 static inline uae_u32 do_get_mem_word(uae_u16 *a) {return *a;}
135 static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {*a = v;}
136 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {*a = v;}
137
138 #else /* CPU_CAN_ACCESS_UNALIGNED */
139
140 #ifdef sgi
141 /* The SGI MIPSPro compilers can do unaligned accesses given enough hints.
142 * They will automatically inline these routines. */
143 #ifdef __cplusplus
144 extern "C" { /* only the C compiler does unaligned accesses */
145 #endif
146 extern uae_u32 do_get_mem_long(uae_u32 *a);
147 extern uae_u32 do_get_mem_word(uae_u16 *a);
148 extern void do_put_mem_long(uae_u32 *a, uae_u32 v);
149 extern void do_put_mem_word(uae_u16 *a, uae_u32 v);
150 #ifdef __cplusplus
151 }
152 #endif
153
154 #else /* sgi */
155
156 /* Big-endian CPUs which can not do unaligned accesses (this is not the most efficient way to do this...) */
157 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];}
158 static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint8 *b = (uint8 *)a; return (b[0] << 8) | b[1];}
159 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;}
160 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {uint8 *b = (uint8 *)a; b[0] = v >> 8; b[1] = v;}
161 #endif /* sgi */
162
163 #endif /* CPU_CAN_ACCESS_UNALIGNED */
164
165 #else /* WORDS_BIGENDIAN */
166
167 #ifdef __i386__
168
169 /* Intel x86 */
170 #define X86_PPRO_OPT
171 static inline uae_u32 do_get_mem_long(uae_u32 *a) {uint32 retval; __asm__ ("bswap %0" : "=r" (retval) : "0" (*a) : "cc"); return retval;}
172 #ifdef X86_PPRO_OPT
173 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;}
174 #else
175 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;}
176 #endif
177 #define HAVE_GET_WORD_UNSWAPPED
178 #define do_get_mem_word_unswapped(a) ((uae_u32)*((uae_u16 *)(a)))
179 static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {__asm__ ("bswap %0" : "=r" (v) : "0" (v) : "cc"); *a = v;}
180 #ifdef X86_PPRO_OPT
181 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {__asm__ ("bswapl %0" : "=&r" (v) : "0" (v << 16) : "cc"); *a = v;}
182 #else
183 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {__asm__ ("rolw $8,%0" : "=r" (v) : "0" (v) : "cc"); *a = v;}
184 #endif
185
186 #elif defined(CPU_CAN_ACCESS_UNALIGNED)
187
188 /* Other little-endian CPUs which can do unaligned accesses */
189 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);}
190 static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint16 x = *a; return (x >> 8) | (x << 8);}
191 static inline void do_put_mem_long(uae_u32 *a, uae_u32 v) {*a = (v >> 24) | (v >> 8) & 0xff00 | (v << 8) & 0xff0000 | (v << 24);}
192 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {*a = (v >> 8) | (v << 8);}
193
194 #else /* CPU_CAN_ACCESS_UNALIGNED */
195
196 /* Other little-endian CPUs which can not do unaligned accesses (this needs optimization) */
197 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];}
198 static inline uae_u32 do_get_mem_word(uae_u16 *a) {uint8 *b = (uint8 *)a; return (b[0] << 8) | b[1];}
199 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;}
200 static inline void do_put_mem_word(uae_u16 *a, uae_u32 v) {uint8 *b = (uint8 *)a; b[0] = v >> 8; b[1] = v;}
201
202 #endif /* CPU_CAN_ACCESS_UNALIGNED */
203
204 #endif /* WORDS_BIGENDIAN */
205
206 #define do_get_mem_byte(a) ((uae_u32)*((uae_u8 *)(a)))
207 #define do_put_mem_byte(a, v) (*(uae_u8 *)(a) = (v))
208
209 #define call_mem_get_func(func, addr) ((*func)(addr))
210 #define call_mem_put_func(func, addr, v) ((*func)(addr, v))
211 #define __inline__ inline
212 #define CPU_EMU_SIZE 0
213 #undef USE_MAPPED_MEMORY
214 #undef CAN_MAP_MEMORY
215 #undef NO_INLINE_MEMORY_ACCESS
216 #undef MD_HAVE_MEM_1_FUNCS
217 #undef USE_COMPILER
218 #define ENUMDECL typedef enum
219 #define ENUMNAME(name) name
220 #define write_log printf
221
222 #ifdef X86_ASSEMBLY
223 #define ASM_SYM_FOR_FUNC(a) __asm__(a)
224 #else
225 #define ASM_SYM_FOR_FUNC(a)
226 #endif
227
228 #ifndef REGPARAM
229 # define REGPARAM
230 #endif
231 #define REGPARAM2
232
233 #endif