History log of /seL4-test-master/projects/musllibc/src/signal/microblaze/sigsetjmp.s
Revision Date Author Comments
# a880e6ce 19-Apr-2015 Rich Felker <dalias@aerifal.cx>

remove invalid PLT calls from microblaze asm

analogous to commit 646cb9a4a04e5ed78e2dd928bf9dc6e79202f609 for sh.


# 583e5512 17-Apr-2015 Rich Felker <dalias@aerifal.cx>

redesign sigsetjmp so that signal mask is restored after longjmp

the conventional way to implement sigsetjmp is to save the signal mask
then tail-call to setjmp; siglongjmp then restores the signal mask and
calls longjmp. the problem with this approach is that a signal already
pending, or arriving between unmasking of signals and restoration of
the saved stack pointer, will have its signal handler run on the stack
that was active before siglongjmp was called. this can lead to
unbounded stack usage when siglongjmp is used to leave a signal
handler.

in the new design, sigsetjmp saves its own return address inside the
extended part of the sigjmp_buf (outside the __jmp_buf part used by
setjmp) then calls setjmp to save a jmp_buf inside its own execution.
it then tail-calls to __sigsetjmp_tail, which uses the return value of
setjmp to determine whether to save the current signal mask or restore
a previously-saved mask.

as an added bonus, this design makes it so that siglongjmp and longjmp
are identical. this is useful because the __longjmp_chk function we
need to add for ABI-compatibility assumes siglongjmp and longjmp are
the same, but for different reasons -- it was designed assuming either
can access a flag just past the __jmp_buf indicating whether the
signal masked was saved, and act on that flag. however, early versions
of musl did not have space past the __jmp_buf for the non-sigjmp_buf
version of jmp_buf, so our setjmp cannot store such a flag without
risking clobbering memory on (very) old binaries.


# b9b2db2f 02-Apr-2014 Rich Felker <dalias@aerifal.cx>

add __sigsetjmp ABI-compat alias for sigsetjmp


# f1e7a5e5 17-Oct-2012 Rich Felker <dalias@aerifal.cx>

fix (hopefully; untested) completely broken/incomplete microblaze sigsetjmp


# ef2f595f 17-Oct-2012 Rich Felker <dalias@aerifal.cx>

fix microblaze asm relocations for shared libc

only @PLT relocations are considered functions for purposes of
-Bsymbolic-functions, so always use @PLT. it should not hurt in the
static-linked case.


# 8c0a3d9e 28-Sep-2012 Rich Felker <dalias@aerifal.cx>

microblaze port

based on initial work by rdp, with heavy modifications. some features
including threads are untested because qemu app-level emulation seems
to be broken and I do not have a proper system image for testing.