blob: 5021d4ed4893603a15756ba1071134fe3f331339 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00002Copyright (c) 2000, BeOpen.com.
3Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5All rights reserved.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00006
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007See the file "Misc/COPYRIGHT" for information on usage and
8redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00009******************************************************************/
10
Guido van Rossum3f5da241990-12-20 15:06:42 +000011/* Frame object interface */
12
Fred Drakeea9cb5a2000-07-09 00:20:36 +000013#ifndef Py_FRAMEOBJECT_H
14#define Py_FRAMEOBJECT_H
15#ifdef __cplusplus
16extern "C" {
17#endif
18
Guido van Rossum3f5da241990-12-20 15:06:42 +000019typedef struct {
Fred Drakeea9cb5a2000-07-09 00:20:36 +000020 int b_type; /* what kind of block this is */
21 int b_handler; /* where to jump to find handler */
22 int b_level; /* value stack level to pop to */
Guido van Rossumcaa63801995-01-12 11:45:45 +000023} PyTryBlock;
Guido van Rossum3f5da241990-12-20 15:06:42 +000024
25typedef struct _frame {
Fred Drakeea9cb5a2000-07-09 00:20:36 +000026 PyObject_HEAD
27 struct _frame *f_back; /* previous frame, or NULL */
28 PyCodeObject *f_code; /* code segment */
29 PyObject *f_builtins; /* builtin symbol table (PyDictObject) */
30 PyObject *f_globals; /* global symbol table (PyDictObject) */
31 PyObject *f_locals; /* local symbol table (PyDictObject) */
32 PyObject **f_valuestack; /* points after the last local */
33 PyObject *f_trace; /* Trace function */
34 PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
35 PyThreadState *f_tstate;
36 int f_lasti; /* Last instruction if called */
37 int f_lineno; /* Current line number */
38 int f_restricted; /* Flag set if restricted operations
Guido van Rossumcaa63801995-01-12 11:45:45 +000039 in this scope */
Fred Drakeea9cb5a2000-07-09 00:20:36 +000040 int f_iblock; /* index in f_blockstack */
41 PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
42 int f_nlocals; /* number of locals */
43 int f_stacksize; /* size of value stack */
44 PyObject *f_localsplus[1]; /* locals+stack, dynamically sized */
Guido van Rossumcaa63801995-01-12 11:45:45 +000045} PyFrameObject;
Guido van Rossum3f5da241990-12-20 15:06:42 +000046
47
48/* Standard object interface */
49
Guido van Rossum051ab121995-02-27 10:17:52 +000050extern DL_IMPORT(PyTypeObject) PyFrame_Type;
Guido van Rossum3f5da241990-12-20 15:06:42 +000051
Guido van Rossumcaa63801995-01-12 11:45:45 +000052#define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type)
Guido van Rossum3f5da241990-12-20 15:06:42 +000053
Fred Drakeea9cb5a2000-07-09 00:20:36 +000054DL_IMPORT(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
55 PyObject *, PyObject *);
Guido van Rossum3f5da241990-12-20 15:06:42 +000056
57
58/* The rest of the interface is specific for frame objects */
59
Guido van Rossum93817821995-01-17 16:01:01 +000060/* Tuple access macros */
Guido van Rossum3f5da241990-12-20 15:06:42 +000061
Guido van Rossum408027e1996-12-30 16:17:54 +000062#ifndef Py_DEBUG
Guido van Rossumcaa63801995-01-12 11:45:45 +000063#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
64#define GETITEMNAME(v, i) \
65 PyString_AS_STRING((PyStringObject *)GETITEM((v), (i)))
Guido van Rossum3f5da241990-12-20 15:06:42 +000066#else
Guido van Rossumcaa63801995-01-12 11:45:45 +000067#define GETITEM(v, i) PyTuple_GetItem((v), (i))
68#define GETITEMNAME(v, i) PyString_AsString(GETITEM(v, i))
Guido van Rossum3f5da241990-12-20 15:06:42 +000069#endif
70
Guido van Rossumcaa63801995-01-12 11:45:45 +000071#define GETUSTRINGVALUE(s) ((unsigned char *)PyString_AS_STRING(s))
Guido van Rossum3f5da241990-12-20 15:06:42 +000072
73/* Code access macros */
74
75#define Getconst(f, i) (GETITEM((f)->f_code->co_consts, (i)))
76#define Getname(f, i) (GETITEMNAME((f)->f_code->co_names, (i)))
Guido van Rossumd594c911991-04-03 19:03:22 +000077#define Getnamev(f, i) (GETITEM((f)->f_code->co_names, (i)))
Guido van Rossum3f5da241990-12-20 15:06:42 +000078
79
80/* Block management functions */
81
Fred Drakeea9cb5a2000-07-09 00:20:36 +000082DL_IMPORT(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
83DL_IMPORT(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000084
85/* Extend the value stack */
86
Fred Drakeea9cb5a2000-07-09 00:20:36 +000087DL_IMPORT(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int);
Guido van Rossuma3309961993-07-28 09:05:47 +000088
Guido van Rossumb6775db1994-08-01 11:34:53 +000089/* Conversions between "fast locals" and locals in dictionary */
90
Fred Drakeea9cb5a2000-07-09 00:20:36 +000091DL_IMPORT(void) PyFrame_LocalsToFast(PyFrameObject *, int);
92DL_IMPORT(void) PyFrame_FastToLocals(PyFrameObject *);
Guido van Rossumb6775db1994-08-01 11:34:53 +000093
Guido van Rossuma3309961993-07-28 09:05:47 +000094#ifdef __cplusplus
95}
96#endif
97#endif /* !Py_FRAMEOBJECT_H */