1 /* Save current context and install the given one.
2 Copyright (C) 2005-2024 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, see
17 <https://www.gnu.org/licenses/>. */
21 #include "ucontext_i.h"
23 /* int __swapcontext (ucontext_t *ouc, const ucontext_t *uc); */
29 /* Return value of getcontext. R0 is the only register whose
30 value is not preserved. */
46 /* Save T flag to SR. */
51 /* The return address of getcontext is the restart pc. */
65 /* sigprocmask (SIG_SETMASK, &uc->uc_sigmask, &ouc->uc_sigmask). */
70 mov #+SYS_ify(sigprocmask), r3
75 not r1, r1 // r1=0 means r0 = -1 to -4095
76 tst r1, r1 // i.e. error in linux
77 bf .Lswapcontext_restore
83 .Lswapcontext_restore:
92 /* Skip GBR which is used for thread pointer. */
111 cfi_adjust_cfa_offset(4)
112 cfi_rel_offset (r1, 0)
114 cfi_adjust_cfa_offset(4)
115 cfi_rel_offset (r2, 0)
126 cfi_adjust_cfa_offset(-4)
130 PSEUDO_END(__swapcontext)
132 weak_alias (__swapcontext, swapcontext)