Merge "AArch64: Remove Frame Record from ARM64 syscalls"

This commit is contained in:
Elliott Hughes 2014-06-09 19:29:46 +00:00 committed by Gerrit Code Review
commit 36ed5971c4
189 changed files with 0 additions and 2080 deletions

View File

@ -31,12 +31,6 @@
// pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg); // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
ENTRY(__bionic_clone) ENTRY(__bionic_clone)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
# Copy 'fn' and 'arg' onto the child stack. # Copy 'fn' and 'arg' onto the child stack.
stp x5, x6, [x1, #-16] stp x5, x6, [x1, #-16]
@ -47,11 +41,6 @@ ENTRY(__bionic_clone)
# Are we the child? # Are we the child?
cbz x0, .L_bc_child cbz x0, .L_bc_child
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
# Set errno if something went wrong. # Set errno if something went wrong.
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi

View File

@ -29,13 +29,6 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(syscall) ENTRY(syscall)
/* create AAPCS frame pointer */
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
/* Move syscall No. from x0 to x8 */ /* Move syscall No. from x0 to x8 */
mov x8, x0 mov x8, x0
/* Move syscall parameters from x1 thru x6 to x0 thru x5 */ /* Move syscall parameters from x1 thru x6 to x0 thru x5 */
@ -47,11 +40,6 @@ ENTRY(syscall)
mov x5, x6 mov x5, x6
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
/* check if syscall returned successfully */ /* check if syscall returned successfully */
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__accept4) ENTRY(__accept4)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_accept4 mov x8, __NR_accept4
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__brk) ENTRY(__brk)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_brk mov x8, __NR_brk
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__connect) ENTRY(__connect)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_connect mov x8, __NR_connect
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__epoll_pwait) ENTRY(__epoll_pwait)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_epoll_pwait mov x8, __NR_epoll_pwait
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__exit) ENTRY(__exit)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_exit mov x8, __NR_exit
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__getcpu) ENTRY(__getcpu)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getcpu mov x8, __NR_getcpu
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__getcwd) ENTRY(__getcwd)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getcwd mov x8, __NR_getcwd
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__getdents64) ENTRY(__getdents64)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getdents64 mov x8, __NR_getdents64
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__getpriority) ENTRY(__getpriority)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getpriority mov x8, __NR_getpriority
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__ioctl) ENTRY(__ioctl)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_ioctl mov x8, __NR_ioctl
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__openat) ENTRY(__openat)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_openat mov x8, __NR_openat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__ppoll) ENTRY(__ppoll)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_ppoll mov x8, __NR_ppoll
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__pselect6) ENTRY(__pselect6)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_pselect6 mov x8, __NR_pselect6
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__ptrace) ENTRY(__ptrace)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_ptrace mov x8, __NR_ptrace
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__reboot) ENTRY(__reboot)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_reboot mov x8, __NR_reboot
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__rt_sigaction) ENTRY(__rt_sigaction)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_rt_sigaction mov x8, __NR_rt_sigaction
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__rt_sigpending) ENTRY(__rt_sigpending)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_rt_sigpending mov x8, __NR_rt_sigpending
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__rt_sigprocmask) ENTRY(__rt_sigprocmask)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_rt_sigprocmask mov x8, __NR_rt_sigprocmask
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__rt_sigsuspend) ENTRY(__rt_sigsuspend)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_rt_sigsuspend mov x8, __NR_rt_sigsuspend
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__rt_sigtimedwait) ENTRY(__rt_sigtimedwait)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_rt_sigtimedwait mov x8, __NR_rt_sigtimedwait
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__sched_getaffinity) ENTRY(__sched_getaffinity)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_sched_getaffinity mov x8, __NR_sched_getaffinity
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__set_tid_address) ENTRY(__set_tid_address)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_set_tid_address mov x8, __NR_set_tid_address
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__signalfd4) ENTRY(__signalfd4)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_signalfd4 mov x8, __NR_signalfd4
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__socket) ENTRY(__socket)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_socket mov x8, __NR_socket
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__timer_create) ENTRY(__timer_create)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_timer_create mov x8, __NR_timer_create
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__timer_delete) ENTRY(__timer_delete)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_timer_delete mov x8, __NR_timer_delete
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__timer_getoverrun) ENTRY(__timer_getoverrun)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_timer_getoverrun mov x8, __NR_timer_getoverrun
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__timer_gettime) ENTRY(__timer_gettime)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_timer_gettime mov x8, __NR_timer_gettime
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__timer_settime) ENTRY(__timer_settime)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_timer_settime mov x8, __NR_timer_settime
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(__waitid) ENTRY(__waitid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_waitid mov x8, __NR_waitid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(_exit) ENTRY(_exit)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_exit_group mov x8, __NR_exit_group
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(acct) ENTRY(acct)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_acct mov x8, __NR_acct
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(bind) ENTRY(bind)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_bind mov x8, __NR_bind
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(capget) ENTRY(capget)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_capget mov x8, __NR_capget
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(capset) ENTRY(capset)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_capset mov x8, __NR_capset
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(chdir) ENTRY(chdir)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_chdir mov x8, __NR_chdir
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(chroot) ENTRY(chroot)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_chroot mov x8, __NR_chroot
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(clock_getres) ENTRY(clock_getres)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_clock_getres mov x8, __NR_clock_getres
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(clock_gettime) ENTRY(clock_gettime)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_clock_gettime mov x8, __NR_clock_gettime
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(clock_nanosleep) ENTRY(clock_nanosleep)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_clock_nanosleep mov x8, __NR_clock_nanosleep
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(clock_settime) ENTRY(clock_settime)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_clock_settime mov x8, __NR_clock_settime
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(close) ENTRY(close)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_close mov x8, __NR_close
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(delete_module) ENTRY(delete_module)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_delete_module mov x8, __NR_delete_module
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(dup) ENTRY(dup)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_dup mov x8, __NR_dup
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(dup3) ENTRY(dup3)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_dup3 mov x8, __NR_dup3
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(epoll_create1) ENTRY(epoll_create1)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_epoll_create1 mov x8, __NR_epoll_create1
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(epoll_ctl) ENTRY(epoll_ctl)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_epoll_ctl mov x8, __NR_epoll_ctl
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(eventfd) ENTRY(eventfd)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_eventfd2 mov x8, __NR_eventfd2
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(execve) ENTRY(execve)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_execve mov x8, __NR_execve
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(faccessat) ENTRY(faccessat)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_faccessat mov x8, __NR_faccessat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fallocate) ENTRY(fallocate)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fallocate mov x8, __NR_fallocate
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fchdir) ENTRY(fchdir)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fchdir mov x8, __NR_fchdir
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fchmod) ENTRY(fchmod)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fchmod mov x8, __NR_fchmod
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fchmodat) ENTRY(fchmodat)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fchmodat mov x8, __NR_fchmodat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fchown) ENTRY(fchown)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fchown mov x8, __NR_fchown
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fchownat) ENTRY(fchownat)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fchownat mov x8, __NR_fchownat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fcntl) ENTRY(fcntl)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fcntl mov x8, __NR_fcntl
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fdatasync) ENTRY(fdatasync)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fdatasync mov x8, __NR_fdatasync
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fgetxattr) ENTRY(fgetxattr)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fgetxattr mov x8, __NR_fgetxattr
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(flistxattr) ENTRY(flistxattr)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_flistxattr mov x8, __NR_flistxattr
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(flock) ENTRY(flock)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_flock mov x8, __NR_flock
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fremovexattr) ENTRY(fremovexattr)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fremovexattr mov x8, __NR_fremovexattr
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fsetxattr) ENTRY(fsetxattr)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fsetxattr mov x8, __NR_fsetxattr
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fstat64) ENTRY(fstat64)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fstat mov x8, __NR_fstat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fstatat64) ENTRY(fstatat64)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_newfstatat mov x8, __NR_newfstatat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fstatfs64) ENTRY(fstatfs64)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fstatfs mov x8, __NR_fstatfs
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(fsync) ENTRY(fsync)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_fsync mov x8, __NR_fsync
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(ftruncate) ENTRY(ftruncate)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_ftruncate mov x8, __NR_ftruncate
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getegid) ENTRY(getegid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getegid mov x8, __NR_getegid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(geteuid) ENTRY(geteuid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_geteuid mov x8, __NR_geteuid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getgid) ENTRY(getgid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getgid mov x8, __NR_getgid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getgroups) ENTRY(getgroups)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getgroups mov x8, __NR_getgroups
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getitimer) ENTRY(getitimer)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getitimer mov x8, __NR_getitimer
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getpeername) ENTRY(getpeername)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getpeername mov x8, __NR_getpeername
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getpgid) ENTRY(getpgid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getpgid mov x8, __NR_getpgid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getpid) ENTRY(getpid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getpid mov x8, __NR_getpid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getppid) ENTRY(getppid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getppid mov x8, __NR_getppid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getresgid) ENTRY(getresgid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getresgid mov x8, __NR_getresgid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getresuid) ENTRY(getresuid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getresuid mov x8, __NR_getresuid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getrlimit) ENTRY(getrlimit)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getrlimit mov x8, __NR_getrlimit
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getrusage) ENTRY(getrusage)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getrusage mov x8, __NR_getrusage
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getsid) ENTRY(getsid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getsid mov x8, __NR_getsid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getsockname) ENTRY(getsockname)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getsockname mov x8, __NR_getsockname
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getsockopt) ENTRY(getsockopt)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getsockopt mov x8, __NR_getsockopt
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(gettimeofday) ENTRY(gettimeofday)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_gettimeofday mov x8, __NR_gettimeofday
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getuid) ENTRY(getuid)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getuid mov x8, __NR_getuid
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(getxattr) ENTRY(getxattr)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_getxattr mov x8, __NR_getxattr
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(init_module) ENTRY(init_module)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_init_module mov x8, __NR_init_module
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(inotify_add_watch) ENTRY(inotify_add_watch)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_inotify_add_watch mov x8, __NR_inotify_add_watch
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(inotify_init1) ENTRY(inotify_init1)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_inotify_init1 mov x8, __NR_inotify_init1
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(inotify_rm_watch) ENTRY(inotify_rm_watch)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_inotify_rm_watch mov x8, __NR_inotify_rm_watch
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(ioprio_get) ENTRY(ioprio_get)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_ioprio_get mov x8, __NR_ioprio_get
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(ioprio_set) ENTRY(ioprio_set)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_ioprio_set mov x8, __NR_ioprio_set
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(kill) ENTRY(kill)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_kill mov x8, __NR_kill
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(klogctl) ENTRY(klogctl)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_syslog mov x8, __NR_syslog
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(lgetxattr) ENTRY(lgetxattr)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_lgetxattr mov x8, __NR_lgetxattr
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(linkat) ENTRY(linkat)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_linkat mov x8, __NR_linkat
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

View File

@ -3,20 +3,9 @@
#include <private/bionic_asm.h> #include <private/bionic_asm.h>
ENTRY(listen) ENTRY(listen)
stp x29, x30, [sp, #-16]!
.cfi_def_cfa_offset 16
.cfi_rel_offset x29, 0
.cfi_rel_offset x30, 8
mov x29, sp
mov x8, __NR_listen mov x8, __NR_listen
svc #0 svc #0
ldp x29, x30, [sp], #16
.cfi_def_cfa_offset 0
.cfi_restore x29
.cfi_restore x30
cmn x0, #(MAX_ERRNO + 1) cmn x0, #(MAX_ERRNO + 1)
cneg x0, x0, hi cneg x0, x0, hi
b.hi __set_errno b.hi __set_errno

Some files were not shown because too many files have changed in this diff Show More