libucontext/arch/m68k/makecontext.c

62 lines
1.8 KiB
C
Raw Normal View History

2020-12-06 05:30:39 +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-06 05:30:39 +00:00
extern void libucontext_trampoline(void);
2020-12-06 05:30:39 +00:00
void
libucontext_makecontext(libucontext_ucontext_t *ucp, void (*func)(void), int argc, ...)
2020-12-06 05:30:39 +00:00
{
libucontext_greg_t *sp;
2020-12-06 05:30:39 +00:00
va_list va;
int i;
/* set up and align the stack. */
sp = (libucontext_greg_t *) ((uintptr_t) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size);
2020-12-06 07:37:12 +00:00
sp -= (argc + 2);
sp = (libucontext_greg_t *) (((uintptr_t) sp & ~0x3));
2020-12-06 05:30:39 +00:00
/* set up the ucontext structure */
ucp->uc_mcontext.gregs[REG_SP] = (libucontext_greg_t) sp;
2020-12-06 05:30:39 +00:00
ucp->uc_mcontext.gregs[REG_A6] = 0;
2020-12-06 07:37:12 +00:00
ucp->uc_mcontext.gregs[REG_D7] = argc;
ucp->uc_mcontext.gregs[REG_PC] = (libucontext_greg_t) func;
2020-12-06 05:30:39 +00:00
/* return address */
*sp++ = (libucontext_greg_t) libucontext_trampoline;
2020-12-06 05:30:39 +00:00
va_start(va, argc);
/* all arguments overflow into stack */
for (i = 0; i < argc; i++)
*sp++ = va_arg (va, libucontext_greg_t);
2020-12-06 05:30:39 +00:00
va_end(va);
2020-12-06 07:37:12 +00:00
/* link pointer */
*sp++ = (libucontext_greg_t) ucp->uc_link;
2020-12-06 05:30:39 +00:00
}
#ifdef EXPORT_UNPREFIXED
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