2 Copyright (C) 1995-1998,2000,2002,2005, 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., 59 Temple Place, Suite 330, Boston, MA
21 #include <jmpbuf-offsets.h>
22 #include <asm-syntax.h>
26 #define PARMS LINKAGE /* no space for saved regs */
28 #define VAL JBUF+PTR_SIZE
30 ENTRY (BP_SYM (__longjmp))
34 movl JBUF(%esp), %eax /* User's jmp_buf in %eax. */
35 CHECK_BOUNDS_BOTH_WIDE (%eax, JBUF(%esp), $JB_SIZE)
37 /* Save the return address now. */
38 movl (JB_PC*4)(%eax), %edx
39 /* Get the stack pointer. */
40 movl (JB_SP*4)(%eax), %ecx
44 cfi_register(%eip, %edx)
45 cfi_register(%esp, %ecx)
46 cfi_offset(%ebx, JB_BX*4)
47 cfi_offset(%esi, JB_SI*4)
48 cfi_offset(%edi, JB_DI*4)
49 cfi_offset(%ebp, JB_BP*4)
50 /* Restore registers. */
51 movl (JB_BX*4)(%eax), %ebx
52 movl (JB_SI*4)(%eax), %esi
53 movl (JB_DI*4)(%eax), %edi
54 movl (JB_BP*4)(%eax), %ebp
60 movl VAL(%esp), %eax /* Second argument is return value. */
63 movl JBUF(%esp), %ecx /* User's jmp_buf in %ecx. */
64 CHECK_BOUNDS_BOTH_WIDE (%ecx, JBUF(%esp), $JB_SIZE)
66 movl VAL(%esp), %eax /* Second argument is return value. */
67 /* Save the return address now. */
68 movl (JB_PC*4)(%ecx), %edx
69 /* Restore registers. */
70 movl (JB_BX*4)(%ecx), %ebx
71 movl (JB_SI*4)(%ecx), %esi
72 movl (JB_DI*4)(%ecx), %edi
73 movl (JB_BP*4)(%ecx), %ebp
74 movl (JB_SP*4)(%ecx), %esp
76 /* Jump to saved PC. */
78 END (BP_SYM (__longjmp))