ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/sysdeps.h
(Generate patch)

Comparing SheepShaver/src/Unix/sysdeps.h (file contents):
Revision 1.34 by gbeauche, 2004-11-13T14:09:16Z vs.
Revision 1.59 by asvitkine, 2009-08-17T20:44:30Z

# Line 1 | Line 1
1   /*
2   *  sysdeps.h - System dependent definitions for Linux
3   *
4 < *  SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig
4 > *  SheepShaver (C) 1997-2008 Christian Bauer and Marc Hellwig
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
# Line 41 | Line 41
41   #include <assert.h>
42   #include <stdio.h>
43   #include <stdlib.h>
44 + #include <stddef.h>
45   #include <string.h>
46   #include <signal.h>
47  
# Line 63 | Line 64
64   # endif
65   #endif
66  
67 + #ifdef __MACH__
68 + #include <mach/mach_types.h>
69 + #endif
70 +
71 + // Fix offsetof() on FreeBSD and GCC >= 3.4
72 + #if defined(__FreeBSD__) && defined(__cplusplus)
73 + #undef offsetof
74 + /* The cast to "char &" below avoids problems with user-defined
75 +   "operator &", which can appear in a POD type.  */
76 + #define offsetof(TYPE, MEMBER)                          \
77 +  (__offsetof__ (reinterpret_cast <size_t>              \
78 +                 (&reinterpret_cast <char &>            \
79 +                  (static_cast<TYPE *> (0)->MEMBER))))
80 + #endif
81 +
82   // Define for external components
83   #define SHEEPSHAVER 1
84  
85   // Always use Real Addressing mode on native architectures
86   // Otherwise, use Direct Addressing mode if NATMEM_OFFSET is set
87 < #if NATMEM_OFFSET == 0 || EMULATED_PPC == 0
87 > #if !defined(EMULATED_PPC)
88   #define REAL_ADDRESSING 1
89 < #else
89 > #include "ppc_asm.tmpl"
90 > #elif defined(NATMEM_OFFSET)
91   #define DIRECT_ADDRESSING 1
92 + #else
93 + #define REAL_ADDRESSING 1
94   #endif
95  
96 + // Always use the complete non-stubs Ethernet driver
97 + #define USE_ETHER_FULL_DRIVER 1
98 +
99   #define POWERPC_ROM 1
100  
101   #if EMULATED_PPC
# Line 91 | Line 113
113   #define PPC_FLIGHT_RECORDER 1
114   #define PPC_PROFILE_COMPILE_TIME 0
115   #define PPC_PROFILE_GENERIC_CALLS 0
116 + #define PPC_PROFILE_REGS_USE 0
117   #define KPX_MAX_CPUS 1
118   #if ENABLE_DYNGEN
96 // Don't bother with predecode cache when using JIT
119   #define PPC_ENABLE_JIT 1
98 #undef  PPC_DECODE_CACHE
120   #endif
121 < #if defined(__i386__)
121 > #if defined(__i386__) || defined(__x86_64__)
122   #define DYNGEN_ASM_OPTS 1
123   #endif
124   #else
# Line 150 | Line 171 | typedef int64 intptr;
171   #error "Unsupported size of pointer"
172   #endif
173  
174 + // Define if the host processor supports fast unaligned load/stores
175 + #if defined __i386__ || defined __x86_64__
176 + #define UNALIGNED_PROFITABLE 1
177 + #endif
178 +
179 +
180   /**
181   *              Helper functions to byteswap data
182   **/
# Line 259 | Line 286 | static inline int testandset(volatile in
286   }
287   #endif
288  
289 < /* FIXME: SheepShaver occasionnally hangs with those locks */
263 < #if 0 && (defined(__i386__) || defined(__x86_64__))
289 > #if defined(__i386__) || defined(__x86_64__)
290   #define HAVE_TEST_AND_SET 1
291   static inline int testandset(volatile int *p)
292   {
# Line 343 | Line 369 | typedef volatile int spinlock_t;
369  
370   static const spinlock_t SPIN_LOCK_UNLOCKED = 0;
371  
372 < #if HAVE_TEST_AND_SET
372 > #if defined(HAVE_TEST_AND_SET) && defined(HAVE_PTHREADS)
373 > // There is nothing to lock if we are not in an multithreaded environment
374   #define HAVE_SPINLOCKS 1
375   static inline void spin_lock(spinlock_t *lock)
376   {
# Line 377 | Line 404 | static inline int spin_trylock(spinlock_
404   // Time data type for Time Manager emulation
405   #ifdef HAVE_CLOCK_GETTIME
406   typedef struct timespec tm_time_t;
407 + #elif defined(__MACH__)
408 + typedef mach_timespec_t tm_time_t;
409   #else
410   typedef struct timeval tm_time_t;
411   #endif
412  
413 + /* Define codes for all the float formats that we know of.
414 + * Though we only handle IEEE format.  */
415 + #define UNKNOWN_FLOAT_FORMAT 0
416 + #define IEEE_FLOAT_FORMAT 1
417 + #define VAX_FLOAT_FORMAT 2
418 + #define IBM_FLOAT_FORMAT 3
419 + #define C4X_FLOAT_FORMAT 4
420 +
421 + // High-precision timing
422 + #if defined(HAVE_PTHREADS) && defined(HAVE_CLOCK_NANOSLEEP)
423 + #define PRECISE_TIMING 1
424 + #define PRECISE_TIMING_POSIX 1
425 + #elif defined(HAVE_PTHREADS) && defined(__MACH__)
426 + #define PRECISE_TIMING 1
427 + #define PRECISE_TIMING_MACH 1
428 + #endif
429 +
430   // Timing functions
431   extern uint64 GetTicks_usec(void);
432   extern void Delay_usec(uint32 usec);
433  
434 < #if defined(HAVE_PTHREADS) || (defined(__linux__) && defined(__powerpc__))
434 > #ifdef HAVE_PTHREADS
435   // Setup pthread attributes
436   extern void Set_pthread_attr(pthread_attr_t *attr, int priority);
437   #endif
# Line 399 | Line 445 | typedef struct rgb_color {
445   } rgb_color;
446  
447   // X11 display fast locks
448 < #ifdef HAVE_SPINLOCKS
403 < #define X11_LOCK_TYPE spinlock_t
404 < #define X11_LOCK_INIT SPIN_LOCK_UNLOCKED
405 < #define XDisplayLock() spin_lock(&x_display_lock)
406 < #define XDisplayUnlock() spin_unlock(&x_display_lock)
407 < #elif defined(HAVE_PTHREADS)
448 > #if defined(HAVE_PTHREADS)
449   #define X11_LOCK_TYPE pthread_mutex_t
450   #define X11_LOCK_INIT PTHREAD_MUTEX_INITIALIZER
451   #define XDisplayLock() pthread_mutex_lock(&x_display_lock);
452   #define XDisplayUnlock() pthread_mutex_unlock(&x_display_lock);
453 + #elif defined(HAVE_SPINLOCKS)
454 + #define X11_LOCK_TYPE spinlock_t
455 + #define X11_LOCK_INIT SPIN_LOCK_UNLOCKED
456 + #define XDisplayLock() spin_lock(&x_display_lock)
457 + #define XDisplayUnlock() spin_unlock(&x_display_lock)
458   #else
459   #define XDisplayLock()
460   #define XDisplayUnlock()

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines