mirror of
https://github.com/python/cpython.git
synced 2024-12-01 11:15:56 +01:00
9e3ad78444
path (with no profile/trace function) through eval_code2() and eval_frame() avoids several checks. In the common cases of calls, returns, and exception propogation, eval_code2() and eval_frame() used to test two values in the thread-state: the profiling function and the tracing function. With this change, a flag is set in the thread-state if either of these is active, allowing a single check to suffice when both are NULL. This also simplifies the code needed when either function is in use but is already active (to avoid profiling/tracing the profiler/tracer); the flag is set to 0 when the profile/trace code is entered, allowing the same check to suffice for "already in the tracer" for call/return/ exception events.
104 lines
2.3 KiB
C
104 lines
2.3 KiB
C
|
|
/* Thread and interpreter state structures and their interfaces */
|
|
|
|
|
|
#ifndef Py_PYSTATE_H
|
|
#define Py_PYSTATE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* State shared between threads */
|
|
|
|
struct _ts; /* Forward */
|
|
struct _is; /* Forward */
|
|
|
|
typedef struct _is {
|
|
|
|
struct _is *next;
|
|
struct _ts *tstate_head;
|
|
|
|
PyObject *modules;
|
|
PyObject *sysdict;
|
|
PyObject *builtins;
|
|
|
|
int checkinterval;
|
|
|
|
} PyInterpreterState;
|
|
|
|
|
|
/* State unique per thread */
|
|
|
|
struct _frame; /* Avoid including frameobject.h */
|
|
|
|
/* Py_tracefunc return -1 when raising an exception, or 0 for success. */
|
|
typedef int (*Py_tracefunc)(PyObject *, struct _frame *, int, PyObject *);
|
|
|
|
/* The following values are used for 'what' for tracefunc functions: */
|
|
#define PyTrace_CALL 0
|
|
#define PyTrace_EXCEPTION 1
|
|
#define PyTrace_LINE 2
|
|
#define PyTrace_RETURN 3
|
|
|
|
typedef struct _ts {
|
|
|
|
struct _ts *next;
|
|
PyInterpreterState *interp;
|
|
|
|
struct _frame *frame;
|
|
int recursion_depth;
|
|
int ticker;
|
|
int tracing;
|
|
int use_tracing;
|
|
|
|
Py_tracefunc c_profilefunc;
|
|
Py_tracefunc c_tracefunc;
|
|
PyObject *c_profileobj;
|
|
PyObject *c_traceobj;
|
|
|
|
PyObject *curexc_type;
|
|
PyObject *curexc_value;
|
|
PyObject *curexc_traceback;
|
|
|
|
PyObject *exc_type;
|
|
PyObject *exc_value;
|
|
PyObject *exc_traceback;
|
|
|
|
PyObject *dict;
|
|
|
|
/* XXX signal handlers should also be here */
|
|
|
|
} PyThreadState;
|
|
|
|
|
|
DL_IMPORT(PyInterpreterState *) PyInterpreterState_New(void);
|
|
DL_IMPORT(void) PyInterpreterState_Clear(PyInterpreterState *);
|
|
DL_IMPORT(void) PyInterpreterState_Delete(PyInterpreterState *);
|
|
|
|
DL_IMPORT(PyThreadState *) PyThreadState_New(PyInterpreterState *);
|
|
DL_IMPORT(void) PyThreadState_Clear(PyThreadState *);
|
|
DL_IMPORT(void) PyThreadState_Delete(PyThreadState *);
|
|
#ifdef WITH_THREAD
|
|
DL_IMPORT(void) PyThreadState_DeleteCurrent(void);
|
|
#endif
|
|
|
|
DL_IMPORT(PyThreadState *) PyThreadState_Get(void);
|
|
DL_IMPORT(PyThreadState *) PyThreadState_Swap(PyThreadState *);
|
|
DL_IMPORT(PyObject *) PyThreadState_GetDict(void);
|
|
|
|
|
|
/* Variable and macro for in-line access to current thread state */
|
|
|
|
extern DL_IMPORT(PyThreadState *) _PyThreadState_Current;
|
|
|
|
#ifdef Py_DEBUG
|
|
#define PyThreadState_GET() PyThreadState_Get()
|
|
#else
|
|
#define PyThreadState_GET() (_PyThreadState_Current)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_PYSTATE_H */
|