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

Comparing libeio/ecb.h (file contents):
Revision 1.4 by root, Mon Jul 18 01:27:03 2011 UTC vs.
Revision 1.15 by root, Wed Jul 25 16:12:28 2012 UTC

1/* 1/*
2 * libecb - http://software.schmorp.de/pkg/libecb 2 * libecb - http://software.schmorp.de/pkg/libecb
3 * 3 *
4 * Copyright (©) 2009-2011 Marc Alexander Lehmann <libecb@schmorp.de> 4 * Copyright (©) 2009-2012 Marc Alexander Lehmann <libecb@schmorp.de>
5 * Copyright (©) 2011 Emanuele Giaquinta 5 * Copyright (©) 2011 Emanuele Giaquinta
6 * All rights reserved. 6 * All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without modifica- 8 * Redistribution and use in source and binary forms, with or without modifica-
9 * tion, are permitted provided that the following conditions are met: 9 * tion, are permitted provided that the following conditions are met:
28 */ 28 */
29 29
30#ifndef ECB_H 30#ifndef ECB_H
31#define ECB_H 31#define ECB_H
32 32
33/* 16 bits major, 16 bits minor */
34#define ECB_VERSION 0x00010002
35
33#ifdef _WIN32 36#ifdef _WIN32
34 typedef signed char int8_t; 37 typedef signed char int8_t;
35 typedef unsigned char uint8_t; 38 typedef unsigned char uint8_t;
36 typedef signed short int16_t; 39 typedef signed short int16_t;
37 typedef unsigned short uint16_t; 40 typedef unsigned short uint16_t;
42 typedef unsigned long long uint64_t; 45 typedef unsigned long long uint64_t;
43 #else /* _MSC_VER || __BORLANDC__ */ 46 #else /* _MSC_VER || __BORLANDC__ */
44 typedef signed __int64 int64_t; 47 typedef signed __int64 int64_t;
45 typedef unsigned __int64 uint64_t; 48 typedef unsigned __int64 uint64_t;
46 #endif 49 #endif
50 #ifdef _WIN64
51 #define ECB_PTRSIZE 8
52 typedef uint64_t uintptr_t;
53 typedef int64_t intptr_t;
54 #else
55 #define ECB_PTRSIZE 4
56 typedef uint32_t uintptr_t;
57 typedef int32_t intptr_t;
58 #endif
47#else 59#else
48 #include <inttypes.h> 60 #include <inttypes.h>
61 #if UINTMAX_MAX > 0xffffffffU
62 #define ECB_PTRSIZE 8
63 #else
64 #define ECB_PTRSIZE 4
65 #endif
49#endif 66#endif
50 67
51/* many compilers define _GNUC_ to some versions but then only implement 68/* many compilers define _GNUC_ to some versions but then only implement
52 * what their idiot authors think are the "more important" extensions, 69 * what their idiot authors think are the "more important" extensions,
53 * causing enourmous grief in return for some better fake benchmark numbers. 70 * causing enormous grief in return for some better fake benchmark numbers.
54 * or so. 71 * or so.
55 * we try to detect these and simply assume they are not gcc - if they have 72 * 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. 73 * an issue with that they should have done it right in the first place.
57 */ 74 */
58#ifndef ECB_GCC_VERSION 75#ifndef ECB_GCC_VERSION
59 #if !defined(__GNUC_MINOR__) || defined(__INTEL_COMPILER) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(__llvm__) || defined(__clang__) 76 #if !defined __GNUC_MINOR__ || defined __INTEL_COMPILER || defined __SUNPRO_C || defined __SUNPRO_CC || defined __llvm__ || defined __clang__
60 #define ECB_GCC_VERSION(major,minor) 0 77 #define ECB_GCC_VERSION(major,minor) 0
61 #else 78 #else
62 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))) 79 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
63 #endif 80 #endif
64#endif 81#endif
65 82
83#define ECB_C (__STDC__+0) /* this assumes that __STDC__ is either empty or a number */
84#define ECB_C99 (__STDC_VERSION__ >= 199901L)
85#define ECB_C11 (__STDC_VERSION__ >= 201112L)
86#define ECB_CPP (__cplusplus+0)
87#define ECB_CPP11 (__cplusplus >= 201103L)
88
89#if ECB_CPP
90 #define ECB_EXTERN_C extern "C"
91 #define ECB_EXTERN_C_BEG ECB_EXTERN_C {
92 #define ECB_EXTERN_C_END }
93#else
94 #define ECB_EXTERN_C extern
95 #define ECB_EXTERN_C_BEG
96 #define ECB_EXTERN_C_END
97#endif
98
66/*****************************************************************************/ 99/*****************************************************************************/
67 100
101/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */
102/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */
103
104#if ECB_NO_THREADS
105 #define ECB_NO_SMP 1
106#endif
107
108#if ECB_NO_SMP
109 #define ECB_MEMORY_FENCE do { } while (0)
110#endif
111
68#ifndef ECB_MEMORY_FENCE 112#ifndef ECB_MEMORY_FENCE
69 #if ECB_GCC_VERSION(2,5) 113 #if ECB_GCC_VERSION(2,5) || defined __INTEL_COMPILER || (__llvm__ && __GNUC__) || __SUNPRO_C >= 0x5110 || __SUNPRO_CC >= 0x5110
70 #if __x86 114 #if __i386 || __i386__
71 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; or.b $0, -1(%%esp)" : : : "memory") 115 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory")
72 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE 116 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("" : : : "memory")
73 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE /* better be safe than sorry */ 117 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("")
74 #elif __amd64 118 #elif __amd64 || __amd64__ || __x86_64 || __x86_64__
75 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory") 119 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory")
76 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("lfence" : : : "memory") 120 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("" : : : "memory")
77 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("sfence") 121 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("")
122 #elif __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__
123 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory")
124 #elif defined __ARM_ARCH_6__ || defined __ARM_ARCH_6J__ \
125 || defined __ARM_ARCH_6K__ || defined __ARM_ARCH_6ZK__
126 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mcr p15,0,%0,c7,c10,5" : : "r" (0) : "memory")
127 #elif defined __ARM_ARCH_7__ || defined __ARM_ARCH_7A__ \
128 || defined __ARM_ARCH_7M__ || defined __ARM_ARCH_7R__
129 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("dmb" : : : "memory")
130 #elif __sparc || __sparc__
131 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad | #StoreStore | #StoreLoad" : : : "memory")
132 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad" : : : "memory")
133 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("membar #LoadStore | #StoreStore")
134 #elif defined __s390__ || defined __s390x__
135 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("bcr 15,0" : : : "memory")
136 #elif defined __mips__
137 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory")
138 #elif defined __alpha__
139 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mb" : : : "memory")
140 #elif defined __hppa__
141 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("" : : : "memory")
142 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("")
143 #elif defined __ia64__
144 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mf" : : : "memory")
78 #endif 145 #endif
79 #endif 146 #endif
80#endif 147#endif
81 148
82#ifndef ECB_MEMORY_FENCE 149#ifndef ECB_MEMORY_FENCE
83 #if ECB_GCC_VERSION(4,4) 150 #if ECB_GCC_VERSION(4,7)
151 /* see comment below (stdatomic.h) about the C11 memory model. */
152 #define ECB_MEMORY_FENCE __atomic_thread_fence (__ATOMIC_SEQ_CST)
153
154 /* The __has_feature syntax from clang is so misdesigned that we cannot use it
155 * without risking compile time errors with other compilers. We *could*
156 * define our own ecb_clang_has_feature, but I just can't be bothered to work
157 * around * this shit time and again.
158 * #elif defined __clang && __has_feature (cxx_atomic)
159 * // see comment below (stdatomic.h) about the C11 memory model.
160 * #define ECB_MEMORY_FENCE __c11_atomic_thread_fence (__ATOMIC_SEQ_CST)
161 */
162
163 #elif ECB_GCC_VERSION(4,4) || defined __INTEL_COMPILER || defined __clang__
84 #define ECB_MEMORY_FENCE __sync_synchronize () 164 #define ECB_MEMORY_FENCE __sync_synchronize ()
85 #define ECB_MEMORY_FENCE_ACQUIRE ({ char dummy = 0; __sync_lock_test_and_set (&dummy, 1); })
86 #define ECB_MEMORY_FENCE_RELEASE ({ char dummy = 1; __sync_lock_release (&dummy ); })
87 #elif _MSC_VER >= 1400 165 #elif _MSC_VER >= 1400 /* VC++ 2005 */
88 #define ECB_MEMORY_FENCE do { } while (0) 166 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier)
89 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE
90 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE
91 #elif defined(_WIN32) && defined(MemoryBarrier)
92 #define ECB_MEMORY_FENCE MemoryBarrier () 167 #define ECB_MEMORY_FENCE _ReadWriteBarrier ()
93 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE 168 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */
94 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE 169 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier ()
170 #elif defined _WIN32
171 #include <WinNT.h>
172 #define ECB_MEMORY_FENCE MemoryBarrier () /* actually just xchg on x86... scary */
173 #elif __SUNPRO_C >= 0x5110 || __SUNPRO_CC >= 0x5110
174 #include <mbarrier.h>
175 #define ECB_MEMORY_FENCE __machine_rw_barrier ()
176 #define ECB_MEMORY_FENCE_ACQUIRE __machine_r_barrier ()
177 #define ECB_MEMORY_FENCE_RELEASE __machine_w_barrier ()
178 #elif __xlC__
179 #define ECB_MEMORY_FENCE __sync ()
95 #endif 180 #endif
96#endif 181#endif
97 182
98#ifndef ECB_MEMORY_FENCE 183#ifndef ECB_MEMORY_FENCE
184 #if ECB_C11 && !defined __STDC_NO_ATOMICS__
185 /* we assume that these memory fences work on all variables/all memory accesses, */
186 /* not just C11 atomics and atomic accesses */
187 #include <stdatomic.h>
188 /* Unfortunately, neither gcc 4.7 nor clang 3.1 generate any instructions for */
189 /* any fence other than seq_cst, which isn't very efficient for us. */
190 /* Why that is, we don't know - either the C11 memory model is quite useless */
191 /* for most usages, or gcc and clang have a bug */
192 /* I *currently* lean towards the latter, and inefficiently implement */
193 /* all three of ecb's fences as a seq_cst fence */
194 #define ECB_MEMORY_FENCE atomic_thread_fence (memory_order_seq_cst)
195 #endif
196#endif
197
198#ifndef ECB_MEMORY_FENCE
199 #if !ECB_AVOID_PTHREADS
200 /*
201 * if you get undefined symbol references to pthread_mutex_lock,
202 * or failure to find pthread.h, then you should implement
203 * the ECB_MEMORY_FENCE operations for your cpu/compiler
204 * OR provide pthread.h and link against the posix thread library
205 * of your system.
206 */
99 #include <pthread.h> 207 #include <pthread.h>
208 #define ECB_NEEDS_PTHREADS 1
209 #define ECB_MEMORY_FENCE_NEEDS_PTHREADS 1
100 210
101 static pthread_mutex_t ecb_mf_lock = PTHREAD_MUTEX_INITIALIZER; 211 static pthread_mutex_t ecb_mf_lock = PTHREAD_MUTEX_INITIALIZER;
102 #define ECB_MEMORY_FENCE do { pthread_mutex_lock (&ecb_mf_lock); pthread_mutex_unlock (&ecb_mf_lock); } while (0) 212 #define ECB_MEMORY_FENCE do { pthread_mutex_lock (&ecb_mf_lock); pthread_mutex_unlock (&ecb_mf_lock); } while (0)
213 #endif
214#endif
215
216#if !defined ECB_MEMORY_FENCE_ACQUIRE && defined ECB_MEMORY_FENCE
103 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE 217 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE
218#endif
219
220#if !defined ECB_MEMORY_FENCE_RELEASE && defined ECB_MEMORY_FENCE
104 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE 221 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE
105#endif 222#endif
106 223
107/*****************************************************************************/ 224/*****************************************************************************/
108
109#define ECB_C99 (__STDC_VERSION__ >= 199901L)
110 225
111#if __cplusplus 226#if __cplusplus
112 #define ecb_inline static inline 227 #define ecb_inline static inline
113#elif ECB_GCC_VERSION(2,5) 228#elif ECB_GCC_VERSION(2,5)
114 #define ecb_inline static __inline__ 229 #define ecb_inline static __inline__
153#elif ECB_GCC_VERSION(3,0) 268#elif ECB_GCC_VERSION(3,0)
154 #define ecb_decltype(x) __typeof(x) 269 #define ecb_decltype(x) __typeof(x)
155#endif 270#endif
156 271
157#define ecb_noinline ecb_attribute ((__noinline__)) 272#define ecb_noinline ecb_attribute ((__noinline__))
158#define ecb_noreturn ecb_attribute ((__noreturn__))
159#define ecb_unused ecb_attribute ((__unused__)) 273#define ecb_unused ecb_attribute ((__unused__))
160#define ecb_const ecb_attribute ((__const__)) 274#define ecb_const ecb_attribute ((__const__))
161#define ecb_pure ecb_attribute ((__pure__)) 275#define ecb_pure ecb_attribute ((__pure__))
276
277#if ECB_C11
278 #define ecb_noreturn _Noreturn
279#else
280 #define ecb_noreturn ecb_attribute ((__noreturn__))
281#endif
162 282
163#if ECB_GCC_VERSION(4,3) 283#if ECB_GCC_VERSION(4,3)
164 #define ecb_artificial ecb_attribute ((__artificial__)) 284 #define ecb_artificial ecb_attribute ((__artificial__))
165 #define ecb_hot ecb_attribute ((__hot__)) 285 #define ecb_hot ecb_attribute ((__hot__))
166 #define ecb_cold ecb_attribute ((__cold__)) 286 #define ecb_cold ecb_attribute ((__cold__))
232 x *= 0x01010101; 352 x *= 0x01010101;
233 353
234 return x >> 24; 354 return x >> 24;
235 } 355 }
236 356
237 /* you have the choice beetween something with a table lookup, */
238 /* something using lots of bit arithmetic and a simple loop */
239 /* we went for the loop */
240 ecb_function_ int ecb_ld32 (uint32_t x) ecb_const; 357 ecb_function_ int ecb_ld32 (uint32_t x) ecb_const;
241 ecb_function_ int ecb_ld32 (uint32_t x) 358 ecb_function_ int ecb_ld32 (uint32_t x)
242 { 359 {
243 int r = 0; 360 int r = 0;
244 361
259 if (x >> 32) { x >>= 32; r += 32; } 376 if (x >> 32) { x >>= 32; r += 32; }
260 377
261 return r + ecb_ld32 (x); 378 return r + ecb_ld32 (x);
262 } 379 }
263#endif 380#endif
381
382ecb_function_ ecb_bool ecb_is_pot32 (uint32_t x) ecb_const;
383ecb_function_ ecb_bool ecb_is_pot32 (uint32_t x) { return !(x & (x - 1)); }
384ecb_function_ ecb_bool ecb_is_pot64 (uint64_t x) ecb_const;
385ecb_function_ ecb_bool ecb_is_pot64 (uint64_t x) { return !(x & (x - 1)); }
386
387ecb_function_ uint8_t ecb_bitrev8 (uint8_t x) ecb_const;
388ecb_function_ uint8_t ecb_bitrev8 (uint8_t x)
389{
390 return ( (x * 0x0802U & 0x22110U)
391 | (x * 0x8020U & 0x88440U)) * 0x10101U >> 16;
392}
393
394ecb_function_ uint16_t ecb_bitrev16 (uint16_t x) ecb_const;
395ecb_function_ uint16_t ecb_bitrev16 (uint16_t x)
396{
397 x = ((x >> 1) & 0x5555) | ((x & 0x5555) << 1);
398 x = ((x >> 2) & 0x3333) | ((x & 0x3333) << 2);
399 x = ((x >> 4) & 0x0f0f) | ((x & 0x0f0f) << 4);
400 x = ( x >> 8 ) | ( x << 8);
401
402 return x;
403}
404
405ecb_function_ uint32_t ecb_bitrev32 (uint32_t x) ecb_const;
406ecb_function_ uint32_t ecb_bitrev32 (uint32_t x)
407{
408 x = ((x >> 1) & 0x55555555) | ((x & 0x55555555) << 1);
409 x = ((x >> 2) & 0x33333333) | ((x & 0x33333333) << 2);
410 x = ((x >> 4) & 0x0f0f0f0f) | ((x & 0x0f0f0f0f) << 4);
411 x = ((x >> 8) & 0x00ff00ff) | ((x & 0x00ff00ff) << 8);
412 x = ( x >> 16 ) | ( x << 16);
413
414 return x;
415}
264 416
265/* popcount64 is only available on 64 bit cpus as gcc builtin */ 417/* popcount64 is only available on 64 bit cpus as gcc builtin */
266/* so for this version we are lazy */ 418/* so for this version we are lazy */
267ecb_function_ int ecb_popcount64 (uint64_t x) ecb_const; 419ecb_function_ int ecb_popcount64 (uint64_t x) ecb_const;
268ecb_function_ int 420ecb_function_ int
318 470
319#if ECB_GCC_VERSION(4,5) 471#if ECB_GCC_VERSION(4,5)
320 #define ecb_unreachable() __builtin_unreachable () 472 #define ecb_unreachable() __builtin_unreachable ()
321#else 473#else
322 /* this seems to work fine, but gcc always emits a warning for it :/ */ 474 /* this seems to work fine, but gcc always emits a warning for it :/ */
323 ecb_function_ void ecb_unreachable (void) ecb_noreturn; 475 ecb_inline void ecb_unreachable (void) ecb_noreturn;
324 ecb_function_ void ecb_unreachable (void) { } 476 ecb_inline void ecb_unreachable (void) { }
325#endif 477#endif
326 478
327/* try to tell the compiler that some condition is definitely true */ 479/* try to tell the compiler that some condition is definitely true */
328#define ecb_assume(cond) do { if (!(cond)) ecb_unreachable (); } while (0) 480#define ecb_assume(cond) if (!(cond)) ecb_unreachable (); else 0
329 481
330ecb_function_ unsigned char ecb_byteorder_helper (void) ecb_const; 482ecb_inline unsigned char ecb_byteorder_helper (void) ecb_const;
331ecb_function_ unsigned char 483ecb_inline unsigned char
332ecb_byteorder_helper (void) 484ecb_byteorder_helper (void)
333{ 485{
334 const uint32_t u = 0x11223344; 486 /* the union code still generates code under pressure in gcc, */
335 return *(unsigned char *)&u; 487 /* but less than using pointers, and always seem to */
488 /* successfully return a constant. */
489 /* the reason why we have this horrible preprocessor mess */
490 /* is to avoid it in all cases, at least on common architectures */
491 /* and yes, gcc defines __BYTE_ORDER__, g++ does not */
492#if __i386 || __i386__ || _M_X86 || __amd64 || __amd64__ || _M_X64
493 return 0x44;
494#elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
495 return 0x44;
496#elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
497 retrurn 0x11;
498#else
499 union
500 {
501 uint32_t i;
502 uint8_t c;
503 } u = { 0x11223344 };
504 return u.c;
505#endif
336} 506}
337 507
338ecb_function_ ecb_bool ecb_big_endian (void) ecb_const; 508ecb_inline ecb_bool ecb_big_endian (void) ecb_const;
339ecb_function_ ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11; } 509ecb_inline ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11; }
340ecb_function_ ecb_bool ecb_little_endian (void) ecb_const; 510ecb_inline ecb_bool ecb_little_endian (void) ecb_const;
341ecb_function_ ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper () == 0x44; } 511ecb_inline ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper () == 0x44; }
342 512
343#if ECB_GCC_VERSION(3,0) || ECB_C99 513#if ECB_GCC_VERSION(3,0) || ECB_C99
344 #define ecb_mod(m,n) ((m) % (n) + ((m) % (n) < 0 ? (n) : 0)) 514 #define ecb_mod(m,n) ((m) % (n) + ((m) % (n) < 0 ? (n) : 0))
345#else 515#else
346 #define ecb_mod(m,n) ((m) < 0 ? ((n) - 1 - ((-1 - (m)) % (n))) : ((m) % (n))) 516 #define ecb_mod(m,n) ((m) < 0 ? ((n) - 1 - ((-1 - (m)) % (n))) : ((m) % (n)))
517#endif
518
519#if __cplusplus
520 template<typename T>
521 static inline T ecb_div_rd (T val, T div)
522 {
523 return val < 0 ? - ((-val + div - 1) / div) : (val ) / div;
524 }
525 template<typename T>
526 static inline T ecb_div_ru (T val, T div)
527 {
528 return val < 0 ? - ((-val ) / div) : (val + div - 1) / div;
529 }
530#else
531 #define ecb_div_rd(val,div) ((val) < 0 ? - ((-(val) + (div) - 1) / (div)) : ((val) ) / (div))
532 #define ecb_div_ru(val,div) ((val) < 0 ? - ((-(val) ) / (div)) : ((val) + (div) - 1) / (div))
347#endif 533#endif
348 534
349#if ecb_cplusplus_does_not_suck 535#if ecb_cplusplus_does_not_suck
350 /* does not work for local types (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm) */ 536 /* does not work for local types (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm) */
351 template<typename T, int N> 537 template<typename T, int N>
355 } 541 }
356#else 542#else
357 #define ecb_array_length(name) (sizeof (name) / sizeof (name [0])) 543 #define ecb_array_length(name) (sizeof (name) / sizeof (name [0]))
358#endif 544#endif
359 545
546/*******************************************************************************/
547/* floating point stuff, can be disabled by defining ECB_NO_LIBM */
548
549/* basically, everything uses "ieee pure-endian" floating point numbers */
550/* the only noteworthy exception is ancient armle, which uses order 43218765 */
551#if 0 \
552 || __i386 || __i386__ \
553 || __amd64 || __amd64__ || __x86_64 || __x86_64__ \
554 || __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__ \
555 || defined __arm__ && defined __ARM_EABI__ \
556 || defined __s390__ || defined __s390x__ \
557 || defined __mips__ \
558 || defined __alpha__ \
559 || defined __hppa__ \
560 || defined __ia64__ \
561 || defined _M_IX86 || defined _M_AMD64 || defined _M_IA64
562 #define ECB_STDFP 1
563 #include <string.h> /* for memcpy */
564#else
565 #define ECB_STDFP 0
566 #include <math.h> /* for frexp*, ldexp* */
567#endif
568
569#ifndef ECB_NO_LIBM
570
571 /* convert a float to ieee single/binary32 */
572 ecb_function_ uint32_t ecb_float_to_binary32 (float x) ecb_const;
573 ecb_function_ uint32_t
574 ecb_float_to_binary32 (float x)
575 {
576 uint32_t r;
577
578 #if ECB_STDFP
579 memcpy (&r, &x, 4);
580 #else
581 /* slow emulation, works for anything but -0 */
582 uint32_t m;
583 int e;
584
585 if (x == 0e0f ) return 0x00000000U;
586 if (x > +3.40282346638528860e+38f) return 0x7f800000U;
587 if (x < -3.40282346638528860e+38f) return 0xff800000U;
588 if (x != x ) return 0x7fbfffffU;
589
590 m = frexpf (x, &e) * 0x1000000U;
591
592 r = m & 0x80000000U;
593
594 if (r)
595 m = -m;
596
597 if (e <= -126)
598 {
599 m &= 0xffffffU;
600 m >>= (-125 - e);
601 e = -126;
602 }
603
604 r |= (e + 126) << 23;
605 r |= m & 0x7fffffU;
360#endif 606 #endif
361 607
608 return r;
609 }
610
611 /* converts an ieee single/binary32 to a float */
612 ecb_function_ float ecb_binary32_to_float (uint32_t x) ecb_const;
613 ecb_function_ float
614 ecb_binary32_to_float (uint32_t x)
615 {
616 float r;
617
618 #if ECB_STDFP
619 memcpy (&r, &x, 4);
620 #else
621 /* emulation, only works for normals and subnormals and +0 */
622 int neg = x >> 31;
623 int e = (x >> 23) & 0xffU;
624
625 x &= 0x7fffffU;
626
627 if (e)
628 x |= 0x800000U;
629 else
630 e = 1;
631
632 /* we distrust ldexpf a bit and do the 2**-24 scaling by an extra multiply */
633 r = ldexpf (x * (0.5f / 0x800000U), e - 126);
634
635 r = neg ? -r : r;
636 #endif
637
638 return r;
639 }
640
641 /* convert a double to ieee double/binary64 */
642 ecb_function_ uint64_t ecb_double_to_binary64 (double x) ecb_const;
643 ecb_function_ uint64_t
644 ecb_double_to_binary64 (double x)
645 {
646 uint64_t r;
647
648 #if ECB_STDFP
649 memcpy (&r, &x, 8);
650 #else
651 /* slow emulation, works for anything but -0 */
652 uint64_t m;
653 int e;
654
655 if (x == 0e0 ) return 0x0000000000000000U;
656 if (x > +1.79769313486231470e+308) return 0x7ff0000000000000U;
657 if (x < -1.79769313486231470e+308) return 0xfff0000000000000U;
658 if (x != x ) return 0X7ff7ffffffffffffU;
659
660 m = frexp (x, &e) * 0x20000000000000U;
661
662 r = m & 0x8000000000000000;;
663
664 if (r)
665 m = -m;
666
667 if (e <= -1022)
668 {
669 m &= 0x1fffffffffffffU;
670 m >>= (-1021 - e);
671 e = -1022;
672 }
673
674 r |= ((uint64_t)(e + 1022)) << 52;
675 r |= m & 0xfffffffffffffU;
676 #endif
677
678 return r;
679 }
680
681 /* converts an ieee double/binary64 to a double */
682 ecb_function_ double ecb_binary64_to_double (uint64_t x) ecb_const;
683 ecb_function_ double
684 ecb_binary64_to_double (uint64_t x)
685 {
686 double r;
687
688 #if ECB_STDFP
689 memcpy (&r, &x, 8);
690 #else
691 /* emulation, only works for normals and subnormals and +0 */
692 int neg = x >> 63;
693 int e = (x >> 52) & 0x7ffU;
694
695 x &= 0xfffffffffffffU;
696
697 if (e)
698 x |= 0x10000000000000U;
699 else
700 e = 1;
701
702 /* we distrust ldexp a bit and do the 2**-53 scaling by an extra multiply */
703 r = ldexp (x * (0.5 / 0x10000000000000U), e - 1022);
704
705 r = neg ? -r : r;
706 #endif
707
708 return r;
709 }
710
711#endif
712
713#endif
714

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines