Norimasa Okamoto
/
pymite
python-on-a-chip online compiler
- http://pymbed.appspot.com/
- https://code.google.com/p/python-on-a-chip/
- http://www.youtube.com/watch?v=Oyqc2bFRW9I
- https://bitbucket.org/va009039/pymbed/
more info: python-on-a-chip
vm/func.h
- Committer:
- va009039
- Date:
- 2016-04-14
- Revision:
- 15:94ca5c8003e5
- Parent:
- 0:65f1469d6bfb
File content as of revision 15:94ca5c8003e5:
/* # This file is Copyright 2002 Dean Hall. # This file is part of the PyMite VM. # This file is licensed under the MIT License. # See the LICENSE file for details. */ #ifndef __FUNC_H__ #define __FUNC_H__ /** * \file * \brief Function Object Type * * Function object type header. */ /** * Function obj * * A function is like an instance of a code obj. * Contains ptr to its code obj and has its own attributes dict. * * The first (__main__) module that is executed has a function obj * created for it to execute the bytecode which builds the module. */ typedef struct PmFunc_s { /** Object descriptor */ PmObjDesc_t od; /** Ptr to code obj */ pPmCo_t f_co; /** Ptr to attribute dict */ pPmDict_t f_attrs; /** Ptr to globals dict */ pPmDict_t f_globals; #ifdef HAVE_DEFAULTARGS /** Ptr to tuple holding default args */ pPmTuple_t f_defaultargs; #endif /* HAVE_DEFAULTARGS */ #ifdef HAVE_CLOSURES /** Ptr to tuple of cell values */ pPmTuple_t f_closure; #endif /* HAVE_CLOSURES */ } PmFunc_t, *pPmFunc_t; /** * Creates a Function Obj for the given Code Obj. * Allocate space for a Func obj and fill the fields. * * @param pco ptr to code obj * @param pglobals ptr to globals dict (from containing func/module) * @param r_pfunc Return by reference; pointer to new function * @return Return status */ PmReturn_t func_new(pPmObj_t pco, pPmObj_t pglobals, pPmObj_t *r_pfunc); #endif /* __FUNC_H__ */