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

Comparing libecb/ecb.h (file contents):
Revision 1.99 by root, Thu Jun 7 21:28:36 2012 UTC vs.
Revision 1.108 by root, Fri Jun 29 01:39:51 2012 UTC

54 #else 54 #else
55 #define ECB_PTRSIZE 4 55 #define ECB_PTRSIZE 4
56 typedef uint32_t uintptr_t; 56 typedef uint32_t uintptr_t;
57 typedef int32_t intptr_t; 57 typedef int32_t intptr_t;
58 #endif 58 #endif
59 typedef intptr_t ptrdiff_t;
60#else 59#else
61 #include <inttypes.h> 60 #include <inttypes.h>
62 #if UINTMAX_MAX > 0xffffffffU 61 #if UINTMAX_MAX > 0xffffffffU
63 #define ECB_PTRSIZE 8 62 #define ECB_PTRSIZE 8
64 #else 63 #else
84#define ECB_C (__STDC__+0) /* this assumes that __STDC__ is either empty or a number */ 83#define ECB_C (__STDC__+0) /* this assumes that __STDC__ is either empty or a number */
85#define ECB_C99 (__STDC_VERSION__ >= 199901L) 84#define ECB_C99 (__STDC_VERSION__ >= 199901L)
86#define ECB_C11 (__STDC_VERSION__ >= 201112L) 85#define ECB_C11 (__STDC_VERSION__ >= 201112L)
87#define ECB_CPP (__cplusplus+0) 86#define ECB_CPP (__cplusplus+0)
88#define ECB_CPP11 (__cplusplus >= 201103L) 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
89 98
90/*****************************************************************************/ 99/*****************************************************************************/
91 100
92/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */ 101/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */
93/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */ 102/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */
139 148
140#ifndef ECB_MEMORY_FENCE 149#ifndef ECB_MEMORY_FENCE
141 #if ECB_GCC_VERSION(4,7) 150 #if ECB_GCC_VERSION(4,7)
142 /* see comment below (stdatomic.h) about the C11 memory model. */ 151 /* see comment below (stdatomic.h) about the C11 memory model. */
143 #define ECB_MEMORY_FENCE __atomic_thread_fence (__ATOMIC_SEQ_CST) 152 #define ECB_MEMORY_FENCE __atomic_thread_fence (__ATOMIC_SEQ_CST)
144 #elif defined __clang && __has_feature (cxx_atomic) 153 /*#elif defined __clang && __has_feature (cxx_atomic)*/
145 /* see comment below (stdatomic.h) about the C11 memory model. */ 154 /* see comment below (stdatomic.h) about the C11 memory model. */
146 #define ECB_MEMORY_FENCE __c11_atomic_thread_fence (__ATOMIC_SEQ_CST) 155 /*#define ECB_MEMORY_FENCE __c11_atomic_thread_fence (__ATOMIC_SEQ_CST)*/
147 #elif ECB_GCC_VERSION(4,4) || defined __INTEL_COMPILER || defined __clang__ 156 #elif ECB_GCC_VERSION(4,4) || defined __INTEL_COMPILER || defined __clang__
148 #define ECB_MEMORY_FENCE __sync_synchronize () 157 #define ECB_MEMORY_FENCE __sync_synchronize ()
149 #elif _MSC_VER >= 1400 /* VC++ 2005 */ 158 #elif _MSC_VER >= 1400 /* VC++ 2005 */
150 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier) 159 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier)
151 #define ECB_MEMORY_FENCE _ReadWriteBarrier () 160 #define ECB_MEMORY_FENCE _ReadWriteBarrier ()
459 ecb_inline void ecb_unreachable (void) ecb_noreturn; 468 ecb_inline void ecb_unreachable (void) ecb_noreturn;
460 ecb_inline void ecb_unreachable (void) { } 469 ecb_inline void ecb_unreachable (void) { }
461#endif 470#endif
462 471
463/* try to tell the compiler that some condition is definitely true */ 472/* try to tell the compiler that some condition is definitely true */
464#define ecb_assume(cond) do { if (!(cond)) ecb_unreachable (); } while (0) 473#define ecb_assume(cond) if (!(cond)) ecb_unreachable (); else 0
465 474
466ecb_inline unsigned char ecb_byteorder_helper (void) ecb_const; 475ecb_inline unsigned char ecb_byteorder_helper (void) ecb_const;
467ecb_inline unsigned char 476ecb_inline unsigned char
468ecb_byteorder_helper (void) 477ecb_byteorder_helper (void)
469{ 478{
525 } 534 }
526#else 535#else
527 #define ecb_array_length(name) (sizeof (name) / sizeof (name [0])) 536 #define ecb_array_length(name) (sizeof (name) / sizeof (name [0]))
528#endif 537#endif
529 538
539/*******************************************************************************/
540/* floating point stuff, can be disabled by defining ECB_NO_LIBM */
541
542/* basically, everything uses "ieee pure-endian" floating point numbers */
543/* the only noteworthy exception is ancient armle, which uses order 43218765 */
544#if 0 \
545 || __i386 || __i386__ \
546 || __amd64 || __amd64__ || __x86_64 || __x86_64__ \
547 || __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__ \
548 || defined __arm__ && defined __ARM_EABI__ \
549 || defined __s390__ || defined __s390x__ \
550 || defined __mips__ \
551 || defined __alpha__ \
552 || defined __hppa__ \
553 || defined __ia64__ \
554 || defined _M_IX86 || defined _M_AMD64 || defined _M_IA64
555 #define ECB_STDFP 1
556 #include <string.h> /* for memcpy */
557#else
558 #define ECB_STDFP 0
559#endif
560
561#ifndef ECB_NO_LIBM
562
563 /* convert a float to ieee single/binary32 */
564 ecb_function_ uint32_t ecb_float_to_binary32 (float x) ecb_const;
565 ecb_function_ uint32_t
566 ecb_float_to_binary32 (float x)
567 {
568 uint32_t r;
569
570 #if ECB_STDFP
571 memcpy (&r, &x, 4);
572 #else
573 /* slow emulation, works for anything but -0 */
574 ECB_EXTERN_C float frexpf (float v, int *e);
575 uint32_t m;
576 int e;
577
578 if (x == 0e0f ) return 0x00000000U;
579 if (x > +3.40282346638528860e+38f) return 0x7f800000U;
580 if (x < -3.40282346638528860e+38f) return 0xff800000U;
581 if (x != x ) return 0x7fbfffffU;
582
583 m = frexpf (x, &e) * 0x1000000U;
584
585 r = m & 0x80000000U;
586
587 if (r)
588 m = -m;
589
590 if (e <= -126)
591 {
592 m &= 0xffffffU;
593 m >>= (-125 - e);
594 e = -126;
595 }
596
597 r |= (e + 126) << 23;
598 r |= m & 0x7fffffU;
530#endif 599 #endif
531 600
601 return r;
602 }
603
604 /* converts an ieee single/binary32 to a float */
605 ecb_function_ float ecb_binary32_to_float (uint32_t x) ecb_const;
606 ecb_function_ float
607 ecb_binary32_to_float (uint32_t x)
608 {
609 float r;
610
611 #if ECB_STDFP
612 memcpy (&r, &x, 4);
613 #else
614 /* emulation, only works for normals and subnormals and +0 */
615 ECB_EXTERN_C float ldexpf (float x, int e);
616
617 int neg = x >> 31;
618 int e = (x >> 23) & 0xffU;
619
620 x &= 0x7fffffU;
621
622 if (e)
623 x |= 0x800000U;
624 else
625 e = 1;
626
627 /* we distrust ldexpf a bit and do the 2**-24 scaling by an extra multiply */
628 r = ldexpf (x * (0.5f / 0x800000U), e - 126);
629
630 r = neg ? -r : r;
631 #endif
632
633 return r;
634 }
635
636 /* convert a double to ieee double/binary64 */
637 ecb_function_ uint64_t ecb_double_to_binary64 (double x) ecb_const;
638 ecb_function_ uint64_t
639 ecb_double_to_binary64 (double x)
640 {
641 uint64_t r;
642
643 #if ECB_STDFP
644 memcpy (&r, &x, 8);
645 #else
646 /* slow emulation, works for anything but -0 */
647 ECB_EXTERN_C double frexp (double v, int *e);
648 uint64_t m;
649 int e;
650
651 if (x == 0e0 ) return 0x0000000000000000U;
652 if (x > +1.79769313486231470e+308) return 0x7ff0000000000000U;
653 if (x < -1.79769313486231470e+308) return 0xfff0000000000000U;
654 if (x != x ) return 0X7ff7ffffffffffffU;
655
656 m = frexp (x, &e) * 0x20000000000000U;
657
658 r = m & 0x8000000000000000;;
659
660 if (r)
661 m = -m;
662
663 if (e <= -1022)
664 {
665 m &= 0x1fffffffffffffU;
666 m >>= (-1021 - e);
667 e = -1022;
668 }
669
670 r |= ((uint64_t)(e + 1022)) << 52;
671 r |= m & 0xfffffffffffffU;
672 #endif
673
674 return r;
675 }
676
677 /* converts an ieee double/binary64 to a double */
678 ecb_function_ double ecb_binary64_to_double (uint64_t x) ecb_const;
679 ecb_function_ double
680 ecb_binary64_to_double (uint64_t x)
681 {
682 double r;
683
684 #if ECB_STDFP
685 memcpy (&r, &x, 8);
686 #else
687 /* emulation, only works for normals and subnormals and +0 */
688 ECB_EXTERN_C double ldexp (double x, int e);
689
690 int neg = x >> 63;
691 int e = (x >> 52) & 0x7ffU;
692
693 x &= 0xfffffffffffffU;
694
695 if (e)
696 x |= 0x10000000000000U;
697 else
698 e = 1;
699
700 /* we distrust ldexp a bit and do the 2**-53 scaling by an extra multiply */
701 r = ldexp (x * (0.5 / 0x10000000000000U), e - 1022);
702
703 r = neg ? -r : r;
704 #endif
705
706 return r;
707 }
708
709#endif
710
711#endif
712

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines