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;
|
2018-11-20 05:17:44 -05:00
|
|
|
const size_t COROUTINE_XMM_REGISTERS = 1+10*2;
|
2018-11-20 04:59:10 -05:00
|
|
|
|
|
|
|
struct coroutine_context
|
|
|
|
{
|
|
|
|
void **stack_pointer;
|
|
|
|
};
|
|
|
|
|
2018-11-20 05:17:44 -05:00
|
|
|
typedef void(* coroutine_start)(coroutine_context *from, coroutine_context *self);
|
|
|
|
|
|
|
|
void coroutine_trampoline();
|
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
|
|
|
|
) {
|
2018-11-20 05:17:49 -05:00
|
|
|
/* Force 16-byte alignment */
|
2018-11-20 05:17:44 -05:00
|
|
|
context->stack_pointer = (void**)((uintptr_t)stack_pointer & ~0xF);
|
2018-11-20 04:59:10 -05:00
|
|
|
|
|
|
|
if (!start) {
|
|
|
|
assert(!context->stack_pointer);
|
|
|
|
/* We are main coroutine for this thread */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-20 05:17:44 -05:00
|
|
|
/* Win64 ABI requires space for arguments */
|
|
|
|
context->stack_pointer -= 4;
|
2018-11-20 04:59:10 -05:00
|
|
|
|
2018-11-20 05:17:44 -05:00
|
|
|
/* Return address */
|
|
|
|
*--context->stack_pointer = 0;
|
2018-11-20 04:59:10 -05:00
|
|
|
*--context->stack_pointer = (void*)start;
|
2018-11-20 05:17:44 -05:00
|
|
|
*--context->stack_pointer = (void*)coroutine_trampoline;
|
|
|
|
|
|
|
|
/* Windows Thread Information Block */
|
|
|
|
/* *--context->stack_pointer = 0; */ /* gs:[0x00] is not used */
|
|
|
|
*--context->stack_pointer = (void*)stack_pointer; /* gs:[0x08] */
|
|
|
|
*--context->stack_pointer = (void*)((char *)stack_pointer - stack_size); /* gs:[0x10] */
|
2018-11-20 04:59:10 -05:00
|
|
|
|
|
|
|
context->stack_pointer -= COROUTINE_REGISTERS;
|
|
|
|
memset(context->stack_pointer, 0, sizeof(void*) * COROUTINE_REGISTERS);
|
2018-11-20 05:17:44 -05:00
|
|
|
memset(context->stack_pointer - COROUTINE_XMM_REGISTERS, 0, sizeof(void*) * COROUTINE_XMM_REGISTERS);
|
2018-11-20 04:59:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|