You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
4.0 KiB

#pragma once
#include "arch/common.h"
#define ARCH_SIG_JMP_OFF 0x100 /* Based on code generated! */
/**
* Initializes a context, zeros out registers, and sets the Instruction and
* Stack pointers. Sets variant to unused if ip and sp are 0, fast otherwise.
* @param actx arch_context to init
* @param ip value to set instruction pointer to
* @param sp value to set stack pointer to
*/
static inline void
arch_context_init(struct arch_context *actx, reg_t ip, reg_t sp)
{
assert(actx != NULL);
if (ip == 0 && sp == 0) {
actx->variant = arch_context_variant_unused;
} else {
actx->variant = arch_context_variant_fast;
}
actx->regs[ureg_rsp] = sp;
actx->regs[ureg_rip] = ip;
}
/**
* Restore a sandbox saved using a fastpath switch, restoring only the
* instruction pointer and stack pointer registers rather than
* a full mcontext, so it is less expensive than arch_mcontext_restore.
* @param active_context - the context of the current worker thread
* @param sandbox_context - the context that we want to restore
*/
static void
arch_context_restore(mcontext_t *active_context, struct arch_context *sandbox_context)
{
assert(active_context != NULL);
assert(sandbox_context != NULL);
/* Assumption: Base Context is only ever used by arch_context_switch */
assert(sandbox_context != &worker_thread_base_context);
assert(sandbox_context->sp);
assert(sandbox_context->pc);
/* Transitioning from Fast -> Running */
assert(sandbox_context->variant == arch_context_variant_fast);
sandbox_context->variant = arch_context_variant_running;
active_context->sp = sandbox_context->regs[ureg_rsp];
active_context->pc = sandbox_context->regs[ureg_rip] + ARCH_SIG_JMP_OFF;
}
/**
* @param a - the registers and context of the thing running
* @param b - the registers and context of what we're switching to
* @return always returns 0, indicating success
*
* NULL in either of these values indicates the "no sandbox to execute" state,
* which defaults to resuming execution of main
*/
static inline int
arch_context_switch(struct arch_context *a, struct arch_context *b)
{
/* Assumption: Software Interrupts are disabled by caller */
assert(!software_interrupt_is_enabled());
/* if both a and b are NULL, there is no state change */
assert(a != NULL || b != NULL);
/* Assumption: The caller does not switch to itself */
assert(a != b);
/* Set any NULLs to worker_thread_base_context to resume execution of main */
if (a == NULL) a = &worker_thread_base_context;
if (b == NULL) b = &worker_thread_base_context;
/* A Transition {Unused, Running} -> Fast */
assert(a->variant == arch_context_variant_unused || a->variant == arch_context_variant_running);
/* B Transition {Fast, Slow} -> Running */
assert(b->variant == arch_context_variant_fast || b->variant == arch_context_variant_slow);
/* Assumption: Fastpath state is well formed */
if (b->variant == arch_context_variant_fast) {
assert(b->regs[ureg_rip] != 0);
assert(b->regs[ureg_rsp] != 0);
}
reg_t *a_registers = a->regs, *b_registers = b->regs;
assert(a_registers && b_registers);
asm volatile("mov x0, sp\n\t"
"adr x1, reset%=\n\t"
"str x1, [%[a], 8]\n\t"
"str x0, [%[a]]\n\t"
"ldr x2, [%[b]]\n\t"
"cbz x2, slow%=\n\t"
"ldr x3, [%[b], 8]\n\t"
"mov sp, x2\n\t"
"br x3\n\t"
"slow%=:\n\t"
"br %[slowpath]\n\t"
".align 8\n\t"
"reset%=:\n\t"
"mov x1, #0\n\t"
"str x1, [%[b]]\n\t"
".align 8\n\t"
"exit%=:\n\t"
:
: [ a ] "r"(a_registers), [ b ] "r"(b_registers), [ slowpath ] "r"(&arch_context_restore_preempted)
: "memory", "cc", "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12",
"x13", "x14", "x15", "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23", "x24", "x25", "x26",
"d8", "d9", "d10", "d11", "d12", "d13", "d14", "d15");
return 0;
}