/* * Copyright (c) 2014 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* * UKP-Optimized clock_gettime(). Use the kpmap after the 10th call. */ #include #include #include #include #include #include #include #include #include #include /*#include "un-namespace.h"*/ #include "libc_private.h" #include "upmap.h" extern int __sys_clock_gettime(clockid_t clock_id, struct timespec *ts); int __clock_gettime(clockid_t clock_id, struct timespec *ts); static int fast_clock; static int fast_count; static int *upticksp; static struct timespec *ts_uptime; static struct timespec *ts_realtime; int __clock_gettime(clockid_t clock_id, struct timespec *ts) { int res; int w; if (fast_clock == 0 && fast_count++ >= 10) { __kpmap_map(&upticksp, &fast_clock, KPTYPE_UPTICKS); __kpmap_map(&ts_uptime, &fast_clock, KPTYPE_TS_UPTIME); __kpmap_map(&ts_realtime, &fast_clock, KPTYPE_TS_REALTIME); __kpmap_map(NULL, &fast_clock, 0); } if (fast_clock > 0) { switch(clock_id) { case CLOCK_UPTIME_FAST: case CLOCK_MONOTONIC_FAST: do { w = *upticksp; cpu_lfence(); *ts = ts_uptime[w & 1]; cpu_lfence(); w = *upticksp - w; } while (w > 1); res = 0; break; case CLOCK_REALTIME_FAST: case CLOCK_SECOND: do { w = *upticksp; cpu_lfence(); *ts = ts_realtime[w & 1]; cpu_lfence(); w = *upticksp - w; } while (w > 1); if (clock_id == CLOCK_SECOND) ts->tv_nsec = 0; res = 0; break; default: res = __sys_clock_gettime(clock_id, ts); break; } } else { res = __sys_clock_gettime(clock_id, ts); } return res; } __weak_reference(__clock_gettime, clock_gettime);