1 /* Set up a context to call a function.
2 Copyright (C) 2002, 2004, 2006 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., 51 Franklin Street, Fifth Floor, Boston MA
21 #include <shlib-compat.h>
24 #include <asm/ptrace.h>
25 #include "ucontext_i.h"
28 /* Set up the first 7 args to the function in its registers */
29 addi r11,r3,_UC_REG_SPACE+12
31 stw r11,_UC_REGS_PTR(r3)
32 stw r6,_UC_GREGS+(PT_R3*4)(r11)
33 stw r7,_UC_GREGS+(PT_R4*4)(r11)
34 stw r8,_UC_GREGS+(PT_R5*4)(r11)
35 stw r9,_UC_GREGS+(PT_R6*4)(r11)
36 stw r10,_UC_GREGS+(PT_R7*4)(r11)
39 stw r8,_UC_GREGS+(PT_R8*4)(r11)
40 stw r9,_UC_GREGS+(PT_R9*4)(r11)
42 /* Set the NIP to the start of the function */
43 stw r4,_UC_GREGS+(PT_NIP*4)(r11)
45 /* Set the function's r31 to ucp->uc_link for the exitcode below. */
47 stw r7,_UC_GREGS+(PT_R31*4)(r11)
49 /* Set the function's LR to point to the exitcode below. */
55 addi r6,r6,L(exitcode)-1b
60 addi r6,r6,L(exitcode)@l
62 stw r6,_UC_GREGS+(PT_LNK*4)(r11)
65 * Set up the stack frame for the function.
66 * If we have more than 5 args to the function (8 args to makecontext),
67 * there will be some arguments on the stack which have to end up
68 * in registers. If there are more than 8 args to the function,
69 * we have to copy (argc - 8) args from our stack to the functions'
70 * stack (and allow space for them in the frame).
72 lwz r4,_UC_STACK_SP(r3)
73 lwz r8,_UC_STACK_SIZE(r3)
75 rlwinm r4,r4,0,0,27 /* round down to 16-byte boundary */
76 addi r7,r4,-16 /* stack frame for fn's caller */
78 blt 2f /* less than 8 args is easy */
80 stw r10,_UC_GREGS+(PT_R10*4)(r11)
81 beq 2f /* if exactly 8 args */
86 mtctr r5 /* copy the 9th and following args */
92 2: stw r7,_UC_GREGS+(PT_R1*4)(r11)
99 * If the function returns, it comes here. We put ucp->uc_link in
100 * r31, which is a callee-saved register. We have to continue with
101 * the context that r31 points to, or exit if it is 0.
106 bl __setcontext@local
107 4: bl HIDDEN_JUMPTARGET(exit)
112 versioned_symbol (libc, __makecontext, makecontext, GLIBC_2_3_4)
114 #if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
117 ENTRY(__novec_makecontext)
118 /* Set up the first 7 args to the function in its registers */
119 addi r11,r3,_UC_REG_SPACE
120 stw r11,_UC_REGS_PTR(r3)
121 stw r6,_UC_GREGS+(PT_R3*4)(r11)
122 stw r7,_UC_GREGS+(PT_R4*4)(r11)
123 stw r8,_UC_GREGS+(PT_R5*4)(r11)
124 stw r9,_UC_GREGS+(PT_R6*4)(r11)
125 stw r10,_UC_GREGS+(PT_R7*4)(r11)
128 stw r8,_UC_GREGS+(PT_R8*4)(r11)
129 stw r9,_UC_GREGS+(PT_R9*4)(r11)
131 /* Set the NIP to the start of the function */
132 stw r4,_UC_GREGS+(PT_NIP*4)(r11)
134 /* Set the function's r31 to ucp->uc_link for the exitcode below. */
136 stw r7,_UC_GREGS+(PT_R31*4)(r11)
138 /* Set the function's LR to point to the exitcode below. */
144 addi r6,r6,L(novec_exitcode)-1b
148 lis r6,L(novec_exitcode)@ha
149 addi r6,r6,L(novec_exitcode)@l
151 stw r6,_UC_GREGS+(PT_LNK*4)(r11)
154 * Set up the stack frame for the function.
155 * If we have more than 5 args to the function (8 args to makecontext),
156 * there will be some arguments on the stack which have to end up
157 * in registers. If there are more than 8 args to the function,
158 * we have to copy (argc - 8) args from our stack to the functions'
159 * stack (and allow space for them in the frame).
161 lwz r4,_UC_STACK_SP(r3)
162 lwz r8,_UC_STACK_SIZE(r3)
164 rlwinm r4,r4,0,0,27 /* round down to 16-byte boundary */
165 addi r7,r4,-16 /* stack frame for fn's caller */
167 blt 2f /* less than 8 args is easy */
169 stw r10,_UC_GREGS+(PT_R10*4)(r11)
170 beq 2f /* if exactly 8 args */
175 mtctr r5 /* copy the 9th and following args */
181 2: stw r7,_UC_GREGS+(PT_R1*4)(r11)
188 * If the function returns, it comes here. We put ucp->uc_link in
189 * r31, which is a callee-saved register. We have to continue with
190 * the context that r31 points to, or exit if it is 0.
195 bl __novec_setcontext@local
196 4: bl HIDDEN_JUMPTARGET(exit)
199 END(__novec_makecontext)
202 compat_symbol (libc, __novec_makecontext, makecontext, GLIBC_2_3_3)
205 #if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_3_3)
208 #include <bits/errno.h>
211 ENTRY (__makecontext_stub)
213 b __syscall_error@local
214 END (__makecontext_stub)
217 compat_symbol (libc, __makecontext_stub, makecontext, GLIBC_2_1)