2017-09-08 02:51:28 -03:00
|
|
|
#ifndef Py_INTERNAL_CEVAL_H
|
|
|
|
#define Py_INTERNAL_CEVAL_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-04-17 18:02:26 -03:00
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
2018-11-09 08:03:37 -04:00
|
|
|
#endif
|
|
|
|
|
2019-10-02 18:51:20 -03:00
|
|
|
/* Forward declarations */
|
2019-10-03 21:21:05 -03:00
|
|
|
struct pyruntimestate;
|
2019-10-02 18:51:20 -03:00
|
|
|
struct _ceval_runtime_state;
|
2019-11-14 07:20:46 -04:00
|
|
|
|
2022-01-13 20:09:24 -04:00
|
|
|
#ifndef Py_DEFAULT_RECURSION_LIMIT
|
2022-10-04 21:34:03 -03:00
|
|
|
# define Py_DEFAULT_RECURSION_LIMIT 1000
|
2022-01-13 20:09:24 -04:00
|
|
|
#endif
|
|
|
|
|
2021-10-13 09:09:13 -03:00
|
|
|
#include "pycore_interp.h" // PyInterpreterState.eval_frame
|
|
|
|
#include "pycore_pystate.h" // _PyThreadState_GET()
|
2017-09-08 02:51:28 -03:00
|
|
|
|
2022-01-13 20:09:24 -04:00
|
|
|
|
2020-03-17 14:56:44 -03:00
|
|
|
extern void _Py_FinishPendingCalls(PyThreadState *tstate);
|
|
|
|
extern void _PyEval_InitRuntimeState(struct _ceval_runtime_state *);
|
2021-12-07 17:02:17 -04:00
|
|
|
extern void _PyEval_InitState(struct _ceval_state *, PyThread_type_lock);
|
2020-04-08 12:54:59 -03:00
|
|
|
extern void _PyEval_FiniState(struct _ceval_state *ceval);
|
2020-04-08 18:35:05 -03:00
|
|
|
PyAPI_FUNC(void) _PyEval_SignalReceived(PyInterpreterState *interp);
|
2019-05-10 18:39:09 -03:00
|
|
|
PyAPI_FUNC(int) _PyEval_AddPendingCall(
|
2020-04-08 18:35:05 -03:00
|
|
|
PyInterpreterState *interp,
|
2019-05-10 18:39:09 -03:00
|
|
|
int (*func)(void *),
|
|
|
|
void *arg);
|
2021-02-19 10:10:45 -04:00
|
|
|
PyAPI_FUNC(void) _PyEval_SignalAsyncExc(PyInterpreterState *interp);
|
2020-04-14 13:16:24 -03:00
|
|
|
#ifdef HAVE_FORK
|
2020-06-02 13:44:54 -03:00
|
|
|
extern PyStatus _PyEval_ReInitThreads(PyThreadState *tstate);
|
2020-04-14 13:16:24 -03:00
|
|
|
#endif
|
2017-09-08 02:51:28 -03:00
|
|
|
|
2022-03-20 23:03:22 -03:00
|
|
|
// Used by sys.call_tracing()
|
|
|
|
extern PyObject* _PyEval_CallTracing(PyObject *func, PyObject *args);
|
|
|
|
|
2022-03-20 21:15:32 -03:00
|
|
|
// Used by sys.get_asyncgen_hooks()
|
|
|
|
extern PyObject* _PyEval_GetAsyncGenFirstiter(void);
|
|
|
|
extern PyObject* _PyEval_GetAsyncGenFinalizer(void);
|
|
|
|
|
|
|
|
// Used by sys.set_asyncgen_hooks()
|
|
|
|
extern int _PyEval_SetAsyncGenFirstiter(PyObject *);
|
|
|
|
extern int _PyEval_SetAsyncGenFinalizer(PyObject *);
|
|
|
|
|
2022-03-20 22:24:00 -03:00
|
|
|
// Used by sys.get_coroutine_origin_tracking_depth()
|
|
|
|
// and sys.set_coroutine_origin_tracking_depth()
|
|
|
|
extern int _PyEval_GetCoroutineOriginTrackingDepth(void);
|
|
|
|
extern int _PyEval_SetCoroutineOriginTrackingDepth(int depth);
|
|
|
|
|
|
|
|
extern void _PyEval_Fini(void);
|
2019-06-03 09:30:58 -03:00
|
|
|
|
2021-02-18 14:20:16 -04:00
|
|
|
|
2021-02-20 10:17:18 -04:00
|
|
|
extern PyObject* _PyEval_GetBuiltins(PyThreadState *tstate);
|
2022-03-20 22:24:00 -03:00
|
|
|
extern PyObject* _PyEval_BuiltinsFromGlobals(
|
2021-02-20 10:17:18 -04:00
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *globals);
|
2021-02-18 14:20:16 -04:00
|
|
|
|
2022-08-30 14:11:18 -03:00
|
|
|
// Trampoline API
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
// Callback to initialize the trampoline state
|
|
|
|
void* (*init_state)(void);
|
|
|
|
// Callback to register every trampoline being created
|
|
|
|
void (*write_state)(void* state, const void *code_addr,
|
|
|
|
unsigned int code_size, PyCodeObject* code);
|
|
|
|
// Callback to free the trampoline state
|
|
|
|
int (*free_state)(void* state);
|
|
|
|
} _PyPerf_Callbacks;
|
|
|
|
|
|
|
|
extern int _PyPerfTrampoline_SetCallbacks(_PyPerf_Callbacks *);
|
|
|
|
extern void _PyPerfTrampoline_GetCallbacks(_PyPerf_Callbacks *);
|
|
|
|
extern int _PyPerfTrampoline_Init(int activate);
|
|
|
|
extern int _PyPerfTrampoline_Fini(void);
|
|
|
|
extern int _PyIsPerfTrampolineActive(void);
|
|
|
|
extern PyStatus _PyPerfTrampoline_AfterFork_Child(void);
|
|
|
|
#ifdef PY_HAVE_PERF_TRAMPOLINE
|
|
|
|
extern _PyPerf_Callbacks _Py_perfmap_callbacks;
|
|
|
|
#endif
|
2021-02-18 14:20:16 -04:00
|
|
|
|
2019-11-14 07:20:46 -04:00
|
|
|
static inline PyObject*
|
2022-02-25 11:22:00 -04:00
|
|
|
_PyEval_EvalFrame(PyThreadState *tstate, struct _PyInterpreterFrame *frame, int throwflag)
|
2019-11-14 07:20:46 -04:00
|
|
|
{
|
2022-05-27 12:31:41 -03:00
|
|
|
EVAL_CALL_STAT_INC(EVAL_CALL_TOTAL);
|
2021-10-11 07:34:02 -03:00
|
|
|
if (tstate->interp->eval_frame == NULL) {
|
|
|
|
return _PyEval_EvalFrameDefault(tstate, frame, throwflag);
|
|
|
|
}
|
2021-07-26 07:22:16 -03:00
|
|
|
return tstate->interp->eval_frame(tstate, frame, throwflag);
|
2019-11-14 07:20:46 -04:00
|
|
|
}
|
|
|
|
|
2022-03-20 22:24:00 -03:00
|
|
|
extern PyObject*
|
2021-02-01 06:42:03 -04:00
|
|
|
_PyEval_Vector(PyThreadState *tstate,
|
2021-11-23 05:53:24 -04:00
|
|
|
PyFunctionObject *func, PyObject *locals,
|
2021-02-01 06:42:03 -04:00
|
|
|
PyObject* const* args, size_t argcount,
|
|
|
|
PyObject *kwnames);
|
2019-11-15 20:03:22 -04:00
|
|
|
|
2023-05-05 16:23:00 -03:00
|
|
|
extern int _PyEval_ThreadsInitialized(void);
|
2023-05-05 18:59:20 -03:00
|
|
|
extern PyStatus _PyEval_InitGIL(PyThreadState *tstate, int own_gil);
|
2021-02-19 10:10:45 -04:00
|
|
|
extern void _PyEval_FiniGIL(PyInterpreterState *interp);
|
2020-03-09 17:24:14 -03:00
|
|
|
|
2023-05-06 18:59:30 -03:00
|
|
|
extern void _PyEval_AcquireLock(PyThreadState *tstate);
|
2020-03-17 22:26:04 -03:00
|
|
|
extern void _PyEval_ReleaseLock(PyThreadState *tstate);
|
2023-05-06 18:59:30 -03:00
|
|
|
extern PyThreadState * _PyThreadState_SwapNoGIL(PyThreadState *);
|
2020-03-17 22:26:04 -03:00
|
|
|
|
2021-03-08 17:56:37 -04:00
|
|
|
extern void _PyEval_DeactivateOpCache(void);
|
|
|
|
|
2020-03-13 06:19:38 -03:00
|
|
|
|
|
|
|
/* --- _Py_EnterRecursiveCall() ----------------------------------------- */
|
|
|
|
|
|
|
|
#ifdef USE_STACKCHECK
|
|
|
|
/* With USE_STACKCHECK macro defined, trigger stack checks in
|
2022-05-04 08:30:23 -03:00
|
|
|
_Py_CheckRecursiveCall() on every 64th call to _Py_EnterRecursiveCall. */
|
2020-03-13 06:19:38 -03:00
|
|
|
static inline int _Py_MakeRecCheck(PyThreadState *tstate) {
|
2022-10-04 21:34:03 -03:00
|
|
|
return (tstate->c_recursion_remaining-- <= 0
|
|
|
|
|| (tstate->c_recursion_remaining & 63) == 0);
|
2020-03-13 06:19:38 -03:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int _Py_MakeRecCheck(PyThreadState *tstate) {
|
2022-10-04 21:34:03 -03:00
|
|
|
return tstate->c_recursion_remaining-- <= 0;
|
2020-03-13 06:19:38 -03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PyAPI_FUNC(int) _Py_CheckRecursiveCall(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
const char *where);
|
|
|
|
|
2022-10-04 21:34:03 -03:00
|
|
|
int _Py_CheckRecursiveCallPy(
|
|
|
|
PyThreadState *tstate);
|
|
|
|
|
2022-05-04 08:30:23 -03:00
|
|
|
static inline int _Py_EnterRecursiveCallTstate(PyThreadState *tstate,
|
|
|
|
const char *where) {
|
2020-03-13 06:19:38 -03:00
|
|
|
return (_Py_MakeRecCheck(tstate) && _Py_CheckRecursiveCall(tstate, where));
|
|
|
|
}
|
|
|
|
|
2022-05-04 08:30:23 -03:00
|
|
|
static inline int _Py_EnterRecursiveCall(const char *where) {
|
2021-10-13 09:09:13 -03:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2022-05-04 08:30:23 -03:00
|
|
|
return _Py_EnterRecursiveCallTstate(tstate, where);
|
2020-03-13 06:19:38 -03:00
|
|
|
}
|
|
|
|
|
2022-05-04 08:30:23 -03:00
|
|
|
static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {
|
2022-10-04 21:34:03 -03:00
|
|
|
tstate->c_recursion_remaining++;
|
2020-03-13 06:19:38 -03:00
|
|
|
}
|
|
|
|
|
2022-05-04 08:30:23 -03:00
|
|
|
static inline void _Py_LeaveRecursiveCall(void) {
|
2021-10-13 09:09:13 -03:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2022-05-04 08:30:23 -03:00
|
|
|
_Py_LeaveRecursiveCallTstate(tstate);
|
2020-03-13 06:19:38 -03:00
|
|
|
}
|
|
|
|
|
2022-03-20 22:24:00 -03:00
|
|
|
extern struct _PyInterpreterFrame* _PyEval_GetFrame(void);
|
2021-07-26 07:22:16 -03:00
|
|
|
|
2022-03-20 22:24:00 -03:00
|
|
|
extern PyObject* _Py_MakeCoro(PyFunctionObject *func);
|
2020-03-13 06:19:38 -03:00
|
|
|
|
2022-08-24 10:21:01 -03:00
|
|
|
extern int _Py_HandlePending(PyThreadState *tstate);
|
|
|
|
|
|
|
|
|
2022-10-04 21:34:03 -03:00
|
|
|
|
2017-09-08 02:51:28 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_CEVAL_H */
|