diff options
author | Roland McGrath <roland@gnu.org> | 1996-03-12 09:50:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-03-12 09:50:46 +0000 |
commit | 1177c8babf74c7335c5f3bf09c45961bebeed6c6 (patch) | |
tree | 32a7b9a837848f7af33a8c541f092ec6acfda9ac /sysdeps/sparc/setjmp.S | |
parent | dd0e4e0c8bc50309bdadae2ec78c4ccf15e6c402 (diff) | |
download | glibc-1177c8babf74c7335c5f3bf09c45961bebeed6c6.tar glibc-1177c8babf74c7335c5f3bf09c45961bebeed6c6.tar.gz glibc-1177c8babf74c7335c5f3bf09c45961bebeed6c6.tar.bz2 glibc-1177c8babf74c7335c5f3bf09c45961bebeed6c6.zip |
Tue Mar 12 04:42:01 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
* sysdeps/sparc/jmp_buf.h: Rewritten; use array of ints, not struct.
* sysdeps/sparc/setjmp.S: Rewritten; store %fp value as well.
* sysdeps/sparc/__longjmp.S: Rewritten; unwind frames one by one with
`restore' until the target frame is hit.
Sun Mar 10 20:29:40 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/sigsuspend.c: New file.
* sysdeps/unix/sysv/linux/syscalls.list: Remove sigsuspend, add
s_sigsuspend.
Thu Mar 7 21:30:58 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makerules (+make-deps, sed-remove-objpfx): Quote periods on the
left side of sed substitutions.
Sun Mar 10 16:58:10 1996 Ulrich Drepper <drepper@gnu.ai.mit.edu>
* stdio-common/printf_fp.c (hack_digit): __mpn_normal_size
is not available anymore. Do it ourselves.
* sysdeps/unix/sysv/linux/i386/fpu_control.h (_FPU_SETCW):
Correct GCC `asm' syntax.
* stdio-common/Makefile (tests): Add tst-ungetc.
* stdio-common/tst-ungetc.c: New test from drepper.
* stdio-common/tstscanf.c (main): New %[ test case from drepper.
* sysdeps/libm-ieee754/s_scalbn.c (scalbn): Rename to __scalbn;
somehow this was missed, though the weak alias is already there.
Diffstat (limited to 'sysdeps/sparc/setjmp.S')
-rw-r--r-- | sysdeps/sparc/setjmp.S | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/sparc/setjmp.S b/sysdeps/sparc/setjmp.S index 3c9c18d00d..2cf92cddd7 100644 --- a/sysdeps/sparc/setjmp.S +++ b/sysdeps/sparc/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,15 +17,15 @@ not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sysdep.h> - -/* NOTE: This code depends on the definition of `__jmp_buf' in <jmp_buf.h>. */ +#include <jmp_buf.h> ENTRY (__sigsetjmp) - /* Save our return PC and SP (second store in the jmp delay slot). */ - st %o7, [%o0] - /* Save the signal mask if requested. We do this as a tail-call + /* Save our SP and FP; in the delay slot of the jump, save our + return PC. Save the signal mask if requested with a tail-call for simplicity; it always returns zero. */ sethi %hi(C_SYMBOL_NAME (__sigjmp_save)), %g1 + st %sp, [%o0 + (JB_SP*4)] or %lo(C_SYMBOL_NAME (__sigjmp_save)), %g1, %g1 + st %fp, [%o0 + (JB_FP*4)] jmp %g1 - st %sp, [%o0 + 4] + st %o7, [%o0 + (JB_PC*4)] |