minix/lib/libc/arch/powerpc64/gen/__setjmp14.S
Ben Gras 2fe8fb192f Full switch to clang/ELF. Drop ack. Simplify.
There is important information about booting non-ack images in
docs/UPDATING. ack/aout-format images can't be built any more, and
booting clang/ELF-format ones is a little different. Updating to the
new boot monitor is recommended.

Changes in this commit:

	. drop boot monitor -> allowing dropping ack support
	. facility to copy ELF boot files to /boot so that old boot monitor
	  can still boot fairly easily, see UPDATING
	. no more ack-format libraries -> single-case libraries
	. some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases
	. drop several ack toolchain commands, but not all support
	  commands (e.g. aal is gone but acksize is not yet).
	. a few libc files moved to netbsd libc dir
	. new /bin/date as minix date used code in libc/
	. test compile fix
	. harmonize includes
	. /usr/lib is no longer special: without ack, /usr/lib plays no
	  kind of special bootstrapping role any more and bootstrapping
	  is done exclusively through packages, so releases depend even
	  less on the state of the machine making them now.
	. rename nbsd_lib* to lib*
	. reduce mtree
2012-02-14 14:52:02 +01:00

102 lines
1.7 KiB
ArmAsm

/* $NetBSD: __setjmp14.S,v 1.2 2009/03/08 18:57:12 he Exp $ */
#include <sys/syscall.h>
#include <machine/asm.h>
#if defined(LIBC_SCCS)
.text
.asciz "$NetBSD: __setjmp14.S,v 1.2 2009/03/08 18:57:12 he 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 restored.
*/
ENTRY(__setjmp14)
mr %r6,%r3
li %r3,1 # SIG_BLOCK
li %r4,0
addi %r5,%r6,100 # &sigmask
li %r0,SYS___sigprocmask14
sc # assume no error XXX
mflr %r11
mfcr %r12
mr %r10,%r1
mr %r9,%r2
std %r8,8(%r6) # save r8-r31
std %r9,16(%r6)
std %r10,24(%r6)
std %r11,32(%r6)
std %r12,40(%r6)
std %r13,48(%r6)
std %r14,56(%r6)
std %r15,64(%r6)
std %r16,72(%r6)
std %r17,80(%r6)
std %r18,88(%r6)
std %r19,96(%r6)
std %r20,104(%r6)
std %r21,112(%r6)
std %r22,120(%r6)
std %r23,128(%r6)
std %r24,136(%r6)
std %r25,144(%r6)
std %r26,152(%r6)
std %r27,160(%r6)
std %r28,168(%r6)
std %r29,176(%r6)
std %r30,184(%r6)
std %r31,192(%r6)
li %r3,0
blr
ENTRY(__longjmp14)
ld %r8,8(%r6) # load r8-r31
ld %r9,16(%r6)
ld %r10,24(%r6)
ld %r11,32(%r6)
ld %r12,40(%r6)
ld %r13,48(%r6)
ld %r14,56(%r6)
ld %r15,64(%r6)
ld %r16,72(%r6)
ld %r17,80(%r6)
ld %r18,88(%r6)
ld %r19,96(%r6)
ld %r20,104(%r6)
ld %r21,112(%r6)
ld %r22,120(%r6)
ld %r23,128(%r6)
ld %r24,136(%r6)
ld %r25,144(%r6)
ld %r26,152(%r6)
ld %r27,160(%r6)
ld %r28,168(%r6)
ld %r29,176(%r6)
ld %r30,184(%r6)
ld %r31,192(%r6)
mr %r6,%r4
mtlr %r11
mtcr %r12
mr %r2,%r9
mr %r1,%r10
addi %r4,%r3,100 # &sigmask
li %r3,3 # SIG_SETMASK
li %r5,0
li %r0,SYS___sigprocmask14
sc # assume no error XXX
or. %r3,%r6,%r6
bnelr
li %r3,1
blr