mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-04 04:14:03 +03:00
b94067eeae
all past and current kernel versions have done so, but there seems to be no reason it's necessary and the sentiment from everyone I've asked has been that we should not rely on it. instead, use r7 (an argument register) which will necessarily be preserved upon syscall restart. however this only works for 0-3 argument syscalls, and we have to resort to the function call for 4-argument syscalls.
88 lines
2.0 KiB
C
88 lines
2.0 KiB
C
#define __SYSCALL_LL_E(x) \
|
|
((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
|
|
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
|
#define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
|
|
|
|
#define __SYSCALL_SSLEN 16
|
|
|
|
#ifndef __clang__
|
|
|
|
#define __asm_syscall(...) do { \
|
|
register long r2 __asm__("$2"); \
|
|
__asm__ __volatile__ ( \
|
|
"move $2,$7 ; syscall" \
|
|
: "=&r"(r2), "=r"(r7) : __VA_ARGS__ \
|
|
: "$1", "$3", "$8", "$9", "$10", "$11", "$12", "$13", \
|
|
"$14", "$15", "$24", "$25", "hi", "lo", "memory"); \
|
|
return r7 ? -r2 : r2; \
|
|
} while (0)
|
|
|
|
static inline long __syscall0(long n)
|
|
{
|
|
register long r7 __asm__("$7") = n;
|
|
__asm_syscall("r"(r7));
|
|
}
|
|
|
|
static inline long __syscall1(long n, long a)
|
|
{
|
|
register long r7 __asm__("$7") = n;
|
|
register long r4 __asm__("$4") = a;
|
|
__asm_syscall("r"(r7), "r"(r4));
|
|
}
|
|
|
|
static inline long __syscall2(long n, long a, long b)
|
|
{
|
|
register long r7 __asm__("$7") = n;
|
|
register long r4 __asm__("$4") = a;
|
|
register long r5 __asm__("$5") = b;
|
|
__asm_syscall("r"(r7), "r"(r4), "r"(r5));
|
|
}
|
|
|
|
static inline long __syscall3(long n, long a, long b, long c)
|
|
{
|
|
register long r7 __asm__("$7") = n;
|
|
register long r4 __asm__("$4") = a;
|
|
register long r5 __asm__("$5") = b;
|
|
register long r6 __asm__("$6") = c;
|
|
__asm_syscall("r"(r7), "r"(r4), "r"(r5), "r"(r6));
|
|
}
|
|
|
|
#else
|
|
|
|
static inline long __syscall0(long n)
|
|
{
|
|
return (__syscall)(n);
|
|
}
|
|
|
|
static inline long __syscall1(long n, long a)
|
|
{
|
|
return (__syscall)(n, a);
|
|
}
|
|
|
|
static inline long __syscall2(long n, long a, long b)
|
|
{
|
|
return (__syscall)(n, a, b);
|
|
}
|
|
|
|
static inline long __syscall3(long n, long a, long b, long c)
|
|
{
|
|
return (__syscall)(n, a, b, c);
|
|
}
|
|
|
|
#endif
|
|
|
|
static inline long __syscall4(long n, long a, long b, long c, long d)
|
|
{
|
|
return (__syscall)(n, a, b, c, d);
|
|
}
|
|
|
|
static inline long __syscall5(long n, long a, long b, long c, long d, long e)
|
|
{
|
|
return (__syscall)(n, a, b, c, d, e);
|
|
}
|
|
|
|
static inline long __syscall6(long n, long a, long b, long c, long d, long e, long f)
|
|
{
|
|
return (__syscall)(n, a, b, c, d, e, f);
|
|
}
|