AH_TEMPLATE([CONFIG_RCU_COMPAT_ARCH], [Compatibility mode for i386 which lacks cmpxchg instruction.])
AH_TEMPLATE([CONFIG_RCU_ARM_HAVE_DMB], [Use the dmb instruction if available for use on ARM.])
AH_TEMPLATE([CONFIG_RCU_TLS], [TLS provided by the compiler.])
+AH_TEMPLATE([CONFIG_RCU_HAVE_CLOCK_GETTIME], [clock_gettime() is detected.])
# Allow overriding storage used for TLS variables.
AC_ARG_ENABLE([compiler-tls],
])
# Search for clock_gettime
-AC_SEARCH_LIBS([clock_gettime], [rt], [],
- [AC_MSG_ERROR([Cannot find clock_gettime function.])]
-)
+AC_SEARCH_LIBS([clock_gettime], [rt], [
+ AC_DEFINE([CONFIG_RCU_HAVE_CLOCK_GETTIME], [1])
+], [])
# Check for pthread
AC_CHECK_LIB([pthread], [pthread_create],
#ifndef HAS_CAA_GET_CYCLES
#define HAS_CAA_GET_CYCLES
+#ifdef CONFIG_RCU_HAVE_CLOCK_GETTIME
+
#include <time.h>
#include <stdint.h>
return -1ULL;
return ((uint64_t) ts.tv_sec * 1000000000ULL) + ts.tv_nsec;
}
+
+#elif defined(__APPLE__)
+
+#include <mach/mach.h>
+#include <mach/clock.h>
+#include <mach/mach_time.h>
+#include <time.h>
+#include <stdint.h>
+
+typedef uint64_t caa_cycles_t;
+
+static inline caa_cycles_t caa_get_cycles (void)
+{
+ mach_timespec_t ts = { 0, 0 };
+ static clock_serv_t clock_service;
+
+ if (caa_unlikely(!clock_service)) {
+ if (host_get_clock_service(mach_host_self(),
+ SYSTEM_CLOCK, &clock_service))
+ return -1ULL;
+ }
+ if (caa_unlikely(clock_get_time(clock_service, &ts)))
+ return -1ULL;
+ return ((uint64_t) ts.tv_sec * 1000000000ULL) + ts.tv_nsec;
+}
+
+#else
+
+#error caa_get_cycles() not implemented for this platform.
+
+#endif
+
#endif /* HAS_CAA_GET_CYCLES */
#ifdef __cplusplus
/* TLS provided by the compiler. */
#undef CONFIG_RCU_TLS
+
+/* clock_gettime() is detected. */
+#undef CONFIG_RCU_HAVE_CLOCK_GETTIME