ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.c
(Generate patch)

Comparing libev/ev.c (file contents):
Revision 1.429 by root, Tue May 8 15:50:49 2012 UTC vs.
Revision 1.450 by root, Mon Oct 8 15:43:35 2012 UTC

201# include <sys/wait.h> 201# include <sys/wait.h>
202# include <unistd.h> 202# include <unistd.h>
203#else 203#else
204# include <io.h> 204# include <io.h>
205# define WIN32_LEAN_AND_MEAN 205# define WIN32_LEAN_AND_MEAN
206# include <winsock2.h>
206# include <windows.h> 207# include <windows.h>
207# include <winsock2.h>
208# ifndef EV_SELECT_IS_WINSOCKET 208# ifndef EV_SELECT_IS_WINSOCKET
209# define EV_SELECT_IS_WINSOCKET 1 209# define EV_SELECT_IS_WINSOCKET 1
210# endif 210# endif
211# undef EV_AVOID_STDIO 211# undef EV_AVOID_STDIO
212#endif 212#endif
409/* some very old inotify.h headers don't have IN_DONT_FOLLOW */ 409/* some very old inotify.h headers don't have IN_DONT_FOLLOW */
410# ifndef IN_DONT_FOLLOW 410# ifndef IN_DONT_FOLLOW
411# undef EV_USE_INOTIFY 411# undef EV_USE_INOTIFY
412# define EV_USE_INOTIFY 0 412# define EV_USE_INOTIFY 0
413# endif 413# endif
414#endif
415
416#if EV_SELECT_IS_WINSOCKET
417# include <winsock.h>
418#endif 414#endif
419 415
420#if EV_USE_EVENTFD 416#if EV_USE_EVENTFD
421/* our minimum requirement is glibc 2.7 which has the stub, but not the header */ 417/* our minimum requirement is glibc 2.7 which has the stub, but not the header */
422# include <stdint.h> 418# include <stdint.h>
508 */ 504 */
509 505
510#ifndef ECB_H 506#ifndef ECB_H
511#define ECB_H 507#define ECB_H
512 508
509/* 16 bits major, 16 bits minor */
510#define ECB_VERSION 0x00010002
511
513#ifdef _WIN32 512#ifdef _WIN32
514 typedef signed char int8_t; 513 typedef signed char int8_t;
515 typedef unsigned char uint8_t; 514 typedef unsigned char uint8_t;
516 typedef signed short int16_t; 515 typedef signed short int16_t;
517 typedef unsigned short uint16_t; 516 typedef unsigned short uint16_t;
522 typedef unsigned long long uint64_t; 521 typedef unsigned long long uint64_t;
523 #else /* _MSC_VER || __BORLANDC__ */ 522 #else /* _MSC_VER || __BORLANDC__ */
524 typedef signed __int64 int64_t; 523 typedef signed __int64 int64_t;
525 typedef unsigned __int64 uint64_t; 524 typedef unsigned __int64 uint64_t;
526 #endif 525 #endif
526 #ifdef _WIN64
527 #define ECB_PTRSIZE 8
528 typedef uint64_t uintptr_t;
529 typedef int64_t intptr_t;
530 #else
531 #define ECB_PTRSIZE 4
532 typedef uint32_t uintptr_t;
533 typedef int32_t intptr_t;
534 #endif
527#else 535#else
528 #include <inttypes.h> 536 #include <inttypes.h>
537 #if UINTMAX_MAX > 0xffffffffU
538 #define ECB_PTRSIZE 8
539 #else
540 #define ECB_PTRSIZE 4
541 #endif
529#endif 542#endif
530 543
531/* many compilers define _GNUC_ to some versions but then only implement 544/* many compilers define _GNUC_ to some versions but then only implement
532 * what their idiot authors think are the "more important" extensions, 545 * what their idiot authors think are the "more important" extensions,
533 * causing enormous grief in return for some better fake benchmark numbers. 546 * causing enormous grief in return for some better fake benchmark numbers.
541 #else 554 #else
542 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))) 555 #define ECB_GCC_VERSION(major,minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
543 #endif 556 #endif
544#endif 557#endif
545 558
559#define ECB_C (__STDC__+0) /* this assumes that __STDC__ is either empty or a number */
560#define ECB_C99 (__STDC_VERSION__ >= 199901L)
561#define ECB_C11 (__STDC_VERSION__ >= 201112L)
562#define ECB_CPP (__cplusplus+0)
563#define ECB_CPP11 (__cplusplus >= 201103L)
564
565#if ECB_CPP
566 #define ECB_EXTERN_C extern "C"
567 #define ECB_EXTERN_C_BEG ECB_EXTERN_C {
568 #define ECB_EXTERN_C_END }
569#else
570 #define ECB_EXTERN_C extern
571 #define ECB_EXTERN_C_BEG
572 #define ECB_EXTERN_C_END
573#endif
574
546/*****************************************************************************/ 575/*****************************************************************************/
547 576
548/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */ 577/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */
549/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */ 578/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */
550 579
551#if ECB_NO_THREADS 580#if ECB_NO_THREADS
552# define ECB_NO_SMP 1 581 #define ECB_NO_SMP 1
553#endif 582#endif
554 583
555#if ECB_NO_THREADS || ECB_NO_SMP 584#if ECB_NO_SMP
556 #define ECB_MEMORY_FENCE do { } while (0) 585 #define ECB_MEMORY_FENCE do { } while (0)
557#endif 586#endif
558 587
559#ifndef ECB_MEMORY_FENCE 588#ifndef ECB_MEMORY_FENCE
560 #if ECB_GCC_VERSION(2,5) || defined __INTEL_COMPILER || (__llvm__ && __GNUC__) || __SUNPRO_C >= 0x5110 || __SUNPRO_CC >= 0x5110 589 #if ECB_GCC_VERSION(2,5) || defined __INTEL_COMPILER || (__llvm__ && __GNUC__) || __SUNPRO_C >= 0x5110 || __SUNPRO_CC >= 0x5110
561 #if __i386 || __i386__ 590 #if __i386 || __i386__
562 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory") 591 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory")
563 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE /* non-lock xchg might be enough */ 592 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("" : : : "memory")
564 #define ECB_MEMORY_FENCE_RELEASE do { } while (0) /* unlikely to change in future cpus */ 593 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("")
565 #elif __amd64 || __amd64__ || __x86_64 || __x86_64__ 594 #elif __amd64 || __amd64__ || __x86_64 || __x86_64__
566 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory") 595 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory")
567 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("lfence" : : : "memory") 596 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("" : : : "memory")
568 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("sfence") /* play safe - not needed in any current cpu */ 597 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("")
569 #elif __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__ 598 #elif __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__
570 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory") 599 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory")
571 #elif defined __ARM_ARCH_6__ || defined __ARM_ARCH_6J__ \ 600 #elif defined __ARM_ARCH_6__ || defined __ARM_ARCH_6J__ \
572 || defined __ARM_ARCH_6K__ || defined __ARM_ARCH_6ZK__ 601 || defined __ARM_ARCH_6K__ || defined __ARM_ARCH_6ZK__
573 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mcr p15,0,%0,c7,c10,5" : : "r" (0) : "memory") 602 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mcr p15,0,%0,c7,c10,5" : : "r" (0) : "memory")
574 #elif defined __ARM_ARCH_7__ || defined __ARM_ARCH_7A__ \ 603 #elif defined __ARM_ARCH_7__ || defined __ARM_ARCH_7A__ \
575 || defined __ARM_ARCH_7M__ || defined __ARM_ARCH_7R__ 604 || defined __ARM_ARCH_7M__ || defined __ARM_ARCH_7R__
576 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("dmb" : : : "memory") 605 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("dmb" : : : "memory")
577 #elif __sparc || __sparc__ 606 #elif __sparc || __sparc__
578 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad | #StoreStore | #StoreLoad | " : : : "memory") 607 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad | #StoreStore | #StoreLoad" : : : "memory")
579 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad" : : : "memory") 608 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad" : : : "memory")
580 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("membar #LoadStore | #StoreStore") 609 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("membar #LoadStore | #StoreStore")
581 #elif defined __s390__ || defined __s390x__ 610 #elif defined __s390__ || defined __s390x__
582 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("bcr 15,0" : : : "memory") 611 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("bcr 15,0" : : : "memory")
583 #elif defined __mips__ 612 #elif defined __mips__
584 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory") 613 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory")
585 #elif defined __alpha__ 614 #elif defined __alpha__
586 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mb" : : : "memory") 615 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mb" : : : "memory")
616 #elif defined __hppa__
617 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("" : : : "memory")
618 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("")
619 #elif defined __ia64__
620 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mf" : : : "memory")
587 #endif 621 #endif
588 #endif 622 #endif
589#endif 623#endif
590 624
591#ifndef ECB_MEMORY_FENCE 625#ifndef ECB_MEMORY_FENCE
626 #if ECB_GCC_VERSION(4,7)
627 /* see comment below (stdatomic.h) about the C11 memory model. */
628 #define ECB_MEMORY_FENCE __atomic_thread_fence (__ATOMIC_SEQ_CST)
629
630 /* The __has_feature syntax from clang is so misdesigned that we cannot use it
631 * without risking compile time errors with other compilers. We *could*
632 * define our own ecb_clang_has_feature, but I just can't be bothered to work
633 * around this shit time and again.
634 * #elif defined __clang && __has_feature (cxx_atomic)
635 * // see comment below (stdatomic.h) about the C11 memory model.
636 * #define ECB_MEMORY_FENCE __c11_atomic_thread_fence (__ATOMIC_SEQ_CST)
637 */
638
592 #if ECB_GCC_VERSION(4,4) || defined __INTEL_COMPILER || defined __clang__ 639 #elif ECB_GCC_VERSION(4,4) || defined __INTEL_COMPILER || defined __clang__
593 #define ECB_MEMORY_FENCE __sync_synchronize () 640 #define ECB_MEMORY_FENCE __sync_synchronize ()
594 /*#define ECB_MEMORY_FENCE_ACQUIRE ({ char dummy = 0; __sync_lock_test_and_set (&dummy, 1); }) */
595 /*#define ECB_MEMORY_FENCE_RELEASE ({ char dummy = 1; __sync_lock_release (&dummy ); }) */
596 #elif _MSC_VER >= 1400 /* VC++ 2005 */ 641 #elif _MSC_VER >= 1400 /* VC++ 2005 */
597 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier) 642 #pragma intrinsic(_ReadBarrier,_WriteBarrier,_ReadWriteBarrier)
598 #define ECB_MEMORY_FENCE _ReadWriteBarrier () 643 #define ECB_MEMORY_FENCE _ReadWriteBarrier ()
599 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */ 644 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */
600 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier () 645 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier ()
610 #define ECB_MEMORY_FENCE __sync () 655 #define ECB_MEMORY_FENCE __sync ()
611 #endif 656 #endif
612#endif 657#endif
613 658
614#ifndef ECB_MEMORY_FENCE 659#ifndef ECB_MEMORY_FENCE
660 #if ECB_C11 && !defined __STDC_NO_ATOMICS__
661 /* we assume that these memory fences work on all variables/all memory accesses, */
662 /* not just C11 atomics and atomic accesses */
663 #include <stdatomic.h>
664 /* Unfortunately, neither gcc 4.7 nor clang 3.1 generate any instructions for */
665 /* any fence other than seq_cst, which isn't very efficient for us. */
666 /* Why that is, we don't know - either the C11 memory model is quite useless */
667 /* for most usages, or gcc and clang have a bug */
668 /* I *currently* lean towards the latter, and inefficiently implement */
669 /* all three of ecb's fences as a seq_cst fence */
670 #define ECB_MEMORY_FENCE atomic_thread_fence (memory_order_seq_cst)
671 #endif
672#endif
673
674#ifndef ECB_MEMORY_FENCE
615 #if !ECB_AVOID_PTHREADS 675 #if !ECB_AVOID_PTHREADS
616 /* 676 /*
617 * if you get undefined symbol references to pthread_mutex_lock, 677 * if you get undefined symbol references to pthread_mutex_lock,
618 * or failure to find pthread.h, then you should implement 678 * or failure to find pthread.h, then you should implement
619 * the ECB_MEMORY_FENCE operations for your cpu/compiler 679 * the ECB_MEMORY_FENCE operations for your cpu/compiler
637 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE 697 #define ECB_MEMORY_FENCE_RELEASE ECB_MEMORY_FENCE
638#endif 698#endif
639 699
640/*****************************************************************************/ 700/*****************************************************************************/
641 701
642#define ECB_C99 (__STDC_VERSION__ >= 199901L)
643
644#if __cplusplus 702#if __cplusplus
645 #define ecb_inline static inline 703 #define ecb_inline static inline
646#elif ECB_GCC_VERSION(2,5) 704#elif ECB_GCC_VERSION(2,5)
647 #define ecb_inline static __inline__ 705 #define ecb_inline static __inline__
648#elif ECB_C99 706#elif ECB_C99
686#elif ECB_GCC_VERSION(3,0) 744#elif ECB_GCC_VERSION(3,0)
687 #define ecb_decltype(x) __typeof(x) 745 #define ecb_decltype(x) __typeof(x)
688#endif 746#endif
689 747
690#define ecb_noinline ecb_attribute ((__noinline__)) 748#define ecb_noinline ecb_attribute ((__noinline__))
691#define ecb_noreturn ecb_attribute ((__noreturn__))
692#define ecb_unused ecb_attribute ((__unused__)) 749#define ecb_unused ecb_attribute ((__unused__))
693#define ecb_const ecb_attribute ((__const__)) 750#define ecb_const ecb_attribute ((__const__))
694#define ecb_pure ecb_attribute ((__pure__)) 751#define ecb_pure ecb_attribute ((__pure__))
752
753#if ECB_C11
754 #define ecb_noreturn _Noreturn
755#else
756 #define ecb_noreturn ecb_attribute ((__noreturn__))
757#endif
695 758
696#if ECB_GCC_VERSION(4,3) 759#if ECB_GCC_VERSION(4,3)
697 #define ecb_artificial ecb_attribute ((__artificial__)) 760 #define ecb_artificial ecb_attribute ((__artificial__))
698 #define ecb_hot ecb_attribute ((__hot__)) 761 #define ecb_hot ecb_attribute ((__hot__))
699 #define ecb_cold ecb_attribute ((__cold__)) 762 #define ecb_cold ecb_attribute ((__cold__))
790 853
791 return r + ecb_ld32 (x); 854 return r + ecb_ld32 (x);
792 } 855 }
793#endif 856#endif
794 857
858ecb_function_ ecb_bool ecb_is_pot32 (uint32_t x) ecb_const;
859ecb_function_ ecb_bool ecb_is_pot32 (uint32_t x) { return !(x & (x - 1)); }
860ecb_function_ ecb_bool ecb_is_pot64 (uint64_t x) ecb_const;
861ecb_function_ ecb_bool ecb_is_pot64 (uint64_t x) { return !(x & (x - 1)); }
862
795ecb_function_ uint8_t ecb_bitrev8 (uint8_t x) ecb_const; 863ecb_function_ uint8_t ecb_bitrev8 (uint8_t x) ecb_const;
796ecb_function_ uint8_t ecb_bitrev8 (uint8_t x) 864ecb_function_ uint8_t ecb_bitrev8 (uint8_t x)
797{ 865{
798 return ( (x * 0x0802U & 0x22110U) 866 return ( (x * 0x0802U & 0x22110U)
799 | (x * 0x8020U & 0x88440U)) * 0x10101U >> 16; 867 | (x * 0x8020U & 0x88440U)) * 0x10101U >> 16;
883 ecb_inline void ecb_unreachable (void) ecb_noreturn; 951 ecb_inline void ecb_unreachable (void) ecb_noreturn;
884 ecb_inline void ecb_unreachable (void) { } 952 ecb_inline void ecb_unreachable (void) { }
885#endif 953#endif
886 954
887/* try to tell the compiler that some condition is definitely true */ 955/* try to tell the compiler that some condition is definitely true */
888#define ecb_assume(cond) do { if (!(cond)) ecb_unreachable (); } while (0) 956#define ecb_assume(cond) if (!(cond)) ecb_unreachable (); else 0
889 957
890ecb_inline unsigned char ecb_byteorder_helper (void) ecb_const; 958ecb_inline unsigned char ecb_byteorder_helper (void) ecb_const;
891ecb_inline unsigned char 959ecb_inline unsigned char
892ecb_byteorder_helper (void) 960ecb_byteorder_helper (void)
893{ 961{
894 const uint32_t u = 0x11223344; 962 /* the union code still generates code under pressure in gcc, */
895 return *(unsigned char *)&u; 963 /* but less than using pointers, and always seems to */
964 /* successfully return a constant. */
965 /* the reason why we have this horrible preprocessor mess */
966 /* is to avoid it in all cases, at least on common architectures */
967 /* or when using a recent enough gcc version (>= 4.6) */
968#if __i386 || __i386__ || _M_X86 || __amd64 || __amd64__ || _M_X64
969 return 0x44;
970#elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
971 return 0x44;
972#elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
973 return 0x11;
974#else
975 union
976 {
977 uint32_t i;
978 uint8_t c;
979 } u = { 0x11223344 };
980 return u.c;
981#endif
896} 982}
897 983
898ecb_inline ecb_bool ecb_big_endian (void) ecb_const; 984ecb_inline ecb_bool ecb_big_endian (void) ecb_const;
899ecb_inline ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11; } 985ecb_inline ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11; }
900ecb_inline ecb_bool ecb_little_endian (void) ecb_const; 986ecb_inline ecb_bool ecb_little_endian (void) ecb_const;
931 } 1017 }
932#else 1018#else
933 #define ecb_array_length(name) (sizeof (name) / sizeof (name [0])) 1019 #define ecb_array_length(name) (sizeof (name) / sizeof (name [0]))
934#endif 1020#endif
935 1021
1022/*******************************************************************************/
1023/* floating point stuff, can be disabled by defining ECB_NO_LIBM */
1024
1025/* basically, everything uses "ieee pure-endian" floating point numbers */
1026/* the only noteworthy exception is ancient armle, which uses order 43218765 */
1027#if 0 \
1028 || __i386 || __i386__ \
1029 || __amd64 || __amd64__ || __x86_64 || __x86_64__ \
1030 || __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__ \
1031 || defined __arm__ && defined __ARM_EABI__ \
1032 || defined __s390__ || defined __s390x__ \
1033 || defined __mips__ \
1034 || defined __alpha__ \
1035 || defined __hppa__ \
1036 || defined __ia64__ \
1037 || defined _M_IX86 || defined _M_AMD64 || defined _M_IA64
1038 #define ECB_STDFP 1
1039 #include <string.h> /* for memcpy */
1040#else
1041 #define ECB_STDFP 0
1042 #include <math.h> /* for frexp*, ldexp* */
1043#endif
1044
1045#ifndef ECB_NO_LIBM
1046
1047 /* convert a float to ieee single/binary32 */
1048 ecb_function_ uint32_t ecb_float_to_binary32 (float x) ecb_const;
1049 ecb_function_ uint32_t
1050 ecb_float_to_binary32 (float x)
1051 {
1052 uint32_t r;
1053
1054 #if ECB_STDFP
1055 memcpy (&r, &x, 4);
1056 #else
1057 /* slow emulation, works for anything but -0 */
1058 uint32_t m;
1059 int e;
1060
1061 if (x == 0e0f ) return 0x00000000U;
1062 if (x > +3.40282346638528860e+38f) return 0x7f800000U;
1063 if (x < -3.40282346638528860e+38f) return 0xff800000U;
1064 if (x != x ) return 0x7fbfffffU;
1065
1066 m = frexpf (x, &e) * 0x1000000U;
1067
1068 r = m & 0x80000000U;
1069
1070 if (r)
1071 m = -m;
1072
1073 if (e <= -126)
1074 {
1075 m &= 0xffffffU;
1076 m >>= (-125 - e);
1077 e = -126;
1078 }
1079
1080 r |= (e + 126) << 23;
1081 r |= m & 0x7fffffU;
1082 #endif
1083
1084 return r;
1085 }
1086
1087 /* converts an ieee single/binary32 to a float */
1088 ecb_function_ float ecb_binary32_to_float (uint32_t x) ecb_const;
1089 ecb_function_ float
1090 ecb_binary32_to_float (uint32_t x)
1091 {
1092 float r;
1093
1094 #if ECB_STDFP
1095 memcpy (&r, &x, 4);
1096 #else
1097 /* emulation, only works for normals and subnormals and +0 */
1098 int neg = x >> 31;
1099 int e = (x >> 23) & 0xffU;
1100
1101 x &= 0x7fffffU;
1102
1103 if (e)
1104 x |= 0x800000U;
1105 else
1106 e = 1;
1107
1108 /* we distrust ldexpf a bit and do the 2**-24 scaling by an extra multiply */
1109 r = ldexpf (x * (0.5f / 0x800000U), e - 126);
1110
1111 r = neg ? -r : r;
1112 #endif
1113
1114 return r;
1115 }
1116
1117 /* convert a double to ieee double/binary64 */
1118 ecb_function_ uint64_t ecb_double_to_binary64 (double x) ecb_const;
1119 ecb_function_ uint64_t
1120 ecb_double_to_binary64 (double x)
1121 {
1122 uint64_t r;
1123
1124 #if ECB_STDFP
1125 memcpy (&r, &x, 8);
1126 #else
1127 /* slow emulation, works for anything but -0 */
1128 uint64_t m;
1129 int e;
1130
1131 if (x == 0e0 ) return 0x0000000000000000U;
1132 if (x > +1.79769313486231470e+308) return 0x7ff0000000000000U;
1133 if (x < -1.79769313486231470e+308) return 0xfff0000000000000U;
1134 if (x != x ) return 0X7ff7ffffffffffffU;
1135
1136 m = frexp (x, &e) * 0x20000000000000U;
1137
1138 r = m & 0x8000000000000000;;
1139
1140 if (r)
1141 m = -m;
1142
1143 if (e <= -1022)
1144 {
1145 m &= 0x1fffffffffffffU;
1146 m >>= (-1021 - e);
1147 e = -1022;
1148 }
1149
1150 r |= ((uint64_t)(e + 1022)) << 52;
1151 r |= m & 0xfffffffffffffU;
1152 #endif
1153
1154 return r;
1155 }
1156
1157 /* converts an ieee double/binary64 to a double */
1158 ecb_function_ double ecb_binary64_to_double (uint64_t x) ecb_const;
1159 ecb_function_ double
1160 ecb_binary64_to_double (uint64_t x)
1161 {
1162 double r;
1163
1164 #if ECB_STDFP
1165 memcpy (&r, &x, 8);
1166 #else
1167 /* emulation, only works for normals and subnormals and +0 */
1168 int neg = x >> 63;
1169 int e = (x >> 52) & 0x7ffU;
1170
1171 x &= 0xfffffffffffffU;
1172
1173 if (e)
1174 x |= 0x10000000000000U;
1175 else
1176 e = 1;
1177
1178 /* we distrust ldexp a bit and do the 2**-53 scaling by an extra multiply */
1179 r = ldexp (x * (0.5 / 0x10000000000000U), e - 1022);
1180
1181 r = neg ? -r : r;
1182 #endif
1183
1184 return r;
1185 }
1186
1187#endif
1188
936#endif 1189#endif
937 1190
938/* ECB.H END */ 1191/* ECB.H END */
939 1192
940#if ECB_MEMORY_FENCE_NEEDS_PTHREADS 1193#if ECB_MEMORY_FENCE_NEEDS_PTHREADS
1109#endif 1362#endif
1110 1363
1111static void (*syserr_cb)(const char *msg) EV_THROW; 1364static void (*syserr_cb)(const char *msg) EV_THROW;
1112 1365
1113void ecb_cold 1366void ecb_cold
1114ev_set_syserr_cb (void (*cb)(const char *msg)) EV_THROW 1367ev_set_syserr_cb (void (*cb)(const char *msg) EV_THROW) EV_THROW
1115{ 1368{
1116 syserr_cb = cb; 1369 syserr_cb = cb;
1117} 1370}
1118 1371
1119static void noinline ecb_cold 1372static void noinline ecb_cold
1137 abort (); 1390 abort ();
1138 } 1391 }
1139} 1392}
1140 1393
1141static void * 1394static void *
1142ev_realloc_emul (void *ptr, long size) 1395ev_realloc_emul (void *ptr, long size) EV_THROW
1143{ 1396{
1144#if __GLIBC__
1145 return realloc (ptr, size);
1146#else
1147 /* some systems, notably openbsd and darwin, fail to properly 1397 /* some systems, notably openbsd and darwin, fail to properly
1148 * implement realloc (x, 0) (as required by both ansi c-89 and 1398 * implement realloc (x, 0) (as required by both ansi c-89 and
1149 * the single unix specification, so work around them here. 1399 * the single unix specification, so work around them here.
1400 * recently, also (at least) fedora and debian started breaking it,
1401 * despite documenting it otherwise.
1150 */ 1402 */
1151 1403
1152 if (size) 1404 if (size)
1153 return realloc (ptr, size); 1405 return realloc (ptr, size);
1154 1406
1155 free (ptr); 1407 free (ptr);
1156 return 0; 1408 return 0;
1157#endif
1158} 1409}
1159 1410
1160static void *(*alloc)(void *ptr, long size) EV_THROW = ev_realloc_emul; 1411static void *(*alloc)(void *ptr, long size) EV_THROW = ev_realloc_emul;
1161 1412
1162void ecb_cold 1413void ecb_cold
1163ev_set_allocator (void *(*cb)(void *ptr, long size)) EV_THROW 1414ev_set_allocator (void *(*cb)(void *ptr, long size) EV_THROW) EV_THROW
1164{ 1415{
1165 alloc = cb; 1416 alloc = cb;
1166} 1417}
1167 1418
1168inline_speed void * 1419inline_speed void *
1817static void noinline ecb_cold 2068static void noinline ecb_cold
1818evpipe_init (EV_P) 2069evpipe_init (EV_P)
1819{ 2070{
1820 if (!ev_is_active (&pipe_w)) 2071 if (!ev_is_active (&pipe_w))
1821 { 2072 {
2073 int fds [2];
2074
1822# if EV_USE_EVENTFD 2075# if EV_USE_EVENTFD
2076 fds [0] = -1;
1823 evfd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC); 2077 fds [1] = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC);
1824 if (evfd < 0 && errno == EINVAL) 2078 if (fds [1] < 0 && errno == EINVAL)
1825 evfd = eventfd (0, 0); 2079 fds [1] = eventfd (0, 0);
1826 2080
1827 if (evfd >= 0) 2081 if (fds [1] < 0)
1828 {
1829 evpipe [0] = -1;
1830 fd_intern (evfd); /* doing it twice doesn't hurt */
1831 ev_io_set (&pipe_w, evfd, EV_READ);
1832 }
1833 else
1834# endif 2082# endif
1835 { 2083 {
1836 while (pipe (evpipe)) 2084 while (pipe (fds))
1837 ev_syserr ("(libev) error creating signal/async pipe"); 2085 ev_syserr ("(libev) error creating signal/async pipe");
1838 2086
1839 fd_intern (evpipe [0]); 2087 fd_intern (fds [0]);
1840 fd_intern (evpipe [1]);
1841 ev_io_set (&pipe_w, evpipe [0], EV_READ);
1842 } 2088 }
1843 2089
2090 fd_intern (fds [1]);
2091
2092 evpipe [0] = fds [0];
2093
2094 if (evpipe [1] < 0)
2095 evpipe [1] = fds [1]; /* first call, set write fd */
2096 else
2097 {
2098 /* on subsequent calls, do not change evpipe [1] */
2099 /* so that evpipe_write can always rely on its value. */
2100 /* this branch does not do anything sensible on windows, */
2101 /* so must not be executed on windows */
2102
2103 dup2 (fds [1], evpipe [1]);
2104 close (fds [1]);
2105 }
2106
2107 ev_io_set (&pipe_w, evpipe [0] < 0 ? evpipe [1] : evpipe [0], EV_READ);
1844 ev_io_start (EV_A_ &pipe_w); 2108 ev_io_start (EV_A_ &pipe_w);
1845 ev_unref (EV_A); /* watcher should not keep loop alive */ 2109 ev_unref (EV_A); /* watcher should not keep loop alive */
1846 } 2110 }
1847} 2111}
1848 2112
1853 2117
1854 if (expect_true (*flag)) 2118 if (expect_true (*flag))
1855 return; 2119 return;
1856 2120
1857 *flag = 1; 2121 *flag = 1;
1858
1859 ECB_MEMORY_FENCE_RELEASE; /* make sure flag is visible before the wakeup */ 2122 ECB_MEMORY_FENCE_RELEASE; /* make sure flag is visible before the wakeup */
1860 2123
1861 pipe_write_skipped = 1; 2124 pipe_write_skipped = 1;
1862 2125
1863 ECB_MEMORY_FENCE; /* make sure pipe_write_skipped is visible before we check pipe_write_wanted */ 2126 ECB_MEMORY_FENCE; /* make sure pipe_write_skipped is visible before we check pipe_write_wanted */
1864 2127
1865 if (pipe_write_wanted) 2128 if (pipe_write_wanted)
1866 { 2129 {
1867 int old_errno; 2130 int old_errno;
1868 2131
1869 pipe_write_skipped = 0; /* just an optimisation, no fence needed */ 2132 pipe_write_skipped = 0;
2133 ECB_MEMORY_FENCE_RELEASE;
1870 2134
1871 old_errno = errno; /* save errno because write will clobber it */ 2135 old_errno = errno; /* save errno because write will clobber it */
1872 2136
1873#if EV_USE_EVENTFD 2137#if EV_USE_EVENTFD
1874 if (evfd >= 0) 2138 if (evpipe [0] < 0)
1875 { 2139 {
1876 uint64_t counter = 1; 2140 uint64_t counter = 1;
1877 write (evfd, &counter, sizeof (uint64_t)); 2141 write (evpipe [1], &counter, sizeof (uint64_t));
1878 } 2142 }
1879 else 2143 else
1880#endif 2144#endif
1881 { 2145 {
1882#ifdef _WIN32 2146#ifdef _WIN32
1902 int i; 2166 int i;
1903 2167
1904 if (revents & EV_READ) 2168 if (revents & EV_READ)
1905 { 2169 {
1906#if EV_USE_EVENTFD 2170#if EV_USE_EVENTFD
1907 if (evfd >= 0) 2171 if (evpipe [0] < 0)
1908 { 2172 {
1909 uint64_t counter; 2173 uint64_t counter;
1910 read (evfd, &counter, sizeof (uint64_t)); 2174 read (evpipe [1], &counter, sizeof (uint64_t));
1911 } 2175 }
1912 else 2176 else
1913#endif 2177#endif
1914 { 2178 {
1915 char dummy[4]; 2179 char dummy[4];
1916#ifdef _WIN32 2180#ifdef _WIN32
1917 WSABUF buf; 2181 WSABUF buf;
1918 DWORD recvd; 2182 DWORD recvd;
2183 DWORD flags = 0;
1919 buf.buf = dummy; 2184 buf.buf = dummy;
1920 buf.len = sizeof (dummy); 2185 buf.len = sizeof (dummy);
1921 WSARecv (EV_FD_TO_WIN32_HANDLE (evpipe [0]), &buf, 1, &recvd, 0, 0, 0); 2186 WSARecv (EV_FD_TO_WIN32_HANDLE (evpipe [0]), &buf, 1, &recvd, &flags, 0, 0);
1922#else 2187#else
1923 read (evpipe [0], &dummy, sizeof (dummy)); 2188 read (evpipe [0], &dummy, sizeof (dummy));
1924#endif 2189#endif
1925 } 2190 }
1926 } 2191 }
1932#if EV_SIGNAL_ENABLE 2197#if EV_SIGNAL_ENABLE
1933 if (sig_pending) 2198 if (sig_pending)
1934 { 2199 {
1935 sig_pending = 0; 2200 sig_pending = 0;
1936 2201
1937 ECB_MEMORY_FENCE_RELEASE; 2202 ECB_MEMORY_FENCE;
1938 2203
1939 for (i = EV_NSIG - 1; i--; ) 2204 for (i = EV_NSIG - 1; i--; )
1940 if (expect_false (signals [i].pending)) 2205 if (expect_false (signals [i].pending))
1941 ev_feed_signal_event (EV_A_ i + 1); 2206 ev_feed_signal_event (EV_A_ i + 1);
1942 } 2207 }
1945#if EV_ASYNC_ENABLE 2210#if EV_ASYNC_ENABLE
1946 if (async_pending) 2211 if (async_pending)
1947 { 2212 {
1948 async_pending = 0; 2213 async_pending = 0;
1949 2214
1950 ECB_MEMORY_FENCE_RELEASE; 2215 ECB_MEMORY_FENCE;
1951 2216
1952 for (i = asynccnt; i--; ) 2217 for (i = asynccnt; i--; )
1953 if (asyncs [i]->sent) 2218 if (asyncs [i]->sent)
1954 { 2219 {
1955 asyncs [i]->sent = 0; 2220 asyncs [i]->sent = 0;
2221 ECB_MEMORY_FENCE_RELEASE;
1956 ev_feed_event (EV_A_ asyncs [i], EV_ASYNC); 2222 ev_feed_event (EV_A_ asyncs [i], EV_ASYNC);
1957 } 2223 }
1958 } 2224 }
1959#endif 2225#endif
1960} 2226}
1963 2229
1964void 2230void
1965ev_feed_signal (int signum) EV_THROW 2231ev_feed_signal (int signum) EV_THROW
1966{ 2232{
1967#if EV_MULTIPLICITY 2233#if EV_MULTIPLICITY
2234 ECB_MEMORY_FENCE_ACQUIRE;
1968 EV_P = signals [signum - 1].loop; 2235 EV_P = signals [signum - 1].loop;
1969 2236
1970 if (!EV_A) 2237 if (!EV_A)
1971 return; 2238 return;
1972#endif 2239#endif
1973 2240
1974 if (!ev_active (&pipe_w))
1975 return;
1976
1977 signals [signum - 1].pending = 1; 2241 signals [signum - 1].pending = 1;
1978 evpipe_write (EV_A_ &sig_pending); 2242 evpipe_write (EV_A_ &sig_pending);
1979} 2243}
1980 2244
1981static void 2245static void
1991void noinline 2255void noinline
1992ev_feed_signal_event (EV_P_ int signum) EV_THROW 2256ev_feed_signal_event (EV_P_ int signum) EV_THROW
1993{ 2257{
1994 WL w; 2258 WL w;
1995 2259
1996 if (expect_false (signum <= 0 || signum > EV_NSIG)) 2260 if (expect_false (signum <= 0 || signum >= EV_NSIG))
1997 return; 2261 return;
1998 2262
1999 --signum; 2263 --signum;
2000 2264
2001#if EV_MULTIPLICITY 2265#if EV_MULTIPLICITY
2005 if (expect_false (signals [signum].loop != EV_A)) 2269 if (expect_false (signals [signum].loop != EV_A))
2006 return; 2270 return;
2007#endif 2271#endif
2008 2272
2009 signals [signum].pending = 0; 2273 signals [signum].pending = 0;
2274 ECB_MEMORY_FENCE_RELEASE;
2010 2275
2011 for (w = signals [signum].head; w; w = w->next) 2276 for (w = signals [signum].head; w; w = w->next)
2012 ev_feed_event (EV_A_ (W)w, EV_SIGNAL); 2277 ev_feed_event (EV_A_ (W)w, EV_SIGNAL);
2013} 2278}
2014 2279
2298#if EV_ASYNC_ENABLE 2563#if EV_ASYNC_ENABLE
2299 async_pending = 0; 2564 async_pending = 0;
2300#endif 2565#endif
2301 pipe_write_skipped = 0; 2566 pipe_write_skipped = 0;
2302 pipe_write_wanted = 0; 2567 pipe_write_wanted = 0;
2568 evpipe [0] = -1;
2569 evpipe [1] = -1;
2303#if EV_USE_INOTIFY 2570#if EV_USE_INOTIFY
2304 fs_fd = flags & EVFLAG_NOINOTIFY ? -1 : -2; 2571 fs_fd = flags & EVFLAG_NOINOTIFY ? -1 : -2;
2305#endif 2572#endif
2306#if EV_USE_SIGNALFD 2573#if EV_USE_SIGNALFD
2307 sigfd = flags & EVFLAG_SIGNALFD ? -2 : -1; 2574 sigfd = flags & EVFLAG_SIGNALFD ? -2 : -1;
2358 EV_INVOKE_PENDING; 2625 EV_INVOKE_PENDING;
2359 } 2626 }
2360#endif 2627#endif
2361 2628
2362#if EV_CHILD_ENABLE 2629#if EV_CHILD_ENABLE
2363 if (ev_is_active (&childev)) 2630 if (ev_is_default_loop (EV_A) && ev_is_active (&childev))
2364 { 2631 {
2365 ev_ref (EV_A); /* child watcher */ 2632 ev_ref (EV_A); /* child watcher */
2366 ev_signal_stop (EV_A_ &childev); 2633 ev_signal_stop (EV_A_ &childev);
2367 } 2634 }
2368#endif 2635#endif
2370 if (ev_is_active (&pipe_w)) 2637 if (ev_is_active (&pipe_w))
2371 { 2638 {
2372 /*ev_ref (EV_A);*/ 2639 /*ev_ref (EV_A);*/
2373 /*ev_io_stop (EV_A_ &pipe_w);*/ 2640 /*ev_io_stop (EV_A_ &pipe_w);*/
2374 2641
2375#if EV_USE_EVENTFD
2376 if (evfd >= 0)
2377 close (evfd);
2378#endif
2379
2380 if (evpipe [0] >= 0)
2381 {
2382 EV_WIN32_CLOSE_FD (evpipe [0]); 2642 if (evpipe [0] >= 0) EV_WIN32_CLOSE_FD (evpipe [0]);
2383 EV_WIN32_CLOSE_FD (evpipe [1]); 2643 if (evpipe [1] >= 0) EV_WIN32_CLOSE_FD (evpipe [1]);
2384 }
2385 } 2644 }
2386 2645
2387#if EV_USE_SIGNALFD 2646#if EV_USE_SIGNALFD
2388 if (ev_is_active (&sigfd_w)) 2647 if (ev_is_active (&sigfd_w))
2389 close (sigfd); 2648 close (sigfd);
2475#endif 2734#endif
2476#if EV_USE_INOTIFY 2735#if EV_USE_INOTIFY
2477 infy_fork (EV_A); 2736 infy_fork (EV_A);
2478#endif 2737#endif
2479 2738
2739#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
2480 if (ev_is_active (&pipe_w)) 2740 if (ev_is_active (&pipe_w))
2481 { 2741 {
2482 /* pipe_write_wanted must be false now, so modifying fd vars should be safe */ 2742 /* pipe_write_wanted must be false now, so modifying fd vars should be safe */
2483 2743
2484 ev_ref (EV_A); 2744 ev_ref (EV_A);
2485 ev_io_stop (EV_A_ &pipe_w); 2745 ev_io_stop (EV_A_ &pipe_w);
2486 2746
2487#if EV_USE_EVENTFD
2488 if (evfd >= 0)
2489 close (evfd);
2490#endif
2491
2492 if (evpipe [0] >= 0) 2747 if (evpipe [0] >= 0)
2493 {
2494 EV_WIN32_CLOSE_FD (evpipe [0]); 2748 EV_WIN32_CLOSE_FD (evpipe [0]);
2495 EV_WIN32_CLOSE_FD (evpipe [1]);
2496 }
2497 2749
2498#if EV_SIGNAL_ENABLE || EV_ASYNC_ENABLE
2499 evpipe_init (EV_A); 2750 evpipe_init (EV_A);
2500 /* now iterate over everything, in case we missed something */ 2751 /* iterate over everything, in case we missed something before */
2501 pipecb (EV_A_ &pipe_w, EV_READ); 2752 ev_feed_event (EV_A_ &pipe_w, EV_CUSTOM);
2502#endif
2503 } 2753 }
2754#endif
2504 2755
2505 postfork = 0; 2756 postfork = 0;
2506} 2757}
2507 2758
2508#if EV_MULTIPLICITY 2759#if EV_MULTIPLICITY
2681} 2932}
2682 2933
2683void 2934void
2684ev_loop_fork (EV_P) EV_THROW 2935ev_loop_fork (EV_P) EV_THROW
2685{ 2936{
2686 postfork = 1; /* must be in line with ev_default_fork */ 2937 postfork = 1;
2687} 2938}
2688 2939
2689/*****************************************************************************/ 2940/*****************************************************************************/
2690 2941
2691void 2942void
2707} 2958}
2708 2959
2709void noinline 2960void noinline
2710ev_invoke_pending (EV_P) 2961ev_invoke_pending (EV_P)
2711{ 2962{
2712 for (pendingpri = NUMPRI; pendingpri--; ) /* pendingpri is modified during the loop */ 2963 pendingpri = NUMPRI;
2964
2965 while (pendingpri) /* pendingpri possibly gets modified in the inner loop */
2966 {
2967 --pendingpri;
2968
2713 while (pendingcnt [pendingpri]) 2969 while (pendingcnt [pendingpri])
2714 { 2970 {
2715 ANPENDING *p = pendings [pendingpri] + --pendingcnt [pendingpri]; 2971 ANPENDING *p = pendings [pendingpri] + --pendingcnt [pendingpri];
2716 2972
2717 p->w->pending = 0; 2973 p->w->pending = 0;
2718 EV_CB_INVOKE (p->w, p->events); 2974 EV_CB_INVOKE (p->w, p->events);
2719 EV_FREQUENT_CHECK; 2975 EV_FREQUENT_CHECK;
2720 } 2976 }
2977 }
2721} 2978}
2722 2979
2723#if EV_IDLE_ENABLE 2980#if EV_IDLE_ENABLE
2724/* make idle watchers pending. this handles the "call-idle */ 2981/* make idle watchers pending. this handles the "call-idle */
2725/* only when higher priorities are idle" logic */ 2982/* only when higher priorities are idle" logic */
2815{ 3072{
2816 EV_FREQUENT_CHECK; 3073 EV_FREQUENT_CHECK;
2817 3074
2818 while (periodiccnt && ANHE_at (periodics [HEAP0]) < ev_rt_now) 3075 while (periodiccnt && ANHE_at (periodics [HEAP0]) < ev_rt_now)
2819 { 3076 {
2820 int feed_count = 0;
2821
2822 do 3077 do
2823 { 3078 {
2824 ev_periodic *w = (ev_periodic *)ANHE_w (periodics [HEAP0]); 3079 ev_periodic *w = (ev_periodic *)ANHE_w (periodics [HEAP0]);
2825 3080
2826 /*assert (("libev: inactive timer on periodic heap detected", ev_is_active (w)));*/ 3081 /*assert (("libev: inactive timer on periodic heap detected", ev_is_active (w)));*/
3085 backend_poll (EV_A_ waittime); 3340 backend_poll (EV_A_ waittime);
3086 assert ((loop_done = EVBREAK_CANCEL, 1)); /* assert for side effect */ 3341 assert ((loop_done = EVBREAK_CANCEL, 1)); /* assert for side effect */
3087 3342
3088 pipe_write_wanted = 0; /* just an optimisation, no fence needed */ 3343 pipe_write_wanted = 0; /* just an optimisation, no fence needed */
3089 3344
3345 ECB_MEMORY_FENCE_ACQUIRE;
3090 if (pipe_write_skipped) 3346 if (pipe_write_skipped)
3091 { 3347 {
3092 assert (("libev: pipe_w not active, but pipe not written", ev_is_active (&pipe_w))); 3348 assert (("libev: pipe_w not active, but pipe not written", ev_is_active (&pipe_w)));
3093 ev_feed_event (EV_A_ &pipe_w, EV_CUSTOM); 3349 ev_feed_event (EV_A_ &pipe_w, EV_CUSTOM);
3094 } 3350 }
3472#if EV_MULTIPLICITY 3728#if EV_MULTIPLICITY
3473 assert (("libev: a signal must not be attached to two different loops", 3729 assert (("libev: a signal must not be attached to two different loops",
3474 !signals [w->signum - 1].loop || signals [w->signum - 1].loop == loop)); 3730 !signals [w->signum - 1].loop || signals [w->signum - 1].loop == loop));
3475 3731
3476 signals [w->signum - 1].loop = EV_A; 3732 signals [w->signum - 1].loop = EV_A;
3733 ECB_MEMORY_FENCE_RELEASE;
3477#endif 3734#endif
3478 3735
3479 EV_FREQUENT_CHECK; 3736 EV_FREQUENT_CHECK;
3480 3737
3481#if EV_USE_SIGNALFD 3738#if EV_USE_SIGNALFD

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines