| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | #include "frameobject.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-02 11:01:33 +00:00
										 |  |  | #include "pycore_code.h"           // stats
 | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | #include "pycore_frame.h"
 | 
					
						
							|  |  |  | #include "pycore_object.h"        // _PyObject_GC_UNTRACK()
 | 
					
						
							| 
									
										
										
										
											2022-01-20 11:46:39 +00:00
										 |  |  | #include "opcode.h"
 | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyFrame_Traverse(InterpreterFrame *frame, visitproc visit, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_VISIT(frame->frame_obj); | 
					
						
							|  |  |  |     Py_VISIT(frame->f_locals); | 
					
						
							| 
									
										
										
										
											2021-11-23 09:53:24 +00:00
										 |  |  |     Py_VISIT(frame->f_func); | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |     Py_VISIT(frame->f_code); | 
					
						
							|  |  |  |    /* locals */ | 
					
						
							|  |  |  |     PyObject **locals = _PyFrame_GetLocalsArray(frame); | 
					
						
							| 
									
										
										
										
											2021-08-25 13:44:20 +01:00
										 |  |  |     int i = 0; | 
					
						
							|  |  |  |     /* locals and stack */ | 
					
						
							|  |  |  |     for (; i <frame->stacktop; i++) { | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |         Py_VISIT(locals[i]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyFrameObject * | 
					
						
							|  |  |  | _PyFrame_MakeAndSetFrameObject(InterpreterFrame *frame) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     assert(frame->frame_obj == NULL); | 
					
						
							|  |  |  |     PyObject *error_type, *error_value, *error_traceback; | 
					
						
							|  |  |  |     PyErr_Fetch(&error_type, &error_value, &error_traceback); | 
					
						
							| 
									
										
										
										
											2021-11-29 12:34:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     PyFrameObject *f = _PyFrame_New_NoTrack(frame->f_code); | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |     if (f == NULL) { | 
					
						
							|  |  |  |         Py_XDECREF(error_type); | 
					
						
							|  |  |  |         Py_XDECREF(error_value); | 
					
						
							|  |  |  |         Py_XDECREF(error_traceback); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2021-11-29 12:34:59 +00:00
										 |  |  |         f->f_owns_frame = 0; | 
					
						
							|  |  |  |         f->f_frame = frame; | 
					
						
							|  |  |  |         frame->frame_obj = f; | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |         PyErr_Restore(error_type, error_value, error_traceback); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return f; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 10:13:49 +00:00
										 |  |  | void | 
					
						
							|  |  |  | _PyFrame_Copy(InterpreterFrame *src, InterpreterFrame *dest) | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-06 10:13:49 +00:00
										 |  |  |     assert(src->stacktop >= src->f_code->co_nlocalsplus); | 
					
						
							|  |  |  |     Py_ssize_t size = ((char*)&src->localsplus[src->stacktop]) - (char *)src; | 
					
						
							|  |  |  |     memcpy(dest, src, size); | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | take_ownership(PyFrameObject *f, InterpreterFrame *frame) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-11-29 12:34:59 +00:00
										 |  |  |     assert(f->f_owns_frame == 0); | 
					
						
							|  |  |  |     Py_ssize_t size = ((char*)&frame->localsplus[frame->stacktop]) - (char *)frame; | 
					
						
							|  |  |  |     memcpy((InterpreterFrame *)f->_f_frame_data, frame, size); | 
					
						
							|  |  |  |     frame = (InterpreterFrame *)f->_f_frame_data; | 
					
						
							|  |  |  |     f->f_owns_frame = 1; | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |     f->f_frame = frame; | 
					
						
							|  |  |  |     assert(f->f_back == NULL); | 
					
						
							|  |  |  |     if (frame->previous != NULL) { | 
					
						
							|  |  |  |         /* Link PyFrameObjects.f_back and remove link through InterpreterFrame.previous */ | 
					
						
							|  |  |  |         PyFrameObject *back = _PyFrame_GetFrameObject(frame->previous); | 
					
						
							|  |  |  |         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); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         frame->previous = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!_PyObject_GC_IS_TRACKED((PyObject *)f)) { | 
					
						
							|  |  |  |         _PyObject_GC_TRACK((PyObject *)f); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 12:34:59 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2022-01-28 12:42:30 +00:00
										 |  |  | _PyFrame_Clear(InterpreterFrame *frame) | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-11-22 14:01:23 +00:00
										 |  |  |     /* It is the responsibility of the owning generator/coroutine
 | 
					
						
							| 
									
										
										
										
											2022-01-20 11:46:39 +00:00
										 |  |  |      * to have cleared the enclosing generator, if any. */ | 
					
						
							|  |  |  |     assert(!frame->is_generator); | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01: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 12:34:59 +00:00
										 |  |  |             return; | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         Py_DECREF(f); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-06 10:13:49 +00:00
										 |  |  |     assert(frame->stacktop >= 0); | 
					
						
							| 
									
										
										
										
											2021-08-25 13:44:20 +01:00
										 |  |  |     for (int i = 0; i < frame->stacktop; i++) { | 
					
						
							|  |  |  |         Py_XDECREF(frame->localsplus[i]); | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-01-20 11:46:39 +00:00
										 |  |  |     Py_XDECREF(frame->frame_obj); | 
					
						
							|  |  |  |     Py_XDECREF(frame->f_locals); | 
					
						
							|  |  |  |     Py_DECREF(frame->f_func); | 
					
						
							|  |  |  |     Py_DECREF(frame->f_code); | 
					
						
							| 
									
										
										
										
											2021-07-26 11:22:16 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-01-28 12:42:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-03 18:36:28 +00:00
										 |  |  | /* Consumes reference to func */ | 
					
						
							| 
									
										
										
										
											2022-01-28 12:42:30 +00:00
										 |  |  | InterpreterFrame * | 
					
						
							|  |  |  | _PyFrame_Push(PyThreadState *tstate, PyFunctionObject *func) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyCodeObject *code = (PyCodeObject *)func->func_code; | 
					
						
							|  |  |  |     size_t size = code->co_nlocalsplus + code->co_stacksize + FRAME_SPECIALS_SIZE; | 
					
						
							| 
									
										
										
										
											2022-02-02 11:01:33 +00:00
										 |  |  |     CALL_STAT_INC(frames_pushed); | 
					
						
							| 
									
										
										
										
											2022-01-28 12:42:30 +00:00
										 |  |  |     InterpreterFrame *new_frame = _PyThreadState_BumpFramePointer(tstate, size); | 
					
						
							|  |  |  |     if (new_frame == NULL) { | 
					
						
							| 
									
										
										
										
											2022-02-03 18:36:28 +00:00
										 |  |  |         Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											2022-01-28 12:42:30 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     _PyFrame_InitializeSpecials(new_frame, func, NULL, code->co_nlocalsplus); | 
					
						
							|  |  |  |     return new_frame; | 
					
						
							|  |  |  | } |