2018-03-11 19:35:23 +00:00
|
|
|
/*
|
2019-01-06 08:23:03 +00:00
|
|
|
* Copyright (c) 2019 Calvin Rose
|
2018-03-11 19:35:23 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#ifndef JANET_FIBER_H_defined
|
|
|
|
#define JANET_FIBER_H_defined
|
2018-03-11 19:35:23 +00:00
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
#ifndef JANET_AMALG
|
2019-02-19 01:13:35 +00:00
|
|
|
#include <janet.h>
|
2019-01-24 05:15:58 +00:00
|
|
|
#endif
|
2018-03-11 19:35:23 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
extern JANET_THREAD_LOCAL JanetFiber *janet_vm_fiber;
|
2018-05-11 00:25:49 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_fiber_set_status(f, s) do {\
|
|
|
|
(f)->flags &= ~JANET_FIBER_STATUS_MASK;\
|
|
|
|
(f)->flags |= (s) << JANET_FIBER_STATUS_OFFSET;\
|
2018-05-17 02:09:36 +00:00
|
|
|
} while (0)
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_stack_frame(s) ((JanetStackFrame *)((s) - JANET_FRAME_SIZE))
|
|
|
|
#define janet_fiber_frame(f) janet_stack_frame((f)->data + (f)->frame)
|
|
|
|
void janet_fiber_setcapacity(JanetFiber *fiber, int32_t n);
|
|
|
|
void janet_fiber_push(JanetFiber *fiber, Janet x);
|
|
|
|
void janet_fiber_push2(JanetFiber *fiber, Janet x, Janet y);
|
|
|
|
void janet_fiber_push3(JanetFiber *fiber, Janet x, Janet y, Janet z);
|
|
|
|
void janet_fiber_pushn(JanetFiber *fiber, const Janet *arr, int32_t n);
|
|
|
|
int janet_fiber_funcframe(JanetFiber *fiber, JanetFunction *func);
|
|
|
|
int janet_fiber_funcframe_tail(JanetFiber *fiber, JanetFunction *func);
|
|
|
|
void janet_fiber_cframe(JanetFiber *fiber, JanetCFunction cfun);
|
|
|
|
void janet_fiber_popframe(JanetFiber *fiber);
|
2018-03-11 19:35:23 +00:00
|
|
|
|
|
|
|
#endif
|