Home
last modified time | relevance | path

Searched refs:datastack_top (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Include/internal/
H A Dpycore_frame.h202 (tstate->datastack_top == NULL && tstate->datastack_limit == NULL) in _PyThreadState_HasStackSpace()
204 (tstate->datastack_top != NULL && tstate->datastack_limit != NULL) in _PyThreadState_HasStackSpace()
206 return tstate->datastack_top != NULL && in _PyThreadState_HasStackSpace()
207 size < (size_t)(tstate->datastack_limit - tstate->datastack_top); in _PyThreadState_HasStackSpace()
214 _PyInterpreterFrame *res = (_PyInterpreterFrame *)tstate->datastack_top; in _PyThreadState_BumpFramePointer()
215 tstate->datastack_top += size; in _PyThreadState_BumpFramePointer()
/third_party/python/Python/
H A Dpystate.c799 tstate->datastack_top = NULL; in init_threadstate()
2189 tstate->datastack_chunk->top = tstate->datastack_top - in push_chunk()
2198 tstate->datastack_top = res + size; in push_chunk()
2206 _PyInterpreterFrame *res = (_PyInterpreterFrame *)tstate->datastack_top; in _PyThreadState_BumpFramePointerSlow()
2207 tstate->datastack_top += size; in _PyThreadState_BumpFramePointerSlow()
2227 tstate->datastack_top = &previous->data[previous->top]; in _PyThreadState_PopFrame()
2233 assert(tstate->datastack_top); in _PyThreadState_PopFrame()
2234 assert(tstate->datastack_top >= base); in _PyThreadState_PopFrame()
2235 tstate->datastack_top = base; in _PyThreadState_PopFrame()
H A Dceval.c6407 frame->f_code->co_stacksize + FRAME_SPECIALS_SIZE == tstate->datastack_top);
/third_party/python/Include/cpython/
H A Dpystate.h183 PyObject **datastack_top; member

Completed in 26 milliseconds