#include "Python.h" #include "pycore_frame.h" #include "pycore_uops.h" _PyInterpreterFrame *_JIT_CONTINUE(_PyInterpreterFrame *frame, PyObject **stack_pointer, PyThreadState *tstate); _PyInterpreterFrame * _JIT_ENTRY(_PyUOpExecutorObject *executor, _PyInterpreterFrame *frame, PyObject **stack_pointer) { frame = _JIT_CONTINUE(frame, stack_pointer, PyThreadState_Get()); Py_DECREF(executor); return frame; }