2024-05-01 08:05:53 -07:00
|
|
|
#include "Python.h"
|
|
|
|
|
|
|
|
|
|
#include "pycore_ceval.h"
|
|
|
|
|
#include "pycore_frame.h"
|
|
|
|
|
#include "pycore_jit.h"
|
|
|
|
|
|
2024-10-30 12:03:31 -07:00
|
|
|
#include "jit.h"
|
|
|
|
|
|
2024-05-01 08:05:53 -07:00
|
|
|
_Py_CODEUNIT *
|
2024-10-30 12:03:31 -07:00
|
|
|
_JIT_ENTRY(_PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState *tstate)
|
2024-05-01 08:05:53 -07:00
|
|
|
{
|
|
|
|
|
// Note that this is *not* a tail call:
|
2025-07-14 10:14:20 -07:00
|
|
|
DECLARE_TARGET(_JIT_CONTINUE);
|
|
|
|
|
return _JIT_CONTINUE(frame, stack_pointer, tstate);
|
2024-05-01 08:05:53 -07:00
|
|
|
}
|