Home
last modified time | relevance | path

Searched refs:f_stackdepth (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Objects/
Dframeobject.c302 assert(f->f_stackdepth >= 0); in frame_stack_pop()
303 f->f_stackdepth--; in frame_stack_pop()
304 PyObject *v = f->f_valuestack[f->f_stackdepth]; in frame_stack_pop()
311 assert(f->f_stackdepth >= 0); in frame_block_unwind()
315 intptr_t delta = f->f_stackdepth - b->b_level; in frame_block_unwind()
592 for (int i = 0; i < f->f_stackdepth; i++) { in frame_dealloc()
595 f->f_stackdepth = 0; in frame_dealloc()
653 for (int i = 0; i < f->f_stackdepth; i++) { in frame_traverse()
678 for (int i = 0; i < f->f_stackdepth; i++) { in frame_tp_clear()
681 f->f_stackdepth = 0; in frame_tp_clear()
[all …]
Dgenobject.c196 gen->gi_frame->f_valuestack[gen->gi_frame->f_stackdepth] = result; in gen_send_ex2()
197 gen->gi_frame->f_stackdepth++; in gen_send_ex2()
360 assert(f->f_stackdepth > 0); in _PyGen_yf()
361 yf = f->f_valuestack[f->f_stackdepth-1]; in _PyGen_yf()
475 assert(gen->gi_frame->f_stackdepth > 0); in _gen_throw()
476 gen->gi_frame->f_stackdepth--; in _gen_throw()
477 ret = gen->gi_frame->f_valuestack[gen->gi_frame->f_stackdepth]; in _gen_throw()
/third_party/python/Include/cpython/
Dframeobject.h37 int f_stackdepth; /* Depth of value stack */ member
/third_party/python/Python/
Dceval.c1693 stack_pointer = f->f_valuestack + f->f_stackdepth; in _PyEval_EvalFrameDefault()
1700 f->f_stackdepth = -1; in _PyEval_EvalFrameDefault()
1797 f->f_stackdepth = (int)(stack_pointer - f->f_valuestack); in _PyEval_EvalFrameDefault()
1805 stack_pointer = f->f_valuestack+f->f_stackdepth; in _PyEval_EvalFrameDefault()
1806 f->f_stackdepth = -1; in _PyEval_EvalFrameDefault()
2441 f->f_stackdepth = 0; in _PyEval_EvalFrameDefault()
2629 f->f_stackdepth = (int)(stack_pointer - f->f_valuestack); in _PyEval_EvalFrameDefault()
2646 f->f_stackdepth = (int)(stack_pointer - f->f_valuestack); in _PyEval_EvalFrameDefault()
4522 f->f_stackdepth = 0; in _PyEval_EvalFrameDefault()