mirror of
git://git.musl-libc.org/musl
synced 2024-12-15 19:25:55 +00:00
ccc7b4c3a1
the issue at hand is that many syscalls require as an argument the kernel-ABI size of sigset_t, intended to allow the kernel to switch to a larger sigset_t in the future. previously, each arch was defining this size in syscall_arch.h, which was redundant with the definition of _NSIG in bits/signal.h. as it's used in some not-quite-portable application code as well, _NSIG is much more likely to be recognized and understood immediately by someone reading the code, and it's also shorter and less cluttered. note that _NSIG is actually 65/129, not 64/128, but the division takes care of throwing away the off-by-one part.
137 lines
3.7 KiB
C
137 lines
3.7 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))
|
|
|
|
#ifndef __clang__
|
|
|
|
static __inline long __syscall0(long n)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
static inline long __syscall1(long n, long a)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
register unsigned long r5 __asm__("r5") = a;
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12), "r"(r5)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
static inline long __syscall2(long n, long a, long b)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
register unsigned long r5 __asm__("r5") = a;
|
|
register unsigned long r6 __asm__("r6") = b;
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12), "r"(r5), "r"(r6)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
static inline long __syscall3(long n, long a, long b, long c)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
register unsigned long r5 __asm__("r5") = a;
|
|
register unsigned long r6 __asm__("r6") = b;
|
|
register unsigned long r7 __asm__("r7") = c;
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12), "r"(r5), "r"(r6), "r"(r7)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
static inline long __syscall4(long n, long a, long b, long c, long d)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
register unsigned long r5 __asm__("r5") = a;
|
|
register unsigned long r6 __asm__("r6") = b;
|
|
register unsigned long r7 __asm__("r7") = c;
|
|
register unsigned long r8 __asm__("r8") = d;
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12), "r"(r5), "r"(r6), "r"(r7), "r"(r8)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
static inline long __syscall5(long n, long a, long b, long c, long d, long e)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
register unsigned long r5 __asm__("r5") = a;
|
|
register unsigned long r6 __asm__("r6") = b;
|
|
register unsigned long r7 __asm__("r7") = c;
|
|
register unsigned long r8 __asm__("r8") = d;
|
|
register unsigned long r9 __asm__("r9") = e;
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12), "r"(r5), "r"(r6), "r"(r7), "r"(r8), "r"(r9)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
static inline long __syscall6(long n, long a, long b, long c, long d, long e, long f)
|
|
{
|
|
register unsigned long r12 __asm__("r12") = n;
|
|
register unsigned long r3 __asm__("r3");
|
|
register unsigned long r5 __asm__("r5") = a;
|
|
register unsigned long r6 __asm__("r6") = b;
|
|
register unsigned long r7 __asm__("r7") = c;
|
|
register unsigned long r8 __asm__("r8") = d;
|
|
register unsigned long r9 __asm__("r9") = e;
|
|
register unsigned long r10 __asm__("r10") = f;
|
|
__asm__ __volatile__ ("brki r14, 0x8" : "=r"(r3)
|
|
: "r"(r12), "r"(r5), "r"(r6), "r"(r7), "r"(r8), "r"(r9), "r"(r10)
|
|
: "memory");
|
|
return r3;
|
|
}
|
|
|
|
#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);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
#endif
|