2012-03-08 08:46:09 +00:00
|
|
|
/* Copyright (C) 2000, 2002-2004, 2007, 2012 Free Software Foundation, Inc.
|
2000-01-31 06:42:36 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Jakub Jelinek <jakub@redhat.com>, 2000.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2000-01-31 06:42:36 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-01-31 06:42:36 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2000-01-31 06:42:36 +00:00
|
|
|
|
|
|
|
#ifndef _LINUX_SPARC_SYSDEP_H
|
|
|
|
#define _LINUX_SPARC_SYSDEP_H 1
|
|
|
|
|
Delete everything under sysdeps/unix/sparc/
* sysdeps/unix/sparc/brk.S: Delete.
* sysdeps/unix/sparc/dl-brk.S: Delete.
* sysdeps/unix/sparc/pipe.S: Delete.
* sysdeps/unix/sparc/sysdep.S: Delete.
* sysdeps/unix/sparc/sysdep.h: Delete.
* sysdeps/unix/sparc/vfork.S: Delete.
* sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG,
SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO,
ret_ERRVAL, r0, r1, MOVE): Define.
(JUMPTARGET): Remove.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
sysdeps/unix/sparc/sysdep.h
(ENTRY, END): Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
2012-04-25 18:44:02 +00:00
|
|
|
#include <sysdeps/unix/sysdep.h>
|
|
|
|
#include <sysdeps/sparc/sysdep.h>
|
|
|
|
|
|
|
|
#ifdef __ASSEMBLER__
|
|
|
|
|
|
|
|
#define ret retl; nop
|
|
|
|
#define ret_NOERRNO retl; nop
|
|
|
|
#define ret_ERRVAL retl; nop
|
|
|
|
#define r0 %o0
|
|
|
|
#define r1 %o1
|
|
|
|
#define MOVE(x,y) mov x, y
|
|
|
|
|
|
|
|
#else /* __ASSEMBLER__ */
|
|
|
|
|
2000-01-31 06:42:36 +00:00
|
|
|
#undef INLINE_SYSCALL
|
2011-09-01 00:30:41 +00:00
|
|
|
#define INLINE_SYSCALL(name, nr, args...) \
|
|
|
|
({ INTERNAL_SYSCALL_DECL(err); \
|
2012-03-12 03:13:55 +00:00
|
|
|
unsigned long resultvar = INTERNAL_SYSCALL(name, err, nr, args);\
|
2012-03-06 19:15:26 +00:00
|
|
|
if (INTERNAL_SYSCALL_ERROR_P (resultvar, err)) \
|
2011-09-01 00:30:41 +00:00
|
|
|
{ \
|
|
|
|
__set_errno (INTERNAL_SYSCALL_ERRNO (resultvar, err)); \
|
2012-03-12 03:13:55 +00:00
|
|
|
resultvar = (unsigned long) -1; \
|
2011-09-01 00:30:41 +00:00
|
|
|
} \
|
2012-03-12 03:13:55 +00:00
|
|
|
(long) resultvar; \
|
2011-09-01 00:30:41 +00:00
|
|
|
})
|
2000-01-31 06:42:36 +00:00
|
|
|
|
2003-01-09 04:19:03 +00:00
|
|
|
#undef INTERNAL_SYSCALL_DECL
|
2011-09-01 00:30:41 +00:00
|
|
|
#define INTERNAL_SYSCALL_DECL(err) \
|
|
|
|
register long err __asm__("g1");
|
2003-01-09 04:19:03 +00:00
|
|
|
|
* sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL): Pass
__SYSCALL_STRING to inline_syscall*.
(INTERNAL_SYSCALL, INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO):
New macros.
(inline_syscall0, inline_syscall1, inline_syscall2, inline_syscall3,
inline_syscall4, inline_syscall5, inline_syscall6): Add string
argument.
2002-10-24 Roland McGrath <roland@redhat.com>
* libio/bug-wfflush.c: New file.
* libio/Makefile (tests): Add bug-wfflush.
2002-10-24 18:49:00 +00:00
|
|
|
#undef INTERNAL_SYSCALL
|
2003-01-09 04:19:03 +00:00
|
|
|
#define INTERNAL_SYSCALL(name, err, nr, args...) \
|
2011-09-01 00:30:41 +00:00
|
|
|
inline_syscall##nr(__SYSCALL_STRING, err, __NR_##name, args)
|
2004-09-23 05:17:06 +00:00
|
|
|
|
|
|
|
#undef INTERNAL_SYSCALL_NCS
|
|
|
|
#define INTERNAL_SYSCALL_NCS(name, err, nr, args...) \
|
2011-09-01 00:30:41 +00:00
|
|
|
inline_syscall##nr(__SYSCALL_STRING, err, name, args)
|
* sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL): Pass
__SYSCALL_STRING to inline_syscall*.
(INTERNAL_SYSCALL, INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO):
New macros.
(inline_syscall0, inline_syscall1, inline_syscall2, inline_syscall3,
inline_syscall4, inline_syscall5, inline_syscall6): Add string
argument.
2002-10-24 Roland McGrath <roland@redhat.com>
* libio/bug-wfflush.c: New file.
* libio/Makefile (tests): Add bug-wfflush.
2002-10-24 18:49:00 +00:00
|
|
|
|
|
|
|
#undef INTERNAL_SYSCALL_ERROR_P
|
2012-03-06 19:15:26 +00:00
|
|
|
#define INTERNAL_SYSCALL_ERROR_P(val, err) \
|
|
|
|
((void) (val), __builtin_expect((err) != 0, 0))
|
* sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL): Pass
__SYSCALL_STRING to inline_syscall*.
(INTERNAL_SYSCALL, INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO):
New macros.
(inline_syscall0, inline_syscall1, inline_syscall2, inline_syscall3,
inline_syscall4, inline_syscall5, inline_syscall6): Add string
argument.
2002-10-24 Roland McGrath <roland@redhat.com>
* libio/bug-wfflush.c: New file.
* libio/Makefile (tests): Add bug-wfflush.
2002-10-24 18:49:00 +00:00
|
|
|
|
|
|
|
#undef INTERNAL_SYSCALL_ERRNO
|
2003-01-09 04:19:03 +00:00
|
|
|
#define INTERNAL_SYSCALL_ERRNO(val, err) (-(val))
|
* sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL,
INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
(INLINE_SYSCALL): Use that.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
dl-sysdep.h.
(SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
(__INTERNAL_SYSCALL_STRING): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL): Pass
__SYSCALL_STRING to inline_syscall*.
(INTERNAL_SYSCALL, INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO):
New macros.
(inline_syscall0, inline_syscall1, inline_syscall2, inline_syscall3,
inline_syscall4, inline_syscall5, inline_syscall6): Add string
argument.
2002-10-24 Roland McGrath <roland@redhat.com>
* libio/bug-wfflush.c: New file.
* libio/Makefile (tests): Add bug-wfflush.
2002-10-24 18:49:00 +00:00
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall0(string,err,name,dummy...) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0"); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err) : \
|
2002-09-29 11:32:03 +00:00
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall1(string,err,name,arg1) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err), "1" (__o0) : \
|
2002-09-29 11:32:03 +00:00
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall2(string,err,name,arg1,arg2) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
|
|
|
register long __o1 __asm__ ("o1") = (long)(arg2); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err), "1" (__o0), "r" (__o1) : \
|
2002-09-29 11:32:03 +00:00
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall3(string,err,name,arg1,arg2,arg3) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
|
|
|
register long __o1 __asm__ ("o1") = (long)(arg2); \
|
|
|
|
register long __o2 __asm__ ("o2") = (long)(arg3); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err), "1" (__o0), "r" (__o1), \
|
2002-09-29 11:32:03 +00:00
|
|
|
"r" (__o2) : \
|
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall4(string,err,name,arg1,arg2,arg3,arg4) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
|
|
|
register long __o1 __asm__ ("o1") = (long)(arg2); \
|
|
|
|
register long __o2 __asm__ ("o2") = (long)(arg3); \
|
|
|
|
register long __o3 __asm__ ("o3") = (long)(arg4); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err), "1" (__o0), "r" (__o1), \
|
2002-09-29 11:32:03 +00:00
|
|
|
"r" (__o2), "r" (__o3) : \
|
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall5(string,err,name,arg1,arg2,arg3,arg4,arg5) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
|
|
|
register long __o1 __asm__ ("o1") = (long)(arg2); \
|
|
|
|
register long __o2 __asm__ ("o2") = (long)(arg3); \
|
|
|
|
register long __o3 __asm__ ("o3") = (long)(arg4); \
|
|
|
|
register long __o4 __asm__ ("o4") = (long)(arg5); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err), "1" (__o0), "r" (__o1), \
|
2002-09-29 11:32:03 +00:00
|
|
|
"r" (__o2), "r" (__o3), "r" (__o4) : \
|
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2011-09-01 00:30:41 +00:00
|
|
|
#define inline_syscall6(string,err,name,arg1,arg2,arg3,arg4,arg5,arg6) \
|
2000-01-31 06:42:36 +00:00
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
|
|
|
register long __o1 __asm__ ("o1") = (long)(arg2); \
|
|
|
|
register long __o2 __asm__ ("o2") = (long)(arg3); \
|
|
|
|
register long __o3 __asm__ ("o3") = (long)(arg4); \
|
|
|
|
register long __o4 __asm__ ("o4") = (long)(arg5); \
|
|
|
|
register long __o5 __asm__ ("o5") = (long)(arg6); \
|
2011-09-01 00:30:41 +00:00
|
|
|
err = name; \
|
|
|
|
__asm __volatile (string : "=r" (err), "=r" (__o0) : \
|
|
|
|
"0" (err), "1" (__o0), "r" (__o1), \
|
2002-09-29 11:32:03 +00:00
|
|
|
"r" (__o2), "r" (__o3), "r" (__o4), \
|
|
|
|
"r" (__o5) : \
|
|
|
|
__SYSCALL_CLOBBERS); \
|
2000-01-31 06:42:36 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
2003-08-31 18:10:47 +00:00
|
|
|
#define INLINE_CLONE_SYSCALL(arg1,arg2,arg3,arg4,arg5) \
|
|
|
|
({ \
|
|
|
|
register long __o0 __asm__ ("o0") = (long)(arg1); \
|
|
|
|
register long __o1 __asm__ ("o1") = (long)(arg2); \
|
|
|
|
register long __o2 __asm__ ("o2") = (long)(arg3); \
|
|
|
|
register long __o3 __asm__ ("o3") = (long)(arg4); \
|
|
|
|
register long __o4 __asm__ ("o4") = (long)(arg5); \
|
|
|
|
register long __g1 __asm__ ("g1") = __NR_clone; \
|
2011-09-01 00:30:41 +00:00
|
|
|
__asm __volatile (__SYSCALL_STRING : \
|
2003-08-31 18:10:47 +00:00
|
|
|
"=r" (__g1), "=r" (__o0), "=r" (__o1) : \
|
|
|
|
"0" (__g1), "1" (__o0), "2" (__o1), \
|
|
|
|
"r" (__o2), "r" (__o3), "r" (__o4) : \
|
|
|
|
__SYSCALL_CLOBBERS); \
|
2012-03-06 19:15:26 +00:00
|
|
|
if (INTERNAL_SYSCALL_ERROR_P (__o0, __g1)) \
|
2011-09-01 00:30:41 +00:00
|
|
|
{ \
|
|
|
|
__set_errno (INTERNAL_SYSCALL_ERRNO (__o0, __g1)); \
|
|
|
|
__o0 = -1L; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
__o0 &= (__o1 - 1); \
|
|
|
|
} \
|
2003-08-31 18:10:47 +00:00
|
|
|
__o0; \
|
|
|
|
})
|
|
|
|
|
Delete everything under sysdeps/unix/sparc/
* sysdeps/unix/sparc/brk.S: Delete.
* sysdeps/unix/sparc/dl-brk.S: Delete.
* sysdeps/unix/sparc/pipe.S: Delete.
* sysdeps/unix/sparc/sysdep.S: Delete.
* sysdeps/unix/sparc/sysdep.h: Delete.
* sysdeps/unix/sparc/vfork.S: Delete.
* sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG,
SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO,
ret_ERRVAL, r0, r1, MOVE): Define.
(JUMPTARGET): Remove.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
sysdeps/unix/sparc/sysdep.h
(ENTRY, END): Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
2012-04-25 18:44:02 +00:00
|
|
|
#endif /* __ASSEMBLER__ */
|
2003-08-31 18:10:47 +00:00
|
|
|
|
2000-01-31 06:42:36 +00:00
|
|
|
#endif /* _LINUX_SPARC_SYSDEP_H */
|