ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libecb/ecb.h
(Generate patch)

Comparing libecb/ecb.h (file contents):
Revision 1.51 by root, Wed Jun 22 15:18:06 2011 UTC vs.
Revision 1.63 by root, Thu Aug 4 14:37:46 2011 UTC

48 #include <inttypes.h> 48 #include <inttypes.h>
49#endif 49#endif
50 50
51/* many compilers define _GNUC_ to some versions but then only implement 51/* many compilers define _GNUC_ to some versions but then only implement
52 * what their idiot authors think are the "more important" extensions, 52 * what their idiot authors think are the "more important" extensions,
53 * causing enourmous grief in return for some better fake benchmark numbers. 53 * causing enormous grief in return for some better fake benchmark numbers.
54 * or so. 54 * or so.
55 * we try to detect these and simply assume they are not gcc - if they have 55 * we try to detect these and simply assume they are not gcc - if they have
56 * an issue with that they should have done it right in the first place. 56 * an issue with that they should have done it right in the first place.
57 */ 57 */
58#ifndef ECB_GCC_VERSION 58#ifndef ECB_GCC_VERSION
61 #else 61 #else
62 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))) 62 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
63 #endif 63 #endif
64#endif 64#endif
65 65
66/*****************************************************************************/
67
68/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */
69/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */
70
71#if ECB_NO_THREADS || ECB_NO_SMP
72 #define ECB_MEMORY_FENCE do { } while (0)
73 #define ECB_MEMORY_FENCE_ACQUIRE do { } while (0)
74 #define ECB_MEMORY_FENCE_RELEASE do { } while (0)
75#endif
76
77#ifndef ECB_MEMORY_FENCE
78 #if ECB_GCC_VERSION(2,5)
79 #if __x86
80 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory")
81 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE /* non-lock xchg might be enough */
82 #define ECB_MEMORY_FENCE_RELEASE do { } while (0) /* unlikely to change in future cpus */
83 #elif __amd64
84 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory")
85 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("lfence" : : : "memory")
86 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("sfence") /* play safe - not needed in any current cpu */
87 #elif __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__
88 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory")
89 #elif defined(__ARM_ARCH_6__ ) || defined(__ARM_ARCH_6J__ ) \
90 || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6ZK__) \
91 || defined(__ARM_ARCH_7__ ) || defined(__ARM_ARCH_7A__ ) \
92 || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7R__ )
93 #define ECB_MEMORY_FENCE \
94 do { \
95 int null = 0; \
96 __asm__ __volatile__ ("mcr p15,0,%0,c6,c10,5", : "=&r" (null) : : "memory"); \
97 while (0)
98 #endif
99 #endif
100#endif
101
102#ifndef ECB_MEMORY_FENCE
103 #if ECB_GCC_VERSION(4,4) || defined(__INTEL_COMPILER)
104 #define ECB_MEMORY_FENCE __sync_synchronize ()
105 /*#define ECB_MEMORY_FENCE_ACQUIRE ({ char dummy = 0; __sync_lock_test_and_set (&dummy, 1); }) */
106 /*#define ECB_MEMORY_FENCE_RELEASE ({ char dummy = 1; __sync_lock_release (&dummy ); }) */
107 #elif _MSC_VER >= 1400 /* VC++ 2005 */
108 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier)
109 #define ECB_MEMORY_FENCE _ReadWriteBarrier ()
110 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */
111 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier ()
112 #elif defined(_WIN32)
113 #include <WinNT.h>
114 #define ECB_MEMORY_FENCE MemoryBarrier () /* actually just xchg on x86... scary */
115 #endif
116#endif
117
118#ifndef ECB_MEMORY_FENCE
119 #if !ECB_AVOID_PTHREADS
120 /*
121 * if you get undefined symbol references to pthread_mutex_lock,
122 * or failure to find pthread.h, then you should implement
123 * the ECB_MEMORY_FENCE operations for your cpu/compiler
124 * OR provide pthread.h and link against the posix thread library
125 * of your system.
126 */
127 #include <pthread.h>
128 #define ECB_NEEDS_PTHREADS 1
129 #define ECB_MEMORY_FENCE_NEEDS_PTHREADS 1
130
131 static pthread_mutex_t ecb_mf_lock = PTHREAD_MUTEX_INITIALIZER;
132 #define ECB_MEMORY_FENCE do { pthread_mutex_lock (&ecb_mf_lock); pthread_mutex_unlock (&ecb_mf_lock); } while (0)
133 #endif
134#endif
135
136#if !defined(ECB_MEMORY_FENCE_ACQUIRE) && defined(ECB_MEMORY_FENCE)
137 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE
138#endif
139
140#if !defined(ECB_MEMORY_FENCE_RELEASE) && defined(ECB_MEMORY_FENCE)
141 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE
142#endif
143
144/*****************************************************************************/
145
66#define ECB_C99 (__STDC_VERSION__ >= 199901L) 146#define ECB_C99 (__STDC_VERSION__ >= 199901L)
67 147
68#if __cplusplus 148#if __cplusplus
69 #define ecb_inline static inline 149 #define ecb_inline static inline
70#elif ECB_GCC_VERSION(2,5) 150#elif ECB_GCC_VERSION(2,5)
189 x *= 0x01010101; 269 x *= 0x01010101;
190 270
191 return x >> 24; 271 return x >> 24;
192 } 272 }
193 273
194 /* you have the choice beetween something with a table lookup, */
195 /* something using lots of bit arithmetic and a simple loop */
196 /* we went for the loop */
197 ecb_function_ int ecb_ld32 (uint32_t x) ecb_const; 274 ecb_function_ int ecb_ld32 (uint32_t x) ecb_const;
198 ecb_function_ int ecb_ld32 (uint32_t x) 275 ecb_function_ int ecb_ld32 (uint32_t x)
199 { 276 {
200 int r = 0; 277 int r = 0;
201 278

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines