mailing list of musl libc
 help / color / mirror / code / Atom feed
9681505ee76fa34e4e95dbbbcfe6293873622ec9 blob 1345 bytes (raw)

 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
 
#define a_barrier a_barrier
static inline void a_barrier()
{
	__asm__ __volatile__ ("fence rw,rw" : : : "memory");
}

#ifdef __riscv_zacas

#define a_cas a_cas
static inline int a_cas(volatile int *p, int t, int s)
{
	int old = t;
	__asm__ __volatile__ (
		"amocas.w.aqrl %0, %2, %1"
		: "+r"(old), "+A"(*(volatile int *)p)
		: "r"(s)
		: "memory");
	return old;
}

#define a_cas_p a_cas_p
static inline void *a_cas_p(volatile void *p, void *t, void *s)
{
	void *old = t;
	__asm__ __volatile__ (
		"amocas.d.aqrl %0, %2, %1"
		: "+r"(old), "+A"(*(void *volatile *)p)
		: "r"(s)
		: "memory");
	return old;
}

#else /* Fallback to lr/sc when Zacas is not available */

#define a_cas a_cas
static inline int a_cas(volatile int *p, int t, int s)
{
	int old, tmp;
	__asm__ __volatile__ (
		"\n1:	lr.w.aqrl %0, (%2)\n"
		"	bne %0, %3, 1f\n"
		"	sc.w.aqrl %1, %4, (%2)\n"
		"	bnez %1, 1b\n"
		"1:"
		: "=&r"(old), "=&r"(tmp)
		: "r"(p), "r"((long)t), "r"((long)s)
		: "memory");
	return old;
}

#define a_cas_p a_cas_p
static inline void *a_cas_p(volatile void *p, void *t, void *s)
{
	void *old;
	int tmp;
	__asm__ __volatile__ (
		"\n1:	lr.d.aqrl %0, (%2)\n"
		"	bne %0, %3, 1f\n"
		"	sc.d.aqrl %1, %4, (%2)\n"
		"	bnez %1, 1b\n"
		"1:"
		: "=&r"(old), "=&r"(tmp)
		: "r"(p), "r"(t), "r"(s)
		: "memory");
	return old;
}

#endif /* __riscv_zacas */
debug log:

solving 9681505e ...
found 9681505e in https://inbox.vuxu.org/musl/20250918164720.337994-2-pincheng.plct@isrc.iscas.ac.cn/
found 0c382588 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 0c382588686c48ed5af2b8dcf9f816c0aacbea9e	arch/riscv64/atomic_arch.h

applying [1/1] https://inbox.vuxu.org/musl/20250918164720.337994-2-pincheng.plct@isrc.iscas.ac.cn/
diff --git a/arch/riscv64/atomic_arch.h b/arch/riscv64/atomic_arch.h
index 0c382588..9681505e 100644

Checking patch arch/riscv64/atomic_arch.h...
Applied patch arch/riscv64/atomic_arch.h cleanly.

index at:
100644 9681505ee76fa34e4e95dbbbcfe6293873622ec9	arch/riscv64/atomic_arch.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).