blob: eefcd9dc6a1c87b22b9022f9d054862372e12f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* { dg-do compile } */
/* { dg-require-effective-target arm_cpu_cortex_m7_ok } */
/* { dg-additional-options "-O2" } */
/* { dg-add-options arm_cpu_cortex_m7 } */
typedef unsigned long long uint64_t;
struct timer {
int active;
uint64_t expire;
void *arg;
};
int irq_disable();
void irq_restore(int);
static inline uint64_t h(const uint64_t *p64)
{
uint64_t tmp;
asm(
"ldrd %Q[r], %R[r], %[p]\n"
: [r]"=lh"(tmp)
: [p]"m"(*p64)
: "memory"
);
return tmp;
}
uint64_t monotonic;
void timer_callout(timer *tmr, uint64_t nsec, void *arg)
{
const int s = irq_disable();
if (tmr->active)
tmr->arg = arg;
tmr->expire = h(&monotonic) + 100000 + (nsec == 1 ? 0 : nsec);
irq_restore(s);
}
|