2021-07-26 07:22:16 -03:00
|
|
|
|
2022-05-18 10:38:43 -03:00
|
|
|
#define _PY_INTERPRETER
|
|
|
|
|
2021-07-26 07:22:16 -03:00
|
|
|
#include "Python.h"
|
|
|
|
#include "frameobject.h"
|
2022-06-19 07:02:33 -03:00
|
|
|
#include "pycore_code.h" // stats
|
2021-07-26 07:22:16 -03:00
|
|
|
#include "pycore_frame.h"
|
|
|
|
#include "pycore_object.h" // _PyObject_GC_UNTRACK()
|
2022-01-20 07:46:39 -04:00
|
|
|
#include "opcode.h"
|
2021-07-26 07:22:16 -03:00
|
|
|
|
|
|
|
int
|
2022-02-25 11:22:00 -04:00
|
|
|
_PyFrame_Traverse(_PyInterpreterFrame *frame, visitproc visit, void *arg)
|
2021-07-26 07:22:16 -03:00
|
|
|
{
|
|
|
|
Py_VISIT(frame->frame_obj);
|
|
|
|
Py_VISIT(frame->f_locals);
|
2022-08-25 06:16:55 -03:00
|
|
|
Py_VISIT(frame->f_funcobj);
|
2023-06-14 09:46:37 -03:00
|
|
|
Py_VISIT(_PyFrame_GetCode(frame));
|
2021-07-26 07:22:16 -03:00
|
|
|
/* locals */
|
|
|
|
PyObject **locals = _PyFrame_GetLocalsArray(frame);
|
2021-08-25 09:44:20 -03:00
|
|
|
int i = 0;
|
|
|
|
/* locals and stack */
|
|
|
|
for (; i <frame->stacktop; i++) {
|
2021-07-26 07:22:16 -03:00
|
|
|
Py_VISIT(locals[i]);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyFrameObject *
|
2022-02-25 11:22:00 -04:00
|
|
|
_PyFrame_MakeAndSetFrameObject(_PyInterpreterFrame *frame)
|
2021-07-26 07:22:16 -03:00
|
|
|
{
|
|
|
|
assert(frame->frame_obj == NULL);
|
2023-02-28 07:50:52 -04:00
|
|
|
PyObject *exc = PyErr_GetRaisedException();
|
2021-11-29 08:34:59 -04:00
|
|
|
|
2023-06-14 09:46:37 -03:00
|
|
|
PyFrameObject *f = _PyFrame_New_NoTrack(_PyFrame_GetCode(frame));
|
2021-07-26 07:22:16 -03:00
|
|
|
if (f == NULL) {
|
2023-02-28 07:50:52 -04:00
|
|
|
Py_XDECREF(exc);
|
2022-10-06 20:20:01 -03:00
|
|
|
return NULL;
|
2021-07-26 07:22:16 -03:00
|
|
|
}
|
2023-02-28 07:50:52 -04:00
|
|
|
PyErr_SetRaisedException(exc);
|
2024-03-12 20:35:28 -03:00
|
|
|
|
|
|
|
// GH-97002: There was a time when a frame object could be created when we
|
|
|
|
// are allocating the new frame object f above, so frame->frame_obj would
|
|
|
|
// be assigned already. That path does not exist anymore. We won't call any
|
|
|
|
// Python code in this function and garbage collection will not run.
|
|
|
|
// Notice that _PyFrame_New_NoTrack() can potentially raise a MemoryError,
|
|
|
|
// but it won't allocate a traceback until the frame unwinds, so we are safe
|
|
|
|
// here.
|
|
|
|
assert(frame->frame_obj == NULL);
|
2022-10-06 20:20:01 -03:00
|
|
|
assert(frame->owner != FRAME_OWNED_BY_FRAME_OBJECT);
|
|
|
|
assert(frame->owner != FRAME_CLEARED);
|
|
|
|
f->f_frame = frame;
|
|
|
|
frame->frame_obj = f;
|
2021-07-26 07:22:16 -03:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-02-25 11:22:00 -04:00
|
|
|
take_ownership(PyFrameObject *f, _PyInterpreterFrame *frame)
|
2021-07-26 07:22:16 -03:00
|
|
|
{
|
2022-11-10 08:34:57 -04:00
|
|
|
assert(frame->owner != FRAME_OWNED_BY_CSTACK);
|
2022-03-22 09:57:19 -03:00
|
|
|
assert(frame->owner != FRAME_OWNED_BY_FRAME_OBJECT);
|
|
|
|
assert(frame->owner != FRAME_CLEARED);
|
2021-11-29 08:34:59 -04:00
|
|
|
Py_ssize_t size = ((char*)&frame->localsplus[frame->stacktop]) - (char *)frame;
|
2023-06-14 09:46:37 -03:00
|
|
|
Py_INCREF(_PyFrame_GetCode(frame));
|
2022-02-25 11:22:00 -04:00
|
|
|
memcpy((_PyInterpreterFrame *)f->_f_frame_data, frame, size);
|
|
|
|
frame = (_PyInterpreterFrame *)f->_f_frame_data;
|
2021-07-26 07:22:16 -03:00
|
|
|
f->f_frame = frame;
|
2022-03-22 09:57:19 -03:00
|
|
|
frame->owner = FRAME_OWNED_BY_FRAME_OBJECT;
|
2022-10-04 21:30:03 -03:00
|
|
|
if (_PyFrame_IsIncomplete(frame)) {
|
|
|
|
// This may be a newly-created generator or coroutine frame. Since it's
|
|
|
|
// dead anyways, just pretend that the first RESUME ran:
|
2023-06-14 09:46:37 -03:00
|
|
|
PyCodeObject *code = _PyFrame_GetCode(frame);
|
2023-10-26 10:43:10 -03:00
|
|
|
frame->instr_ptr = _PyCode_CODE(code) + code->_co_firsttraceable + 1;
|
2022-10-04 21:30:03 -03:00
|
|
|
}
|
|
|
|
assert(!_PyFrame_IsIncomplete(frame));
|
2021-07-26 07:22:16 -03:00
|
|
|
assert(f->f_back == NULL);
|
2023-01-09 16:20:04 -04:00
|
|
|
_PyInterpreterFrame *prev = _PyFrame_GetFirstComplete(frame->previous);
|
2022-11-10 08:34:57 -04:00
|
|
|
frame->previous = NULL;
|
2022-07-01 07:08:20 -03:00
|
|
|
if (prev) {
|
2022-11-10 08:34:57 -04:00
|
|
|
assert(prev->owner != FRAME_OWNED_BY_CSTACK);
|
2022-02-25 11:22:00 -04:00
|
|
|
/* Link PyFrameObjects.f_back and remove link through _PyInterpreterFrame.previous */
|
2022-07-01 07:08:20 -03:00
|
|
|
PyFrameObject *back = _PyFrame_GetFrameObject(prev);
|
2021-07-26 07:22:16 -03:00
|
|
|
if (back == NULL) {
|
|
|
|
/* Memory error here. */
|
|
|
|
assert(PyErr_ExceptionMatches(PyExc_MemoryError));
|
|
|
|
/* Nothing we can do about it */
|
|
|
|
PyErr_Clear();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
f->f_back = (PyFrameObject *)Py_NewRef(back);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!_PyObject_GC_IS_TRACKED((PyObject *)f)) {
|
|
|
|
_PyObject_GC_TRACK((PyObject *)f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-30 15:32:25 -03:00
|
|
|
void
|
|
|
|
_PyFrame_ClearLocals(_PyInterpreterFrame *frame)
|
|
|
|
{
|
|
|
|
assert(frame->stacktop >= 0);
|
2024-05-01 17:51:40 -03:00
|
|
|
int stacktop = frame->stacktop;
|
|
|
|
frame->stacktop = 0;
|
|
|
|
for (int i = 0; i < stacktop; i++) {
|
2024-04-30 15:32:25 -03:00
|
|
|
Py_XDECREF(frame->localsplus[i]);
|
|
|
|
}
|
|
|
|
Py_CLEAR(frame->f_locals);
|
|
|
|
}
|
|
|
|
|
2021-11-29 08:34:59 -04:00
|
|
|
void
|
2023-02-23 06:19:01 -04:00
|
|
|
_PyFrame_ClearExceptCode(_PyInterpreterFrame *frame)
|
2021-07-26 07:22:16 -03:00
|
|
|
{
|
2021-11-22 10:01:23 -04:00
|
|
|
/* It is the responsibility of the owning generator/coroutine
|
2022-01-20 07:46:39 -04:00
|
|
|
* to have cleared the enclosing generator, if any. */
|
2022-03-22 09:57:19 -03:00
|
|
|
assert(frame->owner != FRAME_OWNED_BY_GENERATOR ||
|
|
|
|
_PyFrame_GetGenerator(frame)->gi_frame_state == FRAME_CLEARED);
|
2022-12-06 10:01:38 -04:00
|
|
|
// GH-99729: Clearing this frame can expose the stack (via finalizers). It's
|
|
|
|
// crucial that this frame has been unlinked, and is no longer visible:
|
2023-08-17 07:16:03 -03:00
|
|
|
assert(_PyThreadState_GET()->current_frame != frame);
|
2021-07-26 07:22:16 -03:00
|
|
|
if (frame->frame_obj) {
|
|
|
|
PyFrameObject *f = frame->frame_obj;
|
|
|
|
frame->frame_obj = NULL;
|
|
|
|
if (Py_REFCNT(f) > 1) {
|
|
|
|
take_ownership(f, frame);
|
|
|
|
Py_DECREF(f);
|
2021-11-29 08:34:59 -04:00
|
|
|
return;
|
2021-07-26 07:22:16 -03:00
|
|
|
}
|
|
|
|
Py_DECREF(f);
|
|
|
|
}
|
2024-04-30 15:32:25 -03:00
|
|
|
_PyFrame_ClearLocals(frame);
|
2022-08-25 06:16:55 -03:00
|
|
|
Py_DECREF(frame->f_funcobj);
|
2021-07-26 07:22:16 -03:00
|
|
|
}
|
2022-01-28 08:42:30 -04:00
|
|
|
|
2023-05-05 13:53:07 -03:00
|
|
|
/* Unstable API functions */
|
|
|
|
|
2023-05-18 06:10:15 -03:00
|
|
|
PyObject *
|
2023-05-05 13:53:07 -03:00
|
|
|
PyUnstable_InterpreterFrame_GetCode(struct _PyInterpreterFrame *frame)
|
|
|
|
{
|
2023-06-14 09:46:37 -03:00
|
|
|
PyObject *code = frame->f_executable;
|
2023-05-05 13:53:07 -03:00
|
|
|
Py_INCREF(code);
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyUnstable_InterpreterFrame_GetLasti(struct _PyInterpreterFrame *frame)
|
|
|
|
{
|
|
|
|
return _PyInterpreterFrame_LASTI(frame) * sizeof(_Py_CODEUNIT);
|
|
|
|
}
|
|
|
|
|
2022-04-07 16:31:01 -03:00
|
|
|
int
|
2023-05-05 13:53:07 -03:00
|
|
|
PyUnstable_InterpreterFrame_GetLine(_PyInterpreterFrame *frame)
|
2022-04-07 16:31:01 -03:00
|
|
|
{
|
|
|
|
int addr = _PyInterpreterFrame_LASTI(frame) * sizeof(_Py_CODEUNIT);
|
2023-06-14 09:46:37 -03:00
|
|
|
return PyCode_Addr2Line(_PyFrame_GetCode(frame), addr);
|
2022-04-07 16:31:01 -03:00
|
|
|
}
|
2023-06-14 09:46:37 -03:00
|
|
|
|
2023-08-31 04:56:06 -03:00
|
|
|
const PyTypeObject *const PyUnstable_ExecutableKinds[PyUnstable_EXECUTABLE_KINDS+1] = {
|
|
|
|
[PyUnstable_EXECUTABLE_KIND_SKIP] = &_PyNone_Type,
|
|
|
|
[PyUnstable_EXECUTABLE_KIND_PY_FUNCTION] = &PyCode_Type,
|
|
|
|
[PyUnstable_EXECUTABLE_KIND_BUILTIN_FUNCTION] = &PyMethod_Type,
|
|
|
|
[PyUnstable_EXECUTABLE_KIND_METHOD_DESCRIPTOR] = &PyMethodDescr_Type,
|
|
|
|
[PyUnstable_EXECUTABLE_KINDS] = NULL,
|
2023-06-14 09:46:37 -03:00
|
|
|
};
|