#include <assert.h>
#include <errno.h>
#include <unistd.h>
#include <sys/time.h>
#include "thr_private.h"
#define cpu_ccfence() __asm __volatile("" : : : "memory")
int
__thr_umtx_lock(volatile umtx_t *mtx, int id, int timo)
{
int v;
int errval;
int ret = 0;
int retry = _thread_active_threads * 200 + 10;
v = *mtx;
cpu_ccfence();
id &= 0x3FFFFFFF;
for (;;) {
cpu_pause();
if (v == 0) {
if (atomic_fcmpset_int(mtx, &v, id))
break;
continue;
}
if (--retry) {
v = *mtx;
continue;
}
if (atomic_fcmpset_int(mtx, &v, v|0x40000000) ||
(v & 0x40000000)) {
if (timo == 0) {
_umtx_sleep_err(mtx, v|0x40000000, 1000);
} else if (timo > 1500) {
_umtx_sleep_err(mtx, v|0x40000000, 1000);
timo -= 1000;
} else {
errval = _umtx_sleep_err(mtx, v|0x40000000,
timo);
if (__predict_false(errval == EAGAIN)) {
if (atomic_cmpset_acq_int(mtx, 0, id))
ret = 0;
else
ret = ETIMEDOUT;
break;
}
}
}
retry = _thread_active_threads * 200 + 10;
}
return (ret);
}
void
__thr_umtx_unlock(volatile umtx_t *mtx, int v, int id)
{
if (v & 0x40000000) {
_umtx_wakeup_err(mtx, 1);
v &= 0x3FFFFFFF;
}
THR_ASSERT(v == id, "thr_umtx_unlock: wrong owner");
}
int
__thr_umtx_timedlock(volatile umtx_t *mtx, int id,
const struct timespec *timeout)
{
struct timespec ts, ts2, ts3;
int timo, ret;
if ((timeout->tv_sec < 0) ||
(timeout->tv_sec == 0 && timeout->tv_nsec <= 0)) {
return (ETIMEDOUT);
}
clock_gettime(CLOCK_REALTIME, &ts);
timespecadd(&ts, timeout, &ts);
ts2 = *timeout;
id &= 0x3FFFFFFF;
for (;;) {
if (ts2.tv_nsec) {
timo = (int)(ts2.tv_nsec / 1000);
if (timo == 0)
timo = 1;
} else {
timo = 1000000;
}
ret = __thr_umtx_lock(mtx, id, timo);
if (ret != EINTR && ret != ETIMEDOUT)
break;
clock_gettime(CLOCK_REALTIME, &ts3);
timespecsub(&ts, &ts3, &ts2);
if (ts2.tv_sec < 0 ||
(ts2.tv_sec == 0 && ts2.tv_nsec <= 0)) {
ret = ETIMEDOUT;
break;
}
}
return (ret);
}
int
_thr_umtx_wait(volatile umtx_t *mtx, int exp, const struct timespec *timeout,
int clockid)
{
struct timespec ts, ts2, ts3;
int timo, errval, ret = 0;
cpu_ccfence();
if (*mtx != exp)
return (0);
if (timeout == NULL) {
while ((errval = _umtx_sleep_err(mtx, exp, 10000000)) > 0) {
if (errval == EBUSY)
break;
#if 0
if (errval == ETIMEDOUT || errval == EWOULDBLOCK) {
if (*mtx != exp) {
fprintf(stderr,
"thr_umtx_wait: FAULT VALUE CHANGE "
"%d -> %d oncond %p\n",
exp, *mtx, mtx);
}
}
#endif
if (*mtx != exp)
return(0);
}
return (ret);
}
if ((timeout->tv_sec < 0) ||
(timeout->tv_sec == 0 && timeout->tv_nsec <= 0))
return (ETIMEDOUT);
clock_gettime(clockid, &ts);
timespecadd(&ts, timeout, &ts);
ts2 = *timeout;
for (;;) {
if (ts2.tv_nsec) {
timo = (int)(ts2.tv_nsec / 1000);
if (timo == 0)
timo = 1;
} else {
timo = 1000000;
}
if ((errval = _umtx_sleep_err(mtx, exp, timo)) > 0) {
if (errval == EBUSY) {
ret = 0;
break;
}
if (errval == EINTR) {
ret = EINTR;
break;
}
}
clock_gettime(clockid, &ts3);
timespecsub(&ts, &ts3, &ts2);
if (ts2.tv_sec < 0 || (ts2.tv_sec == 0 && ts2.tv_nsec <= 0)) {
ret = ETIMEDOUT;
break;
}
}
return (ret);
}
int
_thr_umtx_wait_intr(volatile umtx_t *mtx, int exp)
{
int ret = 0;
int errval;
cpu_ccfence();
for (;;) {
if (*mtx != exp)
return (0);
errval = _umtx_sleep_err(mtx, exp, 10000000);
if (errval == 0)
break;
if (errval == EBUSY)
break;
if (errval == EINTR) {
ret = errval;
break;
}
cpu_ccfence();
}
return (ret);
}
void
_thr_umtx_wake(volatile umtx_t *mtx, int count)
{
_umtx_wakeup_err(mtx, count);
}