2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / i386 / sync_file_range.S
blob8544703d56c0d2b584b6b7c48167703cc95c504e
1 /* Selective file content synch'ing.
2    Copyright (C) 2006, 2007 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep.h>
21 #define _ERRNO_H        1
22 #include <bits/errno.h>
25         .text
26 ENTRY (sync_file_range)
27 #ifdef __NR_sync_file_range
28         pushl   %ebx
29         cfi_adjust_cfa_offset (4)
30         pushl   %esi
31         cfi_adjust_cfa_offset (4)
32         pushl   %edi
33         cfi_adjust_cfa_offset (4)
34         pushl   %ebp
35         cfi_adjust_cfa_offset (4)
37         movl    20(%esp), %ebx
38         cfi_rel_offset (ebx, 12)
39         movl    24(%esp), %ecx
40         movl    28(%esp), %edx
41         movl    32(%esp), %esi
42         cfi_rel_offset (esi, 8)
43         movl    36(%esp), %edi
44         cfi_rel_offset (edi, 4)
45         movl    40(%esp), %ebp
46         cfi_rel_offset (ebp, 0)
48         movl    $SYS_ify(sync_file_range), %eax
49         ENTER_KERNEL
51         popl    %ebp
52         cfi_adjust_cfa_offset (-4)
53         cfi_restore (ebp)
54         popl    %edi
55         cfi_adjust_cfa_offset (-4)
56         cfi_restore (edi)
57         popl    %esi
58         cfi_adjust_cfa_offset (-4)
59         cfi_restore (esi)
60         popl    %ebx
61         cfi_adjust_cfa_offset (-4)
62         cfi_restore (ebx)
64         cmpl    $-4095, %eax
65         jae     SYSCALL_ERROR_LABEL
66 #else
67         movl    $-ENOSYS, %eax
68         jmp     SYSCALL_ERROR_LABEL
69 #endif
70 L(pseudo_end):
71         ret
72 PSEUDO_END (sync_file_range)