Lines Matching refs:gi_frame
31 Py_VISIT((PyObject *)gen->gi_frame); in gen_traverse()
47 if (gen->gi_frame == NULL || gen->gi_frame->f_stacktop == NULL) { in _PyGen_Finalize()
79 gen->gi_frame->f_lasti == -1) in _PyGen_Finalize()
137 if (gen->gi_frame != NULL) { in gen_dealloc()
138 gen->gi_frame->f_gen = NULL; in gen_dealloc()
139 Py_CLEAR(gen->gi_frame); in gen_dealloc()
155 PyFrameObject *f = gen->gi_frame; in gen_send_ex()
276 gen->gi_frame->f_gen = NULL; in gen_send_ex()
277 gen->gi_frame = NULL; in gen_send_ex()
333 PyFrameObject *f = gen->gi_frame; in _PyGen_yf()
449 ret = *(--gen->gi_frame->f_stacktop); in _gen_throw()
453 assert(gen->gi_frame->f_lasti >= 0); in _gen_throw()
454 gen->gi_frame->f_lasti += sizeof(_Py_CODEUNIT); in _gen_throw()
710 {"gi_frame", T_OBJECT, offsetof(PyGenObject, gi_frame), READONLY},
786 gen->gi_frame = f; in gen_new_with_qualname()
826 PyFrameObject *f = gen->gi_frame; in PyGen_NeedsFinalizing()
1800 PyFrameObject *f = gen->gi_frame; in async_gen_athrow_send()