2013-10-04 14:53:11 -04:00
|
|
|
enum {
|
|
|
|
ID_INFO_KIND_GLOBAL_IMPLICIT,
|
|
|
|
ID_INFO_KIND_GLOBAL_EXPLICIT,
|
|
|
|
ID_INFO_KIND_LOCAL, // in a function f, written and only referenced by f
|
|
|
|
ID_INFO_KIND_CELL, // in a function f, read/written by children of f
|
|
|
|
ID_INFO_KIND_FREE, // in a function f, belongs to the parent of f
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _id_info_t {
|
2013-10-20 10:07:49 -04:00
|
|
|
// TODO compress this info to make structure smaller in memory
|
2013-10-04 14:53:11 -04:00
|
|
|
bool param;
|
|
|
|
int kind;
|
|
|
|
qstr qstr;
|
2013-12-10 19:41:43 -05:00
|
|
|
|
|
|
|
// when it's an ID_INFO_KIND_LOCAL this is the unique number of the local
|
|
|
|
// whet it's an ID_INFO_KIND_CELL/FREE this is the unique number of the closed over variable
|
|
|
|
int local_num;
|
2013-10-04 14:53:11 -04:00
|
|
|
} id_info_t;
|
|
|
|
|
|
|
|
// scope is a "block" in Python parlance
|
|
|
|
typedef enum { SCOPE_MODULE, SCOPE_FUNCTION, SCOPE_LAMBDA, SCOPE_LIST_COMP, SCOPE_DICT_COMP, SCOPE_SET_COMP, SCOPE_GEN_EXPR, SCOPE_CLASS } scope_kind_t;
|
|
|
|
typedef struct _scope_t {
|
|
|
|
scope_kind_t kind;
|
|
|
|
struct _scope_t *parent;
|
|
|
|
struct _scope_t *next;
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_parse_node_t pn;
|
2014-01-19 06:48:48 -05:00
|
|
|
qstr source_file;
|
2013-10-04 14:53:11 -04:00
|
|
|
qstr simple_name;
|
|
|
|
int id_info_alloc;
|
|
|
|
int id_info_len;
|
|
|
|
id_info_t *id_info;
|
2014-02-15 14:33:11 -05:00
|
|
|
uint scope_flags; // see runtime0.h
|
2013-10-04 14:53:11 -04:00
|
|
|
int num_params;
|
|
|
|
/* not needed
|
|
|
|
int num_default_params;
|
|
|
|
int num_dict_params;
|
|
|
|
*/
|
|
|
|
int num_locals;
|
2014-03-27 06:55:21 -04:00
|
|
|
int stack_size; // maximum size of the locals stack
|
|
|
|
int exc_stack_size; // maximum size of the exception stack
|
2013-10-05 08:37:10 -04:00
|
|
|
uint unique_code_id;
|
2013-10-05 13:08:26 -04:00
|
|
|
uint emit_options;
|
2013-10-04 14:53:11 -04:00
|
|
|
} scope_t;
|
|
|
|
|
2014-01-19 06:48:48 -05:00
|
|
|
scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, qstr source_file, uint unique_code_id, uint emit_options);
|
2014-01-23 16:05:47 -05:00
|
|
|
void scope_free(scope_t *scope);
|
2013-10-04 14:53:11 -04:00
|
|
|
id_info_t *scope_find_or_add_id(scope_t *scope, qstr qstr, bool *added);
|
|
|
|
id_info_t *scope_find(scope_t *scope, qstr qstr);
|
|
|
|
id_info_t *scope_find_global(scope_t *scope, qstr qstr);
|
|
|
|
id_info_t *scope_find_local_in_parent(scope_t *scope, qstr qstr);
|
|
|
|
void scope_close_over_in_parents(scope_t *scope, qstr qstr);
|
2013-10-05 07:19:06 -04:00
|
|
|
void scope_declare_global(scope_t *scope, qstr qstr);
|
|
|
|
void scope_declare_nonlocal(scope_t *scope, qstr qstr);
|
2013-10-04 14:53:11 -04:00
|
|
|
void scope_print_info(scope_t *s);
|