| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Frame object interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | #ifndef Py_FRAMEOBJECT_H
 | 
					
						
							|  |  |  | #define Py_FRAMEOBJECT_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     int b_type;			/* what kind of block this is */ | 
					
						
							|  |  |  |     int b_handler;		/* where to jump to find handler */ | 
					
						
							|  |  |  |     int b_level;		/* value stack level to pop to */ | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | } PyTryBlock; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct _frame { | 
					
						
							| 
									
										
										
										
											2001-08-29 23:45:25 +00:00
										 |  |  |     PyObject_VAR_HEAD | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     struct _frame *f_back;	/* previous frame, or NULL */ | 
					
						
							|  |  |  |     PyCodeObject *f_code;	/* code segment */ | 
					
						
							|  |  |  |     PyObject *f_builtins;	/* builtin symbol table (PyDictObject) */ | 
					
						
							|  |  |  |     PyObject *f_globals;	/* global symbol table (PyDictObject) */ | 
					
						
							|  |  |  |     PyObject *f_locals;		/* local symbol table (PyDictObject) */ | 
					
						
							|  |  |  |     PyObject **f_valuestack;	/* points after the last local */ | 
					
						
							| 
									
										
										
										
											2001-06-23 05:26:56 +00:00
										 |  |  |     /* Next free slot in f_valuestack.  Frame creation sets to f_valuestack.
 | 
					
						
							|  |  |  |        Frame evaluation usually NULLs it, but a frame that yields sets it | 
					
						
							|  |  |  |        to the current stack top. */ | 
					
						
							|  |  |  |     PyObject **f_stacktop; | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     PyObject *f_trace;		/* Trace function */ | 
					
						
							|  |  |  |     PyObject *f_exc_type, *f_exc_value, *f_exc_traceback; | 
					
						
							|  |  |  |     PyThreadState *f_tstate; | 
					
						
							|  |  |  |     int f_lasti;		/* Last instruction if called */ | 
					
						
							| 
									
										
										
										
											2002-09-11 15:36:32 +00:00
										 |  |  |     /* As of 2.3 f_lineno is only valid when tracing is active (i.e. when
 | 
					
						
							|  |  |  |        f_trace is set) -- at other times use PyCode_Addr2Line instead. */ | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     int f_lineno;		/* Current line number */ | 
					
						
							|  |  |  |     int f_restricted;		/* Flag set if restricted operations
 | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | 				   in this scope */ | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     int f_iblock;		/* index in f_blockstack */ | 
					
						
							|  |  |  |     PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */ | 
					
						
							|  |  |  |     int f_nlocals;		/* number of locals */ | 
					
						
							| 
									
										
										
										
											2001-01-29 22:51:52 +00:00
										 |  |  |     int f_ncells; | 
					
						
							|  |  |  |     int f_nfreevars; | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     int f_stacksize;		/* size of value stack */ | 
					
						
							|  |  |  |     PyObject *f_localsplus[1];	/* locals+stack, dynamically sized */ | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | } PyFrameObject; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Standard object interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_DATA(PyTypeObject) PyFrame_Type; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | #define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type)
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *, | 
					
						
							| 
									
										
										
										
											2001-03-13 01:58:22 +00:00
										 |  |  |                                        PyObject *, PyObject *); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The rest of the interface is specific for frame objects */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Block management functions */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int); | 
					
						
							|  |  |  | PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *); | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Extend the value stack */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int); | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | /* Conversions between "fast locals" and locals in dictionary */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int); | 
					
						
							|  |  |  | PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *); | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_FRAMEOBJECT_H */
 |