No real movement on vectorization of CL user code, though I am confident that it can be done(tm), and also that I can(tm) do it.
On the plus side, SPARC/Linux support for SBCL is moving. I've found the sigcontext by grovelling about on the stack:
static void
sigsegv_handler(int signal, siginfo_t *info, void* void_context)
{
#ifdef sparc
os_context_t *context = (os_context_t*)(&void_context+37);
#else
os_context_t *context = (os_context_t*)void_context;
#endif
...
}
Yuuuuuuurk.
We're definitely executing lisp code now... it should now only be a matter of time.
