]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/i386/makecontext.S
e3ca3dc0d569e4b6c845fd9237b6fa259f39bdcb
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / i386 / makecontext.S
1 /* Create new context.
2 Copyright (C) 2001-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
5
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.
10
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.
15
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/>. */
19
20 #include <sysdep.h>
21
22 #include "ucontext_i.h"
23
24
25 ENTRY(__makecontext)
26 movl 4(%esp), %eax
27
28 /* Load the address of the function we are supposed to run. */
29 movl 8(%esp), %ecx
30
31 /* Compute the address of the stack. The information comes from
32 to us_stack element. */
33 movl oSS_SP(%eax), %edx
34 movl %ecx, oEIP(%eax)
35 addl oSS_SIZE(%eax), %edx
36
37 /* Remember the number of parameters for the exit handler since
38 it has to remove them. We store the number in the EBX register
39 which the function we will call must preserve. */
40 movl 12(%esp), %ecx
41 movl %ecx, oEBX(%eax)
42
43 /* Make room on the new stack for the parameters.
44 Room for the arguments, return address (== L(exitcode)) and
45 oLINK pointer is needed. One of the pointer sizes is subtracted
46 after aligning the stack. */
47 negl %ecx
48 leal -4(%edx,%ecx,4), %edx
49 negl %ecx
50
51 /* Align the stack. */
52 andl $0xfffffff0, %edx
53 subl $4, %edx
54
55 /* Store the future stack pointer. */
56 movl %edx, oESP(%eax)
57
58 /* Put the next context on the new stack (from the uc_link
59 element). */
60 movl oLINK(%eax), %eax
61 movl %eax, 4(%edx,%ecx,4)
62
63 /* Copy all the parameters. */
64 jecxz 2f
65 1: movl 12(%esp,%ecx,4), %eax
66 movl %eax, (%edx,%ecx,4)
67 decl %ecx
68 jnz 1b
69 2:
70
71 /* If the function we call returns we must continue with the
72 context which is given in the uc_link element. To do this
73 set the return address for the function the user provides
74 to a little bit of helper code which does the magic (see
75 below). */
76 #ifdef PIC
77 call 1f
78 cfi_adjust_cfa_offset (4)
79 1: popl %ecx
80 cfi_adjust_cfa_offset (-4)
81 addl $L(exitcode)-1b, %ecx
82 movl %ecx, (%edx)
83 #else
84 movl $L(exitcode), (%edx)
85 #endif
86 /* We need to terminate the FDE here instead of after ret because
87 the unwinder looks at ra-1 for unwind information. */
88 cfi_endproc
89
90 /* 'makecontext' returns no value. */
91 ret
92
93 /* This is the helper code which gets called if a function which
94 is registered with 'makecontext' returns. In this case we
95 have to install the context listed in the uc_link element of
96 the context 'makecontext' manipulated at the time of the
97 'makecontext' call. If the pointer is NULL the process must
98 terminate. */
99 L(exitcode):
100 /* This removes the parameters passed to the function given to
101 'makecontext' from the stack. EBX contains the number of
102 parameters (see above). */
103 leal (%esp,%ebx,4), %esp
104
105 cmpl $0, (%esp) /* Check the next context. */
106 je 2f /* If it is zero exit. */
107
108 call HIDDEN_JUMPTARGET(__setcontext)
109 /* If this returns (which can happen if the syscall fails) we'll
110 exit the program with the return error value (-1). */
111 jmp L(call_exit)
112
113 2:
114 /* Exit with status 0. */
115 xorl %eax, %eax
116
117 L(call_exit):
118 /* Align the stack and pass the exit code (from %eax). */
119 andl $0xfffffff0, %esp
120 subl $12, %esp
121 pushl %eax
122
123 call HIDDEN_JUMPTARGET(exit)
124 /* The 'exit' call should never return. In case it does cause
125 the process to terminate. */
126 hlt
127 cfi_startproc
128 END(__makecontext)
129
130 weak_alias (__makecontext, makecontext)