Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / i386 / setcontext.S
blobefca0805394d9b6e6b9db1fb8c40223587d342a1
1 /* Install given context.
2    Copyright (C) 2001-2014 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
20 #include <sysdep.h>
22 #include "ucontext_i.h"
25 ENTRY(__setcontext)
26         /* Load address of the context data structure.  */
27         movl    4(%esp), %eax
29         /* Get the current signal mask.  Note that we preserve EBX in case
30            the system call fails and we return from the function with an
31            error.  */
32         pushl   %ebx
33         cfi_adjust_cfa_offset (4)
34         xorl    %edx, %edx
35         leal    oSIGMASK(%eax), %ecx
36         movl    $SIG_SETMASK, %ebx
37         cfi_rel_offset (ebx, 0)
38         movl    $__NR_sigprocmask, %eax
39         ENTER_KERNEL
40         popl    %ebx
41         cfi_adjust_cfa_offset (-4)
42         cfi_restore (ebx)
43         cmpl    $-4095, %eax            /* Check %eax for error.  */
44         jae     SYSCALL_ERROR_LABEL     /* Jump to error handler if error.  */
46         /* EAX was modified, reload it.  */
47         movl    4(%esp), %eax
49         /* Restore the floating-point context.  Not the registers, only the
50            rest.  */
51         movl    oFPREGS(%eax), %ecx
52         fldenv  (%ecx)
54         /* Restore the FS segment register.  We don't touch the GS register
55            since it is used for threads.  */
56         movl    oFS(%eax), %ecx
57         movw    %cx, %fs
59         /* Fetch the address to return to.  */
60         movl    oEIP(%eax), %ecx
62         /* Load the new stack pointer.  */
63         cfi_def_cfa (eax, 0)
64         cfi_offset (edi, oEDI)
65         cfi_offset (esi, oESI)
66         cfi_offset (ebp, oEBP)
67         cfi_offset (ebx, oEBX)
68         cfi_offset (edx, oEDX)
69         cfi_offset (ecx, oECX)
70         movl    oESP(%eax), %esp
72         /* Push the return address on the new stack so we can return there.  */
73         pushl   %ecx
75         /* Load the values of all the 32-bit registers (except ESP).
76            Since we are loading from EAX, it must be last.  */
77         movl    oEDI(%eax), %edi
78         movl    oESI(%eax), %esi
79         movl    oEBP(%eax), %ebp
80         movl    oEBX(%eax), %ebx
81         movl    oEDX(%eax), %edx
82         movl    oECX(%eax), %ecx
83         movl    oEAX(%eax), %eax
85         /* End FDE here, we fall into another context.  */
86         cfi_endproc
87         cfi_startproc
89         /* The following 'ret' will pop the address of the code and jump
90            to it.  */
92         ret
93 PSEUDO_END(__setcontext)
95 weak_alias (__setcontext, setcontext)