]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/sparc/sparc32/__longjmp.S
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / sparc / sparc32 / __longjmp.S
index 651ede4c15400527ab759130ab6023198b72cc5d..c8d6328063a1bc7cc618a3d7b884c079a17c939e 100644 (file)
@@ -1,37 +1,45 @@
-/* Copyright (C) 1991, 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2014 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
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
+   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
-   Library General Public License for more details.
+   Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Library General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
 
-#define _ASM 1
-#include <bits/setjmp.h>
-#define ENV(reg) [%g1 + (reg * 4)]
+#include <jmpbuf-offsets.h>
+#define ENV(base,reg) [%base + (reg * 4)]
+#define ST_FLUSH_WINDOWS 3
 
 ENTRY(__longjmp)
        /* Store our arguments in global registers so we can still
           use them while unwinding frames and their register windows.  */
+
+       ld ENV(o0,JB_FP), %g3   /* Cache target FP in register %g3.  */
+#ifdef PTR_DEMANGLE
+       PTR_DEMANGLE (%g3, %g3, %g4)
+#endif
        mov %o0, %g1            /* ENV in %g1 */
-       orcc %o1, %g0, %g2      /* VAL in %g2 */
-       be,a 0f                 /* Branch if zero; else skip delay slot.  */
+       orcc %o1, %g0, %g2      /* VAL in %g2 */
+       be,a 0f                 /* Branch if zero; else skip delay slot.  */
         mov 1, %g2             /* Delay slot only hit if zero: VAL = 1.  */
 0:
-       /* Cache target FP in register %g3.  */
-       ld ENV(JB_FP), %g3
+       xor %fp, %g3, %o0
+       add %fp, 512, %o1
+       andncc %o0, 4095, %o0
+       bne LOC(thread)
+        cmp %o1, %g3
+       bl LOC(thread)
 
        /* Now we will loop, unwinding the register windows up the stack
           until the restored %fp value matches the target value in %g3.  */
@@ -41,23 +49,44 @@ LOC(loop):
        bl,a LOC(loop)          /* Loop while current fp is below target.  */
         restore                /* Unwind register window in delay slot.  */
        be,a LOC(found)         /* Better have hit it exactly.  */
-        ld ENV(JB_SP), %o0     /* Delay slot: extract target SP.  */
+        ld ENV(g1,JB_SP), %o0  /* Delay slot: extract target SP.  */
 
-LOC(bogus):
-       /* Get here only if the jmp_buf or stack is clobbered.  */
-       call C_SYMBOL_NAME(abort)
-        nop
-       unimp 0
+LOC(thread):
+       save    %sp, -96, %sp
+       /*
+        * Do a "flush register windows trap".  The trap handler in the
+        * kernel writes all the register windows to their stack slots, and
+        * marks them all as invalid (needing to be sucked up from the
+        * stack when used).  This ensures that all information needed to
+        * unwind to these callers is in memory, not in the register
+        * windows.
+        */
+       ta      ST_FLUSH_WINDOWS
+#ifdef PTR_DEMANGLE
+       ld      ENV(g1,JB_PC), %g5 /* Set return PC. */
+       ld      ENV(g1,JB_SP), %g1 /* Set saved SP on restore below. */
+       PTR_DEMANGLE2 (%i7, %g5, %g4)
+       PTR_DEMANGLE2 (%fp, %g1, %g4)
+#else
+       ld      ENV(g1,JB_PC), %i7 /* Set return PC. */
+       ld      ENV(g1,JB_SP), %fp /* Set saved SP on restore below. */
+#endif
+       jmp     %i7 + 8
+        restore %g2, 0, %o0    /* Restore values from above register frame. */
 
 LOC(found):
        /* We have unwound register windows so %fp matches the target.  */
-       cmp %o0, %sp            /* Check jmp_buf SP vs register window.  */
-       bge,a LOC(sp_ok)        /* Saved must not be deeper than register.  */
-        mov %o0, %sp           /* OK, install new SP.  */
-       b,a LOC(bogus)          /* Bogus, we lose.  */
+#ifdef PTR_DEMANGLE
+       PTR_DEMANGLE2 (%sp, %o0, %g4)
+#else
+       mov %o0, %sp            /* OK, install new SP.  */
+#endif
 
 LOC(sp_ok):
-       ld ENV(JB_PC), %o0      /* Extract target return PC.  */
+       ld ENV(g1,JB_PC), %o0   /* Extract target return PC.  */
+#ifdef PTR_DEMANGLE
+       PTR_DEMANGLE2 (%o0, %o0, %g4)
+#endif
        jmp %o0 + 8             /* Return there.  */
         mov %g2, %o0           /* Delay slot: set return value.  */