Home
last modified time | relevance | path

Searched refs:eval_frame (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Include/internal/
H A Dpycore_ceval.h26 #include "pycore_interp.h" // PyInterpreterState.eval_frame
72 if (tstate->interp->eval_frame == NULL) { in _PyEval_EvalFrame()
75 return tstate->interp->eval_frame(tstate, frame, throwflag); in _PyEval_EvalFrame()
H A Dpycore_interp.h146 _PyFrameEvalFunction eval_frame; member
/third_party/python/Include/cpython/
H A Dpystate.h270 _PyFrameEvalFunction eval_frame);
/third_party/python/Python/
H A Dpystate.c2126 if (interp->eval_frame == NULL) { in _PyInterpreterState_GetEvalFrameFunc()
2129 return interp->eval_frame; in _PyInterpreterState_GetEvalFrameFunc()
2135 _PyFrameEvalFunction eval_frame) in _PyInterpreterState_SetEvalFrameFunc()
2137 if (eval_frame == _PyEval_EvalFrameDefault) { in _PyInterpreterState_SetEvalFrameFunc()
2138 interp->eval_frame = NULL; in _PyInterpreterState_SetEvalFrameFunc()
2141 interp->eval_frame = eval_frame; in _PyInterpreterState_SetEvalFrameFunc()
2134 _PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp, _PyFrameEvalFunction eval_frame) _PyInterpreterState_SetEvalFrameFunc() argument
H A Dspecialize.c1241 if (_PyInterpreterState_GET()->eval_frame) { in _Py_Specialize_BinarySubscr()
1489 if (_PyInterpreterState_GET()->eval_frame) { in specialize_py_call()
H A Dceval.c2236 DEOPT_IF(tstate->interp->eval_frame, BINARY_SUBSCR);
4743 if (Py_TYPE(function) == &PyFunction_Type && tstate->interp->eval_frame == NULL) {
4843 DEOPT_IF(tstate->interp->eval_frame, CALL);
4877 DEOPT_IF(tstate->interp->eval_frame, CALL);

Completed in 24 milliseconds