2018-11-20 10:16:29 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the "Coroutine" project and released under the MIT License.
|
|
|
|
*
|
|
|
|
* Created by Samuel Williams on 3/11/2018.
|
2019-12-28 12:45:37 +13:00
|
|
|
* Copyright, 2018, by Samuel Williams.
|
2018-11-20 10:16:29 +00:00
|
|
|
*/
|
2018-11-20 10:13:59 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <assert.h>
|
2019-12-04 17:16:30 +09:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2018-11-20 10:13:59 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2018-11-20 10:16:41 +00:00
|
|
|
#define COROUTINE __attribute__((noreturn, fastcall)) void
|
2019-07-16 16:11:55 +12:00
|
|
|
#define COROUTINE_LIMITED_ADDRESS_SPACE
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2019-05-16 15:51:37 +09:00
|
|
|
enum {COROUTINE_REGISTERS = 4};
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2019-06-24 23:54:19 +12:00
|
|
|
struct coroutine_context
|
2018-11-20 10:13:59 +00:00
|
|
|
{
|
2018-11-20 20:09:38 +00:00
|
|
|
void **stack_pointer;
|
2019-06-24 23:54:19 +12:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef COROUTINE(* coroutine_start)(struct coroutine_context *from, struct coroutine_context *self) __attribute__((fastcall));
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2019-06-24 23:54:19 +12:00
|
|
|
static inline void coroutine_initialize_main(struct coroutine_context * context) {
|
|
|
|
context->stack_pointer = NULL;
|
|
|
|
}
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2018-11-20 10:17:17 +00:00
|
|
|
static inline void coroutine_initialize(
|
2019-06-24 23:54:19 +12:00
|
|
|
struct coroutine_context *context,
|
2018-11-20 20:09:38 +00:00
|
|
|
coroutine_start start,
|
2019-06-24 23:54:19 +12:00
|
|
|
void *stack,
|
|
|
|
size_t size
|
2018-11-20 10:13:59 +00:00
|
|
|
) {
|
2019-06-24 23:54:19 +12:00
|
|
|
assert(start && stack && size >= 1024);
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2019-06-24 23:54:19 +12:00
|
|
|
// Stack grows down. Force 16-byte alignment.
|
|
|
|
char * top = (char*)stack + size;
|
|
|
|
context->stack_pointer = (void**)((uintptr_t)top & ~0xF);
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2018-11-20 20:09:38 +00:00
|
|
|
*--context->stack_pointer = NULL;
|
|
|
|
*--context->stack_pointer = (void*)start;
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2018-11-20 20:09:38 +00:00
|
|
|
context->stack_pointer -= COROUTINE_REGISTERS;
|
|
|
|
memset(context->stack_pointer, 0, sizeof(void*) * COROUTINE_REGISTERS);
|
2018-11-20 10:13:59 +00:00
|
|
|
}
|
|
|
|
|
2019-06-24 23:54:19 +12:00
|
|
|
struct coroutine_context * coroutine_transfer(struct coroutine_context * current, struct coroutine_context * target) __attribute__((fastcall));
|
2018-11-20 10:13:59 +00:00
|
|
|
|
2019-06-24 23:54:19 +12:00
|
|
|
static inline void coroutine_destroy(struct coroutine_context * context)
|
2018-11-20 10:13:59 +00:00
|
|
|
{
|
2018-11-20 20:09:38 +00:00
|
|
|
context->stack_pointer = NULL;
|
2018-11-20 10:13:59 +00:00
|
|
|
}
|