aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cont.c10
-rw-r--r--vm.c4
2 files changed, 9 insertions, 5 deletions
diff --git a/cont.c b/cont.c
index a43950c6cb..7483c1c476 100644
--- a/cont.c
+++ b/cont.c
@@ -556,6 +556,7 @@ cont_restore_thread(rb_context_t *cont)
th->fiber = (rb_fiber_t*)cont;
}
+ VM_ASSERT(th->ec.stack != NULL);
VM_ASSERT(sth->status == THREAD_RUNNABLE);
}
@@ -1288,7 +1289,6 @@ root_fiber_alloc(rb_thread_t *th)
rb_fiber_t *fib;
/* no need to allocate vm stack */
fib = fiber_t_alloc(fiber_alloc(rb_cFiber));
- fib->cont.saved_thread.ec.stack = NULL;
fib->cont.type = ROOT_FIBER_CONTEXT;
#if FIBER_USE_NATIVE
#ifdef _WIN32
@@ -1297,6 +1297,7 @@ root_fiber_alloc(rb_thread_t *th)
#endif
fib->status = FIBER_RUNNING;
+ th->root_fiber = th->fiber = fib;
return fib;
}
@@ -1305,9 +1306,9 @@ fiber_current(void)
{
rb_thread_t *th = GET_THREAD();
if (th->fiber == 0) {
- /* save root */
rb_fiber_t *fib = root_fiber_alloc(th);
- th->root_fiber = th->fiber = fib;
+ /* Running thread object has stack management responsibility */
+ fib->cont.saved_thread.ec.stack = NULL;
}
return th->fiber;
}
@@ -1348,9 +1349,8 @@ fiber_store(rb_fiber_t *next_fib, rb_thread_t *th)
cont_save_thread(&fib->cont, th);
}
else {
- /* create current fiber */
+ /* create root fiber */
fib = root_fiber_alloc(th);
- th->root_fiber = th->fiber = fib;
}
#if FIBER_USE_NATIVE
diff --git a/vm.c b/vm.c
index 266b251485..bc944e5085 100644
--- a/vm.c
+++ b/vm.c
@@ -90,6 +90,8 @@ VM_CFP_IN_HEAP_P(const rb_thread_t *th, const rb_control_frame_t *cfp)
{
const VALUE *start = th->ec.stack;
const VALUE *end = (VALUE *)th->ec.stack + th->ec.stack_size;
+ VM_ASSERT(start != NULL);
+
if (start <= (VALUE *)cfp && (VALUE *)cfp < end) {
return FALSE;
}
@@ -103,6 +105,8 @@ VM_EP_IN_HEAP_P(const rb_thread_t *th, const VALUE *ep)
{
const VALUE *start = th->ec.stack;
const VALUE *end = (VALUE *)th->ec.cfp;
+ VM_ASSERT(start != NULL);
+
if (start <= ep && ep < end) {
return FALSE;
}