blob: 826064d7ef4d459aa0b85853b4edebee16a9c17c [file] [log] [blame]
Damien George04b91472014-05-03 23:27:38 +01001/*
2 * This file is part of the Micro Python project, http://micropython.org/
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (c) 2013, 2014 Damien P. George
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 * THE SOFTWARE.
25 */
Damien George51dfcb42015-01-01 20:27:54 +000026#ifndef __MICROPY_INCLUDED_PY_SCOPE_H__
27#define __MICROPY_INCLUDED_PY_SCOPE_H__
28
29#include "py/parse.h"
30#include "py/emitglue.h"
Damien George04b91472014-05-03 23:27:38 +010031
Damien429d7192013-10-04 19:53:11 +010032enum {
33 ID_INFO_KIND_GLOBAL_IMPLICIT,
34 ID_INFO_KIND_GLOBAL_EXPLICIT,
35 ID_INFO_KIND_LOCAL, // in a function f, written and only referenced by f
36 ID_INFO_KIND_CELL, // in a function f, read/written by children of f
37 ID_INFO_KIND_FREE, // in a function f, belongs to the parent of f
38};
39
Damien George11d8cd52014-04-09 14:42:51 +010040enum {
41 ID_FLAG_IS_PARAM = 0x01,
Damien George2827d622014-04-27 15:50:52 +010042 ID_FLAG_IS_STAR_PARAM = 0x02,
43 ID_FLAG_IS_DBL_STAR_PARAM = 0x04,
Damien George11d8cd52014-04-09 14:42:51 +010044};
45
Damien429d7192013-10-04 19:53:11 +010046typedef struct _id_info_t {
Damien George78035b92014-04-09 12:27:39 +010047 uint8_t kind;
Damien George11d8cd52014-04-09 14:42:51 +010048 uint8_t flags;
Damien9ecbcff2013-12-11 00:41:43 +000049 // when it's an ID_INFO_KIND_LOCAL this is the unique number of the local
50 // whet it's an ID_INFO_KIND_CELL/FREE this is the unique number of the closed over variable
Damien George78035b92014-04-09 12:27:39 +010051 uint16_t local_num;
Damien George7ff996c2014-09-08 23:05:16 +010052 qstr qst;
Damien429d7192013-10-04 19:53:11 +010053} id_info_t;
54
Damien George3dea8c92016-09-30 12:34:05 +100055#define SCOPE_IS_FUNC_LIKE(s) ((s) >= SCOPE_LAMBDA)
56
Damien429d7192013-10-04 19:53:11 +010057// scope is a "block" in Python parlance
Damien George3dea8c92016-09-30 12:34:05 +100058typedef enum {
59 SCOPE_MODULE,
60 SCOPE_CLASS,
61 SCOPE_LAMBDA,
62 SCOPE_LIST_COMP,
63 SCOPE_DICT_COMP,
64 SCOPE_SET_COMP,
65 SCOPE_GEN_EXPR,
66 SCOPE_FUNCTION,
67} scope_kind_t;
68
Damien429d7192013-10-04 19:53:11 +010069typedef struct _scope_t {
70 scope_kind_t kind;
71 struct _scope_t *parent;
72 struct _scope_t *next;
Damiend99b0522013-12-21 18:17:45 +000073 mp_parse_node_t pn;
Damien Georged5495962016-09-30 12:45:00 +100074 uint16_t source_file; // a qstr
75 uint16_t simple_name; // a qstr
Damien Georgedf8127a2014-04-13 11:04:33 +010076 mp_raw_code_t *raw_code;
Damien George78035b92014-04-09 12:27:39 +010077 uint8_t scope_flags; // see runtime0.h
78 uint8_t emit_options; // see compile.h
Damien George2827d622014-04-27 15:50:52 +010079 uint16_t num_pos_args;
80 uint16_t num_kwonly_args;
Damien George3a3db4d2015-10-22 23:45:37 +010081 uint16_t num_def_pos_args;
Damien George78035b92014-04-09 12:27:39 +010082 uint16_t num_locals;
83 uint16_t stack_size; // maximum size of the locals stack
84 uint16_t exc_stack_size; // maximum size of the exception stack
85 uint16_t id_info_alloc;
86 uint16_t id_info_len;
87 id_info_t *id_info;
Damien429d7192013-10-04 19:53:11 +010088} scope_t;
89
Damien George4abff752014-08-30 14:59:21 +010090scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, qstr source_file, mp_uint_t emit_options);
Paul Sokolovskyfd313582014-01-23 23:05:47 +020091void scope_free(scope_t *scope);
Damien429d7192013-10-04 19:53:11 +010092id_info_t *scope_find_or_add_id(scope_t *scope, qstr qstr, bool *added);
93id_info_t *scope_find(scope_t *scope, qstr qstr);
94id_info_t *scope_find_global(scope_t *scope, qstr qstr);
Damien George0d105172016-09-30 13:53:00 +100095void scope_find_local_and_close_over(scope_t *scope, id_info_t *id, qstr qst);
Damien George51dfcb42015-01-01 20:27:54 +000096
97#endif // __MICROPY_INCLUDED_PY_SCOPE_H__