2018-11-20 05:16:29 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the "Coroutine" project and released under the MIT License.
|
|
|
|
*
|
|
|
|
* Created by Samuel Williams on 10/5/2018.
|
|
|
|
* Copyright, 2018, by Samuel Williams. All rights reserved.
|
|
|
|
*/
|
2018-11-20 04:59:10 -05:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-11-20 05:16:41 -05:00
|
|
|
#define COROUTINE __declspec(noreturn) void
|
2018-11-20 04:59:10 -05:00
|
|
|
|
|
|
|
const size_t COROUTINE_REGISTERS = 8;
|
|
|
|
|
|
|
|
struct coroutine_context
|
|
|
|
{
|
|
|
|
void **stack_pointer;
|
|
|
|
};
|
|
|
|
|
2018-11-20 05:16:54 -05:00
|
|
|
typedef COROUTINE(* coroutine_start)(coroutine_context *from, coroutine_context *self);
|
2018-11-20 04:59:10 -05:00
|
|
|
|
2018-11-20 05:17:17 -05:00
|
|
|
static inline void coroutine_initialize(
|
2018-11-20 04:59:10 -05:00
|
|
|
coroutine_context *context,
|
|
|
|
coroutine_start start,
|
|
|
|
void *stack_pointer,
|
|
|
|
size_t stack_size
|
|
|
|
) {
|
|
|
|
context->stack_pointer = (void**)stack_pointer;
|
|
|
|
|
|
|
|
if (!start) {
|
|
|
|
assert(!context->stack_pointer);
|
|
|
|
/* We are main coroutine for this thread */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Windows Thread Information Block */
|
2018-11-20 05:17:39 -05:00
|
|
|
*--context->stack_pointer = 0; /* gs:[0x00] */
|
|
|
|
*--context->stack_pointer = stack_pointer + stack_size; /* gs:[0x08] */
|
|
|
|
*--context->stack_pointer = (void*)stack_pointer; /* gs:[0x10] */
|
|
|
|
|
2018-11-20 04:59:10 -05:00
|
|
|
|
|
|
|
*--context->stack_pointer = (void*)start;
|
|
|
|
|
|
|
|
context->stack_pointer -= COROUTINE_REGISTERS;
|
|
|
|
memset(context->stack_pointer, 0, sizeof(void*) * COROUTINE_REGISTERS);
|
|
|
|
}
|
|
|
|
|
|
|
|
coroutine_context * coroutine_transfer(coroutine_context * current, coroutine_context * target);
|
|
|
|
|
2018-11-20 05:17:17 -05:00
|
|
|
static inline void coroutine_destroy(coroutine_context * context)
|
2018-11-20 04:59:10 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
}
|
2018-11-20 05:17:00 -05:00
|
|
|
#endif
|