]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
Merge glibc-ports into ports/ directory.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc64 / makecontext.c
1 /* Copyright (C) 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>.
4
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.
9
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.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <stdarg.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <ucontext.h>
23
24 void
25 __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
26 {
27 extern void __makecontext_ret (void);
28 unsigned long *sp, *topsp;
29 va_list ap;
30 int i;
31
32 sp = (unsigned long *) ((long) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size);
33 sp -= (argc > 6 ? argc : 6) + 32;
34 sp = (unsigned long *) (((long) sp) & -16L);
35 topsp = sp + (argc > 6 ? argc : 6) + 16;
36
37 ucp->uc_mcontext.mc_gregs[MC_PC] = (long) func;
38 ucp->uc_mcontext.mc_gregs[MC_NPC] = ((long) func) + 4;
39 ucp->uc_mcontext.mc_gregs[MC_O6] = ((long) sp) - 0x7ff;
40 ucp->uc_mcontext.mc_gregs[MC_O7] = ((long) __makecontext_ret) - 8;
41 ucp->uc_mcontext.mc_fp = ((long) topsp) - 0x7ff;
42 ucp->uc_mcontext.mc_i7 = 0;
43 topsp[14] = 0;
44 topsp[15] = 0;
45 sp[8] = (long) ucp->uc_link;
46 va_start (ap, argc);
47 for (i = 0; i < argc; ++i)
48 if (i < 6)
49 ucp->uc_mcontext.mc_gregs[MC_O0 + i] = va_arg (ap, long);
50 else
51 sp[16 + i] = va_arg (ap, long);
52 va_end (ap);
53 }
54
55 asm (" \n\
56 .text \n\
57 .type __makecontext_ret, #function \n\
58 __makecontext_ret: \n\
59 mov 1, %o1 \n\
60 call __setcontext \n\
61 mov %i0, %o0 \n\
62 unimp 0 \n\
63 .size __makecontext_ret, .-__makecontext_ret \n\
64 ");
65
66 weak_alias (__makecontext, makecontext)