mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 11:00:07 +00:00
c816e07413
2002-08-31 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_routines): Add __start_context. * sysdeps/unix/sysv/linux/x86_64/__start_context.S: New file. * sysdeps/unix/sysv/linux/x86_64/makecontext.c: New file. * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Add defines for registers used for passing args. * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Save and restore all needed registers. * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Restore all registers. * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Save all needed registers.
90 lines
2.6 KiB
ArmAsm
90 lines
2.6 KiB
ArmAsm
/* Install given context.
|
|
Copyright (C) 2002 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Andreas Jaeger <aj@suse.de>, 2002.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <sysdep.h>
|
|
|
|
#include "ucontext_i.h"
|
|
|
|
|
|
/* int __setcontext (const ucontext_t *ucp)
|
|
|
|
Restores the machine context in UCP and thereby resumes execution
|
|
in that context.
|
|
|
|
This implementation is intended to be used for *synchronous* context
|
|
switches only. Therefore, it does not have to restore anything
|
|
other than the PRESERVED state. */
|
|
|
|
ENTRY(__setcontext)
|
|
/* Save argument since syscall will destroy it. */
|
|
pushq %rdi
|
|
|
|
/* Set the signal mask with
|
|
rt_sigprocmask (SIG_SETMASK, mask, NULL, _NSIG/8). */
|
|
leaq oSIGMASK(%rdi), %rsi
|
|
xorq %rdx, %rdx
|
|
movq $SIG_SETMASK, %rdi
|
|
movq $_NSIG8,%r10
|
|
movq $__NR_rt_sigprocmask, %rax
|
|
syscall
|
|
popq %rdi /* Reload %rdi, adjust stack. */
|
|
cmpq $-4095, %rax /* Check %rax for error. */
|
|
jae SYSCALL_ERROR_LABEL /* Jump to error handler if error. */
|
|
|
|
/* Restore the floating-point context. Not the registers, only the
|
|
rest. */
|
|
movq oFPREGS(%rdi), %rcx
|
|
fldenv (%rcx)
|
|
ldmxcsr oMXCSR(%rdi)
|
|
|
|
|
|
/* Load the new stack pointer, the preserved registers and
|
|
registers used for passing args. */
|
|
movq oRSP(%rdi), %rsp
|
|
movq oRBX(%rdi), %rbx
|
|
movq oRBP(%rdi), %rbp
|
|
movq oR12(%rdi), %r12
|
|
movq oR13(%rdi), %r13
|
|
movq oR14(%rdi), %r14
|
|
movq oR15(%rdi), %r15
|
|
|
|
/* The following ret should return to the address set with
|
|
getcontext. Therefore push the address on the stack. */
|
|
movq oRIP(%rdi), %rcx
|
|
pushq %rcx
|
|
|
|
movq oRSI(%rdi), %rsi
|
|
movq oRDX(%rdi), %rdx
|
|
movq oRCX(%rdi), %rcx
|
|
movq oR8(%rdi), %r8
|
|
movq oR9(%rdi), %r9
|
|
|
|
/* Setup finally %rdi. */
|
|
movq oRDI(%rdi), %rdi
|
|
|
|
/* Clear rax to indicate success. */
|
|
xorq %rax, %rax
|
|
|
|
L(pseudo_end):
|
|
ret
|
|
PSEUDO_END(__setcontext)
|
|
|
|
weak_alias(__setcontext, setcontext)
|