libucontext/arch/sh/makecontext.c

60 lines
1.8 KiB
C
Raw Permalink Normal View History

2020-12-11 21:13:20 +00:00
/*
* Copyright (c) 2020 Ariadne Conill <ariadne@dereferenced.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* This software is provided 'as is' and without any warranty, express or
* implied. In no event shall the authors be liable for any damages arising
* from the use of this software.
*/
#include <stddef.h>
#include <stdarg.h>
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include "defs.h"
#include <libucontext/libucontext.h>
2020-12-11 21:13:20 +00:00
extern void libucontext_trampoline(void);
void
libucontext_makecontext(libucontext_ucontext_t *ucp, void (*func)(void), int argc, ...)
{
libucontext_greg_t *sp, *regp;
va_list va;
int i;
/* set up and align the stack */
2020-12-12 05:04:39 +00:00
sp = (libucontext_greg_t *) (((uintptr_t) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size) & -4L);
2020-12-11 21:13:20 +00:00
sp -= argc > 4 ? argc - 4 : 0;
/* set up the context */
ucp->uc_mcontext.gregs[REG_SP] = (libucontext_greg_t) sp;
2020-12-11 21:13:20 +00:00
ucp->uc_mcontext.pr = (libucontext_greg_t) libucontext_trampoline;
ucp->uc_mcontext.pc = (libucontext_greg_t) func;
2020-12-11 23:18:04 +00:00
ucp->uc_mcontext.gregs[8] = (libucontext_greg_t) ucp->uc_link;
2020-12-11 21:13:20 +00:00
/* pass up to four args in r4-r7, rest on stack */
va_start(va, argc);
2020-12-11 23:18:04 +00:00
regp = &ucp->uc_mcontext.gregs[4];
2020-12-11 21:13:20 +00:00
for (i = 0; i < argc && i < 4; i++)
2020-12-11 23:18:04 +00:00
*regp++ = va_arg(va, libucontext_greg_t);
2020-12-11 21:13:20 +00:00
for (; i < argc; i++)
*sp++ = va_arg(va, libucontext_greg_t);
va_end(va);
}
#ifdef EXPORT_UNPREFIXED
2020-12-11 21:13:20 +00:00
extern __typeof(libucontext_makecontext) makecontext __attribute__((weak, __alias__("libucontext_makecontext")));
2021-01-08 10:37:27 +00:00
extern __typeof(libucontext_makecontext) __makecontext __attribute__((weak, __alias__("libucontext_makecontext")));
#endif