aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-10-10 13:11:47 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-10-10 13:11:47 +0000
commitf308707531989445783ab4691fd2a246a4ae2ae3 (patch)
treec683b301712587272c2223f13b040c090542962e /lib
parent29d26e2f2799b47e8d3afdb25679df1176949f49 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/libstand/powerpc/_setjmp.S39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/libstand/powerpc/_setjmp.S b/lib/libstand/powerpc/_setjmp.S
new file mode 100644
index 000000000000..50a39b02dbcc
--- /dev/null
+++ b/lib/libstand/powerpc/_setjmp.S
@@ -0,0 +1,39 @@
+/* $NetBSD: _setjmp.S,v 1.1 1997/03/29 20:55:53 thorpej Exp $ */
+/* $FreeBSD$ */
+
+#include <machine/asm.h>
+
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$NetBSD: _setjmp.S,v 1.1 1997/03/29 20:55:53 thorpej Exp $"
+#endif
+
+/*
+ * C library -- _setjmp, _longjmp
+ *
+ * _longjmp(a,v)
+ * will generate a "return(v?v:1)" from the last call to
+ * _setjmp(a)
+ * by restoring registers from the stack.
+ * The previous signal state is NOT restored.
+ */
+
+ENTRY(_setjmp)
+ mflr 11
+ mfcr 12
+ mr 10,1
+ mr 9,2
+ stmw 9,8(3)
+ li 3,0
+ blr
+
+ENTRY(_longjmp)
+ lmw 9,8(3)
+ mtlr 11
+ mtcr 12
+ mr 2,9
+ mr 1,10
+ or. 3,4,4
+ bnelr
+ li 3,1
+ blr