musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012年09月11日 02:23:47 -0400
committerRich Felker <dalias@aerifal.cx>2012年09月11日 02:23:47 -0400
commitcfc09b1ecf0c6981494fd73dffe234416f66af10 (patch)
tree6771fdf3c0f6efad93919597e327da9ba0495877
parentb94067eeae894b5a26170cebc378261f83ad00cb (diff)
downloadmusl-cfc09b1ecf0c6981494fd73dffe234416f66af10.tar.gz
improve mips syscall asm constraints to use immediates, if possible
by using the "ir" constraint (immediate or register) and the carefully constructed instruction addu 2,ドル0,ドル%2 which can take either an immediate or a register for %2, the new inline asm admits maximal optimization with no register spillage to the stack when the compiler successfully performs constant propagration, but still works by allocating a register when the syscall number cannot be recognized as a constant. in the case of syscalls with 0-3 arguments it barely matters, but for 4-argument syscalls, using an immediate for the syscall number avoids creating a stack frame for the syscall wrapper function.
Diffstat
-rw-r--r--arch/mips/syscall_arch.h 33
1 files changed, 21 insertions, 12 deletions
diff --git a/arch/mips/syscall_arch.h b/arch/mips/syscall_arch.h
index 58904765..b1e68ffb 100644
--- a/arch/mips/syscall_arch.h
+++ b/arch/mips/syscall_arch.h
@@ -10,8 +10,8 @@
#define __asm_syscall(...) do { \
register long r2 __asm__("2ドル"); \
__asm__ __volatile__ ( \
- "move 2,ドル7ドル ; syscall" \
- : "=&r"(r2), "=r"(r7) : __VA_ARGS__ \
+ "addu 2,ドル0,ドル%2 ; syscall" \
+ : "=&r"(r2), "=r"(r7) : "ir"(n), __VA_ARGS__, "r"(r2) \
: "1ドル", "3ドル", "8ドル", "9ドル", "10ドル", "11ドル", "12ドル", "13ドル", \
"14ドル", "15ドル", "24ドル", "25ドル", "hi", "lo", "memory"); \
return r7 ? -r2 : r2; \
@@ -19,32 +19,41 @@
static inline long __syscall0(long n)
{
- register long r7 __asm__("7ドル") = n;
- __asm_syscall("r"(r7));
+ register long r7 __asm__("7ドル");
+ __asm_syscall("i"(0));
}
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));
+ register long r7 __asm__("7ドル");
+ __asm_syscall("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));
+ register long r7 __asm__("7ドル");
+ __asm_syscall("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));
+ register long r7 __asm__("7ドル");
+ __asm_syscall("r"(r4), "r"(r5), "r"(r6));
+}
+
+static inline long __syscall4(long n, long a, long b, long c, long d)
+{
+ register long r4 __asm__("4ドル") = a;
+ register long r5 __asm__("5ドル") = b;
+ register long r6 __asm__("6ドル") = c;
+ register long r7 __asm__("7ドル") = d;
+ __asm_syscall("r"(r4), "r"(r5), "r"(r6), "r"(r7));
}
#else
@@ -69,13 +78,13 @@ 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);
}
+#endif
+
static inline long __syscall5(long n, long a, long b, long c, long d, long e)
{
return (__syscall)(n, a, b, c, d, e);
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月04日 01:52:29 +0000

AltStyle によって変換されたページ (->オリジナル) /