Searched refs:stackdepth (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_flowgraph.h | 29 int code_flags, int *stackdepth, int *nlocalsplus,
|
D | pycore_frame.h | 293 _PyFrame_PushTrampolineUnchecked(PyThreadState *tstate, PyCodeObject *code, int stackdepth) in _PyFrame_PushTrampolineUnchecked() argument 306 frame->stacktop = code->co_nlocalsplus + stackdepth; in _PyFrame_PushTrampolineUnchecked()
|
/external/python/cpython3/Python/ |
D | flowgraph.c | 770 int stackdepth = -1; in calculate_stackdepth() local 835 stackdepth = maxdepth; in calculate_stackdepth() 838 return stackdepth; in calculate_stackdepth() 2739 int *stackdepth, int *nlocalsplus, in _PyCfg_OptimizedCfgToInstructionSequence() argument 2742 *stackdepth = calculate_stackdepth(g); in _PyCfg_OptimizedCfgToInstructionSequence() 2743 if (*stackdepth < 0) { in _PyCfg_OptimizedCfgToInstructionSequence() 2754 assert(!(IS_GENERATOR(code_flags) && *stackdepth == 0)); in _PyCfg_OptimizedCfgToInstructionSequence()
|
D | compile.c | 7667 int stackdepth; in optimize_and_assemble_code_unit() local 7670 &stackdepth, &nlocalsplus, in optimize_and_assemble_code_unit() 7678 stackdepth, &optimized_instrs, nlocalsplus, in optimize_and_assemble_code_unit() 7980 int stackdepth, nlocalsplus; in _PyCompile_Assemble() local 7982 &stackdepth, &nlocalsplus, in _PyCompile_Assemble() 7992 consts, stackdepth, &optimized_instrs, in _PyCompile_Assemble()
|