home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Include / frameobject.h < prev    next >
C/C++ Source or Header  |  1994-01-02  |  3KB  |  102 lines

  1. #ifndef Py_FRAMEOBJECT_H
  2. #define Py_FRAMEOBJECT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /***********************************************************
  8. Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
  9. Amsterdam, The Netherlands.
  10.  
  11.                         All Rights Reserved
  12.  
  13. Permission to use, copy, modify, and distribute this software and its 
  14. documentation for any purpose and without fee is hereby granted, 
  15. provided that the above copyright notice appear in all copies and that
  16. both that copyright notice and this permission notice appear in 
  17. supporting documentation, and that the names of Stichting Mathematisch
  18. Centrum or CWI not be used in advertising or publicity pertaining to
  19. distribution of the software without specific, written prior permission.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  22. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  23. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  24. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  25. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  26. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  27. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  28.  
  29. ******************************************************************/
  30.  
  31. /* Frame object interface */
  32.  
  33. typedef struct {
  34.     int b_type;        /* what kind of block this is */
  35.     int b_handler;        /* where to jump to find handler */
  36.     int b_level;        /* value stack level to pop to */
  37. } block;
  38.  
  39. typedef struct _frame {
  40.     OB_HEAD
  41.     struct _frame *f_back;    /* previous frame, or NULL */
  42.     codeobject *f_code;    /* code segment */
  43.     object *f_globals;    /* global symbol table (dictobject) */
  44.     object *f_locals;    /* local symbol table (dictobject) */
  45.     object *f_owner;    /* owner (e.g. class or module) or NULL */
  46.     object *f_fastlocals;    /* fast local variables (listobject) */
  47.     object *f_localmap;    /* local variable names (dictobject) */
  48.     object **f_valuestack;    /* malloc'ed array */
  49.     block *f_blockstack;    /* malloc'ed array */
  50.     int f_nvalues;        /* size of f_valuestack */
  51.     int f_nblocks;        /* size of f_blockstack */
  52.     int f_iblock;        /* index in f_blockstack */
  53.     int f_lasti;        /* Last instruction if called */
  54.     int f_lineno;        /* Current line number */
  55. } frameobject;
  56.  
  57.  
  58. /* Standard object interface */
  59.  
  60. extern typeobject Frametype;
  61.  
  62. #define is_frameobject(op) ((op)->ob_type == &Frametype)
  63.  
  64. frameobject * newframeobject PROTO(
  65.     (frameobject *, codeobject *, object *, object *, object *, int, int));
  66.  
  67.  
  68. /* The rest of the interface is specific for frame objects */
  69.  
  70. /* List access macros */
  71.  
  72. #ifdef NDEBUG
  73. #define GETITEM(v, i) GETLISTITEM((listobject *)(v), (i))
  74. #define GETITEMNAME(v, i) GETSTRINGVALUE((stringobject *)GETITEM((v), (i)))
  75. #else
  76. #define GETITEM(v, i) getlistitem((v), (i))
  77. #define GETITEMNAME(v, i) getstringvalue(getlistitem((v), (i)))
  78. #endif
  79.  
  80. #define GETUSTRINGVALUE(s) ((unsigned char *)GETSTRINGVALUE(s))
  81.  
  82. /* Code access macros */
  83.  
  84. #define Getconst(f, i)    (GETITEM((f)->f_code->co_consts, (i)))
  85. #define Getname(f, i)    (GETITEMNAME((f)->f_code->co_names, (i)))
  86. #define Getnamev(f, i)    (GETITEM((f)->f_code->co_names, (i)))
  87.  
  88.  
  89. /* Block management functions */
  90.  
  91. void setup_block PROTO((frameobject *, int, int, int));
  92. block *pop_block PROTO((frameobject *));
  93.  
  94. /* Extend the value stack */
  95.  
  96. object **extend_stack PROTO((frameobject *, int, int));
  97.  
  98. #ifdef __cplusplus
  99. }
  100. #endif
  101. #endif /* !Py_FRAMEOBJECT_H */
  102.