Branch data Line data Source code
1 : : #ifndef Py_INTERNAL_CEVAL_H 2 : : #define Py_INTERNAL_CEVAL_H 3 : : #ifdef __cplusplus 4 : : extern "C" { 5 : : #endif 6 : : 7 : : #ifndef Py_BUILD_CORE 8 : : # error "this header requires Py_BUILD_CORE define" 9 : : #endif 10 : : 11 : : /* Forward declarations */ 12 : : struct pyruntimestate; 13 : : struct _ceval_runtime_state; 14 : : 15 : : /* WASI has limited call stack. Python's recursion limit depends on code 16 : : layout, optimization, and WASI runtime. Wasmtime can handle about 700-750 17 : : recursions, sometimes less. 600 is a more conservative limit. */ 18 : : #ifndef Py_DEFAULT_RECURSION_LIMIT 19 : : # ifdef __wasi__ 20 : : # define Py_DEFAULT_RECURSION_LIMIT 600 21 : : # else 22 : : # define Py_DEFAULT_RECURSION_LIMIT 1000 23 : : # endif 24 : : #endif 25 : : 26 : : #include "pycore_interp.h" // PyInterpreterState.eval_frame 27 : : #include "pycore_pystate.h" // _PyThreadState_GET() 28 : : 29 : : 30 : : extern void _Py_FinishPendingCalls(PyThreadState *tstate); 31 : : extern void _PyEval_InitRuntimeState(struct _ceval_runtime_state *); 32 : : extern void _PyEval_InitState(struct _ceval_state *, PyThread_type_lock); 33 : : extern void _PyEval_FiniState(struct _ceval_state *ceval); 34 : : PyAPI_FUNC(void) _PyEval_SignalReceived(PyInterpreterState *interp); 35 : : PyAPI_FUNC(int) _PyEval_AddPendingCall( 36 : : PyInterpreterState *interp, 37 : : int (*func)(void *), 38 : : void *arg); 39 : : PyAPI_FUNC(void) _PyEval_SignalAsyncExc(PyInterpreterState *interp); 40 : : #ifdef HAVE_FORK 41 : : extern PyStatus _PyEval_ReInitThreads(PyThreadState *tstate); 42 : : #endif 43 : : 44 : : // Used by sys.call_tracing() 45 : : extern PyObject* _PyEval_CallTracing(PyObject *func, PyObject *args); 46 : : 47 : : // Used by sys.get_asyncgen_hooks() 48 : : extern PyObject* _PyEval_GetAsyncGenFirstiter(void); 49 : : extern PyObject* _PyEval_GetAsyncGenFinalizer(void); 50 : : 51 : : // Used by sys.set_asyncgen_hooks() 52 : : extern int _PyEval_SetAsyncGenFirstiter(PyObject *); 53 : : extern int _PyEval_SetAsyncGenFinalizer(PyObject *); 54 : : 55 : : // Used by sys.get_coroutine_origin_tracking_depth() 56 : : // and sys.set_coroutine_origin_tracking_depth() 57 : : extern int _PyEval_GetCoroutineOriginTrackingDepth(void); 58 : : extern int _PyEval_SetCoroutineOriginTrackingDepth(int depth); 59 : : 60 : : extern void _PyEval_Fini(void); 61 : : 62 : : 63 : : extern PyObject* _PyEval_GetBuiltins(PyThreadState *tstate); 64 : : extern PyObject* _PyEval_BuiltinsFromGlobals( 65 : : PyThreadState *tstate, 66 : : PyObject *globals); 67 : : 68 : : 69 : : static inline PyObject* 70 : 133082465 : _PyEval_EvalFrame(PyThreadState *tstate, struct _PyInterpreterFrame *frame, int throwflag) 71 : : { 72 : : EVAL_CALL_STAT_INC(EVAL_CALL_TOTAL); 73 [ + + ]: 133082465 : if (tstate->interp->eval_frame == NULL) { 74 : 133082265 : return _PyEval_EvalFrameDefault(tstate, frame, throwflag); 75 : : } 76 : 200 : return tstate->interp->eval_frame(tstate, frame, throwflag); 77 : : } 78 : : 79 : : extern PyObject* 80 : : _PyEval_Vector(PyThreadState *tstate, 81 : : PyFunctionObject *func, PyObject *locals, 82 : : PyObject* const* args, size_t argcount, 83 : : PyObject *kwnames); 84 : : 85 : : extern int _PyEval_ThreadsInitialized(struct pyruntimestate *runtime); 86 : : extern PyStatus _PyEval_InitGIL(PyThreadState *tstate); 87 : : extern void _PyEval_FiniGIL(PyInterpreterState *interp); 88 : : 89 : : extern void _PyEval_ReleaseLock(PyThreadState *tstate); 90 : : 91 : : extern void _PyEval_DeactivateOpCache(void); 92 : : 93 : : 94 : : /* --- _Py_EnterRecursiveCall() ----------------------------------------- */ 95 : : 96 : : #ifdef USE_STACKCHECK 97 : : /* With USE_STACKCHECK macro defined, trigger stack checks in 98 : : _Py_CheckRecursiveCall() on every 64th call to _Py_EnterRecursiveCall. */ 99 : : static inline int _Py_MakeRecCheck(PyThreadState *tstate) { 100 : : return (tstate->recursion_remaining-- <= 0 101 : : || (tstate->recursion_remaining & 63) == 0); 102 : : } 103 : : #else 104 : 835437709 : static inline int _Py_MakeRecCheck(PyThreadState *tstate) { 105 : 835437709 : return tstate->recursion_remaining-- <= 0; 106 : : } 107 : : #endif 108 : : 109 : : PyAPI_FUNC(int) _Py_CheckRecursiveCall( 110 : : PyThreadState *tstate, 111 : : const char *where); 112 : : 113 : 835437709 : static inline int _Py_EnterRecursiveCallTstate(PyThreadState *tstate, 114 : : const char *where) { 115 [ + + + + ]: 835437709 : return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where)); 116 : : } 117 : : 118 : 2898901 : static inline int _Py_EnterRecursiveCall(const char *where) { 119 : 2898901 : PyThreadState *tstate = _PyThreadState_GET(); 120 : 2898901 : return _Py_EnterRecursiveCallTstate(tstate, where); 121 : : } 122 : : 123 : 835436620 : static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) { 124 : 835436620 : tstate->recursion_remaining++; 125 : 835436620 : } 126 : : 127 : 13798184 : static inline void _Py_LeaveRecursiveCall(void) { 128 : 13798184 : PyThreadState *tstate = _PyThreadState_GET(); 129 : 13798184 : _Py_LeaveRecursiveCallTstate(tstate); 130 : 13798184 : } 131 : : 132 : : extern struct _PyInterpreterFrame* _PyEval_GetFrame(void); 133 : : 134 : : extern PyObject* _Py_MakeCoro(PyFunctionObject *func); 135 : : 136 : : #ifdef __cplusplus 137 : : } 138 : : #endif 139 : : #endif /* !Py_INTERNAL_CEVAL_H */