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

Comparing libev/ev.c (file contents):
Revision 1.402 by sf-exg, Tue Dec 20 10:34:10 2011 UTC vs.
Revision 1.411 by root, Tue Feb 21 04:34:02 2012 UTC

183# include EV_H 183# include EV_H
184#else 184#else
185# include "ev.h" 185# include "ev.h"
186#endif 186#endif
187 187
188#if EV_NO_THREADS
189# undef EV_NO_SMP
190# define EV_NO_SMP 1
191# undef ECB_NO_THREADS
192# define ECB_NO_THREADS 1
193#endif
194#if EV_NO_SMP
195# undef EV_NO_SMP
196# define ECB_NO_SMP 1
197#endif
198
188#ifndef _WIN32 199#ifndef _WIN32
189# include <sys/time.h> 200# include <sys/time.h>
190# include <sys/wait.h> 201# include <sys/wait.h>
191# include <unistd.h> 202# include <unistd.h>
192#else 203#else
467/* the following is ecb.h embedded into libev - use update_ev_c to update from an external copy */ 478/* the following is ecb.h embedded into libev - use update_ev_c to update from an external copy */
468/* ECB.H BEGIN */ 479/* ECB.H BEGIN */
469/* 480/*
470 * libecb - http://software.schmorp.de/pkg/libecb 481 * libecb - http://software.schmorp.de/pkg/libecb
471 * 482 *
472 * Copyright (©) 2009-2011 Marc Alexander Lehmann <libecb@schmorp.de> 483 * Copyright (©) 2009-2012 Marc Alexander Lehmann <libecb@schmorp.de>
473 * Copyright (©) 2011 Emanuele Giaquinta 484 * Copyright (©) 2011 Emanuele Giaquinta
474 * All rights reserved. 485 * All rights reserved.
475 * 486 *
476 * Redistribution and use in source and binary forms, with or without modifica- 487 * Redistribution and use in source and binary forms, with or without modifica-
477 * tion, are permitted provided that the following conditions are met: 488 * tion, are permitted provided that the following conditions are met:
534/*****************************************************************************/ 545/*****************************************************************************/
535 546
536/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */ 547/* ECB_NO_THREADS - ecb is not used by multiple threads, ever */
537/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */ 548/* ECB_NO_SMP - ecb might be used in multiple threads, but only on a single cpu */
538 549
550#if ECB_NO_THREADS
551# define ECB_NO_SMP 1
552#endif
553
539#if ECB_NO_THREADS || ECB_NO_SMP 554#if ECB_NO_THREADS || ECB_NO_SMP
540 #define ECB_MEMORY_FENCE do { } while (0) 555 #define ECB_MEMORY_FENCE do { } while (0)
541#endif 556#endif
542 557
543#ifndef ECB_MEMORY_FENCE 558#ifndef ECB_MEMORY_FENCE
544 #if ECB_GCC_VERSION(2,5) || defined(__INTEL_COMPILER) || defined(__clang__) 559 #if ECB_GCC_VERSION(2,5) || defined(__INTEL_COMPILER) || (__llvm__ && __GNUC__) || __SUNPRO_C >= 0x5110 || __SUNPRO_CC >= 0x5110
545 #if __i386__ 560 #if __i386 || __i386__
546 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory") 561 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory")
547 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE /* non-lock xchg might be enough */ 562 #define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE /* non-lock xchg might be enough */
548 #define ECB_MEMORY_FENCE_RELEASE do { } while (0) /* unlikely to change in future cpus */ 563 #define ECB_MEMORY_FENCE_RELEASE do { } while (0) /* unlikely to change in future cpus */
549 #elif __amd64 564 #elif __amd64 || __amd64__ || __x86_64 || __x86_64__
550 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory") 565 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mfence" : : : "memory")
551 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("lfence" : : : "memory") 566 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("lfence" : : : "memory")
552 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("sfence") /* play safe - not needed in any current cpu */ 567 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("sfence") /* play safe - not needed in any current cpu */
553 #elif __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__ 568 #elif __powerpc__ || __ppc__ || __powerpc64__ || __ppc64__
554 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory") 569 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("sync" : : : "memory")
556 || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6ZK__) 571 || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6ZK__)
557 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mcr p15,0,%0,c7,c10,5" : : "r" (0) : "memory") 572 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mcr p15,0,%0,c7,c10,5" : : "r" (0) : "memory")
558 #elif defined(__ARM_ARCH_7__ ) || defined(__ARM_ARCH_7A__ ) \ 573 #elif defined(__ARM_ARCH_7__ ) || defined(__ARM_ARCH_7A__ ) \
559 || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7R__ ) 574 || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7R__ )
560 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("dmb" : : : "memory") 575 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("dmb" : : : "memory")
576 #elif __sparc || __sparc__
577 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad | #StoreStore | #StoreLoad | " : : : "memory")
578 #define ECB_MEMORY_FENCE_ACQUIRE __asm__ __volatile__ ("membar #LoadStore | #LoadLoad" : : : "memory")
579 #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("membar #LoadStore | #StoreStore")
580 #elif defined(__s390__) || defined(__s390x__)
581 #define ECB_MEMORY_FENCE __asm__ __volatile__ ("bcr 15,0" : : : "memory")
561 #endif 582 #endif
562 #endif 583 #endif
563#endif 584#endif
564 585
565#ifndef ECB_MEMORY_FENCE 586#ifndef ECB_MEMORY_FENCE
573 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */ 594 #define ECB_MEMORY_FENCE_ACQUIRE _ReadWriteBarrier () /* according to msdn, _ReadBarrier is not a load fence */
574 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier () 595 #define ECB_MEMORY_FENCE_RELEASE _WriteBarrier ()
575 #elif defined(_WIN32) 596 #elif defined(_WIN32)
576 #include <WinNT.h> 597 #include <WinNT.h>
577 #define ECB_MEMORY_FENCE MemoryBarrier () /* actually just xchg on x86... scary */ 598 #define ECB_MEMORY_FENCE MemoryBarrier () /* actually just xchg on x86... scary */
599 #elif __SUNPRO_C >= 0x5110 || __SUNPRO_CC >= 0x5110
600 #include <mbarrier.h>
601 #define ECB_MEMORY_FENCE __machine_rw_barrier ()
602 #define ECB_MEMORY_FENCE_ACQUIRE __machine_r_barrier ()
603 #define ECB_MEMORY_FENCE_RELEASE __machine_w_barrier ()
578 #endif 604 #endif
579#endif 605#endif
580 606
581#ifndef ECB_MEMORY_FENCE 607#ifndef ECB_MEMORY_FENCE
582 #if !ECB_AVOID_PTHREADS 608 #if !ECB_AVOID_PTHREADS
757 783
758 return r + ecb_ld32 (x); 784 return r + ecb_ld32 (x);
759 } 785 }
760#endif 786#endif
761 787
788ecb_function_ uint8_t ecb_bitrev8 (uint8_t x) ecb_const;
789ecb_function_ uint8_t ecb_bitrev8 (uint8_t x)
790{
791 return ( (x * 0x0802U & 0x22110U)
792 | (x * 0x8020U & 0x88440U)) * 0x10101U >> 16;
793}
794
795ecb_function_ uint16_t ecb_bitrev16 (uint16_t x) ecb_const;
796ecb_function_ uint16_t ecb_bitrev16 (uint16_t x)
797{
798 x = ((x >> 1) & 0x5555) | ((x & 0x5555) << 1);
799 x = ((x >> 2) & 0x3333) | ((x & 0x3333) << 2);
800 x = ((x >> 4) & 0x0f0f) | ((x & 0x0f0f) << 4);
801 x = ( x >> 8 ) | ( x << 8);
802
803 return x;
804}
805
806ecb_function_ uint32_t ecb_bitrev32 (uint32_t x) ecb_const;
807ecb_function_ uint32_t ecb_bitrev32 (uint32_t x)
808{
809 x = ((x >> 1) & 0x55555555) | ((x & 0x55555555) << 1);
810 x = ((x >> 2) & 0x33333333) | ((x & 0x33333333) << 2);
811 x = ((x >> 4) & 0x0f0f0f0f) | ((x & 0x0f0f0f0f) << 4);
812 x = ((x >> 8) & 0x00ff00ff) | ((x & 0x00ff00ff) << 8);
813 x = ( x >> 16 ) | ( x << 16);
814
815 return x;
816}
817
762/* popcount64 is only available on 64 bit cpus as gcc builtin */ 818/* popcount64 is only available on 64 bit cpus as gcc builtin */
763/* so for this version we are lazy */ 819/* so for this version we are lazy */
764ecb_function_ int ecb_popcount64 (uint64_t x) ecb_const; 820ecb_function_ int ecb_popcount64 (uint64_t x) ecb_const;
765ecb_function_ int 821ecb_function_ int
766ecb_popcount64 (uint64_t x) 822ecb_popcount64 (uint64_t x)
815 871
816#if ECB_GCC_VERSION(4,5) 872#if ECB_GCC_VERSION(4,5)
817 #define ecb_unreachable() __builtin_unreachable () 873 #define ecb_unreachable() __builtin_unreachable ()
818#else 874#else
819 /* this seems to work fine, but gcc always emits a warning for it :/ */ 875 /* this seems to work fine, but gcc always emits a warning for it :/ */
820 ecb_function_ void ecb_unreachable (void) ecb_noreturn; 876 ecb_inline void ecb_unreachable (void) ecb_noreturn;
821 ecb_function_ void ecb_unreachable (void) { } 877 ecb_inline void ecb_unreachable (void) { }
822#endif 878#endif
823 879
824/* try to tell the compiler that some condition is definitely true */ 880/* try to tell the compiler that some condition is definitely true */
825#define ecb_assume(cond) do { if (!(cond)) ecb_unreachable (); } while (0) 881#define ecb_assume(cond) do { if (!(cond)) ecb_unreachable (); } while (0)
826 882
827ecb_function_ unsigned char ecb_byteorder_helper (void) ecb_const; 883ecb_inline unsigned char ecb_byteorder_helper (void) ecb_const;
828ecb_function_ unsigned char 884ecb_inline unsigned char
829ecb_byteorder_helper (void) 885ecb_byteorder_helper (void)
830{ 886{
831 const uint32_t u = 0x11223344; 887 const uint32_t u = 0x11223344;
832 return *(unsigned char *)&u; 888 return *(unsigned char *)&u;
833} 889}
834 890
835ecb_function_ ecb_bool ecb_big_endian (void) ecb_const; 891ecb_inline ecb_bool ecb_big_endian (void) ecb_const;
836ecb_function_ ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11; } 892ecb_inline ecb_bool ecb_big_endian (void) { return ecb_byteorder_helper () == 0x11; }
837ecb_function_ ecb_bool ecb_little_endian (void) ecb_const; 893ecb_inline ecb_bool ecb_little_endian (void) ecb_const;
838ecb_function_ ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper () == 0x44; } 894ecb_inline ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper () == 0x44; }
839 895
840#if ECB_GCC_VERSION(3,0) || ECB_C99 896#if ECB_GCC_VERSION(3,0) || ECB_C99
841 #define ecb_mod(m,n) ((m) % (n) + ((m) % (n) < 0 ? (n) : 0)) 897 #define ecb_mod(m,n) ((m) % (n) + ((m) % (n) < 0 ? (n) : 0))
842#else 898#else
843 #define ecb_mod(m,n) ((m) < 0 ? ((n) - 1 - ((-1 - (m)) % (n))) : ((m) % (n))) 899 #define ecb_mod(m,n) ((m) < 0 ? ((n) - 1 - ((-1 - (m)) % (n))) : ((m) % (n)))
1815 /* win32 people keep sending patches that change this write() to send() */ 1871 /* win32 people keep sending patches that change this write() to send() */
1816 /* and then run away. but send() is wrong, it wants a socket handle on win32 */ 1872 /* and then run away. but send() is wrong, it wants a socket handle on win32 */
1817 /* so when you think this write should be a send instead, please find out */ 1873 /* so when you think this write should be a send instead, please find out */
1818 /* where your send() is from - it's definitely not the microsoft send, and */ 1874 /* where your send() is from - it's definitely not the microsoft send, and */
1819 /* tell me. thank you. */ 1875 /* tell me. thank you. */
1876 /* it might be that your problem is that your environment needs EV_USE_WSASOCKET */
1877 /* check the ev documentation on how to use this flag */
1820 write (evpipe [1], &(evpipe [1]), 1); 1878 write (evpipe [1], &(evpipe [1]), 1);
1821 } 1879 }
1822 1880
1823 errno = old_errno; 1881 errno = old_errno;
1824 } 1882 }
3259 3317
3260void noinline 3318void noinline
3261ev_timer_again (EV_P_ ev_timer *w) 3319ev_timer_again (EV_P_ ev_timer *w)
3262{ 3320{
3263 EV_FREQUENT_CHECK; 3321 EV_FREQUENT_CHECK;
3322
3323 clear_pending (EV_A_ (W)w);
3264 3324
3265 if (ev_is_active (w)) 3325 if (ev_is_active (w))
3266 { 3326 {
3267 if (w->repeat) 3327 if (w->repeat)
3268 { 3328 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines