vm_tear_off should happen in cont. saving, not in restoring
This commit is contained in:
parent
eb05f70e9c
commit
86c335dd77
|
@ -113,9 +113,12 @@ native_stack_length(pic_state *pic, char **pos)
|
||||||
static void
|
static void
|
||||||
save_cont(pic_state *pic, struct pic_cont **c)
|
save_cont(pic_state *pic, struct pic_cont **c)
|
||||||
{
|
{
|
||||||
|
void pic_vm_tear_off(pic_state *);
|
||||||
struct pic_cont *cont;
|
struct pic_cont *cont;
|
||||||
char *pos;
|
char *pos;
|
||||||
|
|
||||||
|
pic_vm_tear_off(pic); /* tear off */
|
||||||
|
|
||||||
cont = *c = (struct pic_cont *)pic_obj_alloc(pic, sizeof(struct pic_cont), PIC_TT_CONT);
|
cont = *c = (struct pic_cont *)pic_obj_alloc(pic, sizeof(struct pic_cont), PIC_TT_CONT);
|
||||||
|
|
||||||
cont->blk = pic->blk;
|
cont->blk = pic->blk;
|
||||||
|
@ -163,13 +166,10 @@ native_stack_extend(pic_state *pic, struct pic_cont *cont)
|
||||||
noreturn static void
|
noreturn static void
|
||||||
restore_cont(pic_state *pic, struct pic_cont *cont)
|
restore_cont(pic_state *pic, struct pic_cont *cont)
|
||||||
{
|
{
|
||||||
void pic_vm_tear_off(pic_state *);
|
|
||||||
char v;
|
char v;
|
||||||
struct pic_cont *tmp = cont;
|
struct pic_cont *tmp = cont;
|
||||||
struct pic_block *blk;
|
struct pic_block *blk;
|
||||||
|
|
||||||
pic_vm_tear_off(pic); /* tear off */
|
|
||||||
|
|
||||||
if (&v < pic->native_stack_start) {
|
if (&v < pic->native_stack_start) {
|
||||||
if (&v > cont->stk_pos) native_stack_extend(pic, cont);
|
if (&v > cont->stk_pos) native_stack_extend(pic, cont);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue