2021-07-19 21:55:20 +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 │
|
2021-07-19 21:55:20 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2022-05-24 17:19:39 +00:00
|
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
2021-07-19 21:55:20 +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. │
|
|
|
|
│ │
|
|
|
|
│ 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. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2023-10-11 18:45:31 +00:00
|
|
|
#include "libc/calls/calls.h"
|
2023-10-03 02:25:19 +00:00
|
|
|
#include "libc/calls/struct/timespec.internal.h"
|
2023-10-11 18:45:31 +00:00
|
|
|
#include "libc/calls/struct/timeval.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/calls/struct/timeval.internal.h"
|
2023-10-03 02:25:19 +00:00
|
|
|
#include "libc/errno.h"
|
2024-08-04 19:52:25 +00:00
|
|
|
#include "libc/macros.h"
|
2022-07-08 13:29:24 +00:00
|
|
|
#include "libc/sysv/consts/clock.h"
|
2023-10-03 02:25:19 +00:00
|
|
|
#ifdef __x86_64__
|
2021-07-19 21:55:20 +00:00
|
|
|
|
2022-07-08 13:29:24 +00:00
|
|
|
int sys_clock_gettime_xnu(int clock, struct timespec *ts) {
|
2023-10-03 02:25:19 +00:00
|
|
|
long ax, dx;
|
2022-07-08 13:29:24 +00:00
|
|
|
if (clock == CLOCK_REALTIME) {
|
2023-10-03 02:25:19 +00:00
|
|
|
// invoke the system call
|
|
|
|
//
|
|
|
|
// int gettimeofday(struct timeval *tp,
|
|
|
|
// struct timezone *tzp,
|
|
|
|
// uint64_t *mach_absolute_time);
|
|
|
|
//
|
|
|
|
// as follows
|
|
|
|
//
|
|
|
|
// ax, dx = gettimeofday(&ts, 0, 0);
|
|
|
|
//
|
|
|
|
// to support multiple calling conventions
|
|
|
|
//
|
|
|
|
// 1. new xnu returns *ts in memory via rdi
|
|
|
|
// 2. old xnu returns *ts in rax:rdx regs
|
|
|
|
//
|
|
|
|
// we assume this system call always succeeds
|
2024-09-04 07:38:44 +00:00
|
|
|
asm volatile("syscall"
|
|
|
|
: "=a"(ax), "=d"(dx)
|
|
|
|
: "0"(0x2000000 | 116), "D"(ts), "S"(0), "1"(0)
|
|
|
|
: "rcx", "r8", "r9", "r10", "r11", "memory");
|
|
|
|
if (ax) {
|
|
|
|
ts->tv_sec = ax;
|
|
|
|
ts->tv_nsec = dx;
|
2022-05-24 17:19:39 +00:00
|
|
|
}
|
2024-09-04 07:38:44 +00:00
|
|
|
ts->tv_nsec *= 1000;
|
2023-10-03 02:25:19 +00:00
|
|
|
return 0;
|
2024-09-04 07:38:44 +00:00
|
|
|
} else if (clock == CLOCK_BOOTTIME || //
|
|
|
|
clock == CLOCK_MONOTONIC || //
|
|
|
|
clock == CLOCK_MONOTONIC_COARSE) {
|
2022-07-08 13:29:24 +00:00
|
|
|
return sys_clock_gettime_mono(ts);
|
2022-05-24 17:19:39 +00:00
|
|
|
} else {
|
2023-10-03 02:25:19 +00:00
|
|
|
return -EINVAL;
|
2022-05-24 17:19:39 +00:00
|
|
|
}
|
2021-08-12 07:42:14 +00:00
|
|
|
}
|
2023-10-03 02:25:19 +00:00
|
|
|
|
|
|
|
#endif /* __x86_64__ */
|