Lines Matching refs:gi_frame
34 Py_VISIT((PyObject *)gen->gi_frame); in gen_traverse()
50 if (gen->gi_frame == NULL || gen->gi_frame->f_stacktop == NULL) { in _PyGen_Finalize()
82 gen->gi_frame->f_lasti == -1) in _PyGen_Finalize()
125 if (gen->gi_frame != NULL) { in gen_dealloc()
126 gen->gi_frame->f_gen = NULL; in gen_dealloc()
127 Py_CLEAR(gen->gi_frame); in gen_dealloc()
143 PyFrameObject *f = gen->gi_frame; in gen_send_ex()
270 gen->gi_frame->f_gen = NULL; in gen_send_ex()
271 gen->gi_frame = NULL; in gen_send_ex()
327 PyFrameObject *f = gen->gi_frame; in _PyGen_yf()
426 tstate->frame = gen->gi_frame; in _gen_throw()
453 ret = *(--gen->gi_frame->f_stacktop); in _gen_throw()
457 assert(gen->gi_frame->f_lasti >= 0); in _gen_throw()
458 gen->gi_frame->f_lasti += sizeof(_Py_CODEUNIT); in _gen_throw()
714 {"gi_frame", T_OBJECT, offsetof(PyGenObject, gi_frame), READONLY},
789 gen->gi_frame = f; in gen_new_with_qualname()
1797 PyFrameObject *f = gen->gi_frame; in async_gen_athrow_send()