2022-04-26 04:16:05 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
2023-12-08 03:11:56 +00:00
|
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
2020-06-15 14:18:57 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2022-04-26 04:16:05 +00:00
|
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-05-24 17:19:39 +00:00
|
|
|
#include "libc/calls/internal.h"
|
2022-04-26 04:16:05 +00:00
|
|
|
#include "libc/calls/struct/timespec.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/calls/struct/timespec.internal.h"
|
2022-05-24 17:19:39 +00:00
|
|
|
#include "libc/calls/struct/timeval.h"
|
|
|
|
#include "libc/calls/syscall_support-sysv.internal.h"
|
2022-06-11 03:51:36 +00:00
|
|
|
#include "libc/dce.h"
|
2022-08-11 07:15:29 +00:00
|
|
|
#include "libc/errno.h"
|
2022-05-24 17:19:39 +00:00
|
|
|
#include "libc/nexgen32e/rdtsc.h"
|
|
|
|
#include "libc/runtime/runtime.h"
|
|
|
|
#include "libc/sysv/consts/auxv.h"
|
2022-06-11 07:05:06 +00:00
|
|
|
#include "libc/sysv/consts/clock.h"
|
2022-04-26 04:16:05 +00:00
|
|
|
#include "libc/testlib/ezbench.h"
|
|
|
|
#include "libc/testlib/testlib.h"
|
2022-05-24 17:19:39 +00:00
|
|
|
#include "libc/time/time.h"
|
|
|
|
|
2023-10-03 02:25:19 +00:00
|
|
|
TEST(clock_gettime, nullResult_validatesClockParam) {
|
|
|
|
ASSERT_SYS(EINVAL, -1, clock_gettime(666, 0));
|
|
|
|
}
|
|
|
|
|
2022-05-24 17:19:39 +00:00
|
|
|
TEST(clock_gettime, test) {
|
|
|
|
struct timespec ts = {0};
|
|
|
|
ASSERT_EQ(0, clock_gettime(0, &ts));
|
|
|
|
ASSERT_NE(0, ts.tv_sec);
|
|
|
|
ASSERT_NE(0, ts.tv_nsec);
|
2023-10-03 02:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(clock_gettime, testClockRealtime) {
|
|
|
|
struct timeval tv;
|
|
|
|
struct timespec ts;
|
|
|
|
EXPECT_NE(-1, gettimeofday(&tv, NULL));
|
|
|
|
EXPECT_NE(-1, clock_gettime(CLOCK_REALTIME, &ts));
|
|
|
|
EXPECT_LT((unsigned)ABS(ts.tv_sec - tv.tv_sec), 5u);
|
2022-05-24 17:19:39 +00:00
|
|
|
}
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2023-11-18 09:57:44 +00:00
|
|
|
TEST(clock_gettime, bench) {
|
2022-05-24 17:19:39 +00:00
|
|
|
struct timeval tv;
|
2022-04-26 04:16:05 +00:00
|
|
|
struct timespec ts;
|
2022-05-24 17:19:39 +00:00
|
|
|
gettimeofday(&tv, 0); // trigger init
|
|
|
|
clock_gettime(0, &ts); // trigger init
|
|
|
|
EZBENCH2("rdtsc", donothing, rdtsc());
|
2023-10-03 02:25:19 +00:00
|
|
|
EZBENCH2("clock_gettime(mono)", donothing,
|
2022-06-11 07:05:06 +00:00
|
|
|
clock_gettime(CLOCK_MONOTONIC_FAST, &ts));
|
2023-10-03 02:25:19 +00:00
|
|
|
EZBENCH2("clock_gettime(real)", donothing,
|
|
|
|
clock_gettime(CLOCK_REALTIME_FAST, &ts));
|
|
|
|
EZBENCH2("timespec_real", donothing, timespec_real());
|
|
|
|
EZBENCH2("gettimeofday", donothing, gettimeofday(&tv, 0));
|
2022-06-11 03:51:36 +00:00
|
|
|
if (IsWindows()) {
|
2023-10-03 02:25:19 +00:00
|
|
|
EZBENCH2("sys_clock_gettime r", donothing,
|
2022-06-11 07:05:06 +00:00
|
|
|
sys_clock_gettime_nt(CLOCK_REALTIME_FAST, &ts));
|
2023-10-03 02:25:19 +00:00
|
|
|
EZBENCH2("sys_clock_gettime m", donothing,
|
2022-06-11 07:05:06 +00:00
|
|
|
sys_clock_gettime_nt(CLOCK_MONOTONIC_FAST, &ts));
|
2022-06-11 03:51:36 +00:00
|
|
|
} else {
|
2023-10-03 02:25:19 +00:00
|
|
|
EZBENCH2("sys_clock_gettime r", donothing,
|
2022-06-11 07:05:06 +00:00
|
|
|
sys_clock_gettime(CLOCK_REALTIME_FAST, &ts));
|
2023-10-03 02:25:19 +00:00
|
|
|
EZBENCH2("sys_clock_gettime m", donothing,
|
2022-06-11 07:05:06 +00:00
|
|
|
sys_clock_gettime(CLOCK_MONOTONIC_FAST, &ts));
|
2022-06-11 03:51:36 +00:00
|
|
|
}
|
2022-04-26 04:16:05 +00:00
|
|
|
}
|