aboutsummaryrefslogtreecommitdiff
path: root/py/objgenerator.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2019-10-29 17:28:11 +1100
committerDamien George <damien.p.george@gmail.com>2019-11-04 15:50:59 +1100
commit576ed8922472f41dd603da9bd719bd9f1adbf31e (patch)
tree2fba9c4d9573884e74be80854919ff5e4d4ba3b4 /py/objgenerator.c
parent742030945c779c57c30c62c7b1353758d29dc228 (diff)
py/objgenerator: Remove globals from mp_obj_gen_instance_t.
This wasn't necessary as the wrapped function already has a reference to its globals. But it had a dual purpose of tracking whether the function was currently running, so replace it with a bool.
Diffstat (limited to 'py/objgenerator.c')
-rw-r--r--py/objgenerator.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/py/objgenerator.c b/py/objgenerator.c
index 2cfdb12f6..1850377cb 100644
--- a/py/objgenerator.c
+++ b/py/objgenerator.c
@@ -43,7 +43,7 @@ const mp_obj_exception_t mp_const_GeneratorExit_obj = {{&mp_type_GeneratorExit},
typedef struct _mp_obj_gen_instance_t {
mp_obj_base_t base;
- mp_obj_dict_t *globals;
+ bool is_running;
mp_code_state_t code_state;
} mp_obj_gen_instance_t;
@@ -60,7 +60,7 @@ STATIC mp_obj_t gen_wrap_call(mp_obj_t self_in, size_t n_args, size_t n_kw, cons
n_state * sizeof(mp_obj_t) + n_exc_stack * sizeof(mp_exc_stack_t));
o->base.type = &mp_type_gen_instance;
- o->globals = self_fun->globals;
+ o->is_running = false;
o->code_state.fun_bc = self_fun;
o->code_state.ip = 0;
o->code_state.n_state = n_state;
@@ -105,7 +105,7 @@ STATIC mp_obj_t native_gen_wrap_call(mp_obj_t self_in, size_t n_args, size_t n_k
o->base.type = &mp_type_gen_instance;
// Parse the input arguments and set up the code state
- o->globals = self_fun->globals;
+ o->is_running = false;
o->code_state.fun_bc = self_fun;
o->code_state.ip = (const byte*)prelude_offset;
o->code_state.n_state = n_state;
@@ -168,16 +168,15 @@ mp_vm_return_kind_t mp_obj_gen_resume(mp_obj_t self_in, mp_obj_t send_value, mp_
}
}
- // We set self->globals=NULL while executing, for a sentinel to ensure the generator
- // cannot be reentered during execution
- if (self->globals == NULL) {
+ // Ensure the generator cannot be reentered during execution
+ if (self->is_running) {
mp_raise_ValueError("generator already executing");
}
+ self->is_running = true;
// Set up the correct globals context for the generator and execute it
self->code_state.old_globals = mp_globals_get();
- mp_globals_set(self->globals);
- self->globals = NULL;
+ mp_globals_set(self->code_state.fun_bc->globals);
mp_vm_return_kind_t ret_kind;
@@ -194,9 +193,10 @@ mp_vm_return_kind_t mp_obj_gen_resume(mp_obj_t self_in, mp_obj_t send_value, mp_
ret_kind = mp_execute_bytecode(&self->code_state, throw_value);
}
- self->globals = mp_globals_get();
mp_globals_set(self->code_state.old_globals);
+ self->is_running = false;
+
switch (ret_kind) {
case MP_VM_RETURN_NORMAL:
default: