blob: 1934ccd1e46139abde32303b0c9ef7f297520f0b [file] [log] [blame]
Damien Georged17926d2014-03-30 13:35:08 +01001void mp_init(void);
2void mp_deinit(void);
Damien George2326d522014-03-27 23:26:35 +00003
Damien Georged17926d2014-03-30 13:35:08 +01004void mp_check_nargs(int n_args, machine_uint_t n_args_min, machine_uint_t n_args_max, int n_kw, bool is_kw);
Dave Hylands51dabac2014-02-17 17:57:13 -08005
Damien Georged17926d2014-03-30 13:35:08 +01006struct _mp_map_t *mp_locals_get(void);
7void mp_locals_set(struct _mp_map_t *m);
8struct _mp_map_t *mp_globals_get(void);
9void mp_globals_set(struct _mp_map_t *m);
Damien429d7192013-10-04 19:53:11 +010010
Damien Georged17926d2014-03-30 13:35:08 +010011mp_obj_t mp_load_name(qstr qstr);
12mp_obj_t mp_load_global(qstr qstr);
13mp_obj_t mp_load_build_class(void);
14void mp_store_name(qstr qstr, mp_obj_t obj);
15void mp_store_global(qstr qstr, mp_obj_t obj);
16void mp_delete_name(qstr qstr);
Damien George66028ab2014-01-03 14:03:48 +000017
Damien Georged17926d2014-03-30 13:35:08 +010018mp_obj_t mp_unary_op(int op, mp_obj_t arg);
19mp_obj_t mp_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs);
20
21mp_obj_t mp_load_const_dec(qstr qstr);
22mp_obj_t mp_load_const_str(qstr qstr);
23mp_obj_t mp_load_const_bytes(qstr qstr);
24
25mp_obj_t mp_get_cell(mp_obj_t cell);
26void mp_set_cell(mp_obj_t cell, mp_obj_t val);
27
28mp_obj_t mp_make_function_from_id(uint unique_code_id, bool free_unique_code, mp_obj_t def_args);
29mp_obj_t mp_make_function_n(int n_args, void *fun); // fun must have the correct signature for n_args fixed arguments
30mp_obj_t mp_make_function_var(int n_args_min, mp_fun_var_t fun);
31mp_obj_t mp_make_function_var_between(int n_args_min, int n_args_max, mp_fun_var_t fun); // min and max are inclusive
32mp_obj_t mp_make_closure_from_id(uint unique_code_id, mp_obj_t closure_tuple, mp_obj_t def_args);
33
34mp_obj_t mp_call_function_0(mp_obj_t fun);
35mp_obj_t mp_call_function_1(mp_obj_t fun, mp_obj_t arg);
36mp_obj_t mp_call_function_2(mp_obj_t fun, mp_obj_t arg1, mp_obj_t arg2);
37mp_obj_t mp_call_function_n_kw_for_native(mp_obj_t fun_in, uint n_args_kw, const mp_obj_t *args);
38mp_obj_t mp_call_function_n_kw(mp_obj_t fun, uint n_args, uint n_kw, const mp_obj_t *args);
39mp_obj_t mp_call_method_n_kw(uint n_args, uint n_kw, const mp_obj_t *args);
40
41mp_obj_t mp_build_tuple(int n_args, mp_obj_t *items);
42mp_obj_t mp_build_list(int n_args, mp_obj_t *items);
43mp_obj_t mp_list_append(mp_obj_t list, mp_obj_t arg);
44mp_obj_t mp_build_set(int n_args, mp_obj_t *items);
45mp_obj_t mp_store_set(mp_obj_t set, mp_obj_t item);
46void mp_unpack_sequence(mp_obj_t seq, uint num, mp_obj_t *items);
47mp_obj_t mp_build_map(int n_args);
48mp_obj_t mp_store_map(mp_obj_t map, mp_obj_t key, mp_obj_t value);
49mp_obj_t mp_load_attr(mp_obj_t base, qstr attr);
50void mp_load_method(mp_obj_t base, qstr attr, mp_obj_t *dest);
51void mp_store_attr(mp_obj_t base, qstr attr, mp_obj_t val);
52void mp_store_subscr(mp_obj_t base, mp_obj_t index, mp_obj_t val);
53
54mp_obj_t mp_getiter(mp_obj_t o);
55mp_obj_t mp_iternext_allow_raise(mp_obj_t o); // may return MP_OBJ_NULL instead of raising StopIteration()
56mp_obj_t mp_iternext(mp_obj_t o); // will always return MP_OBJ_NULL instead of raising StopIteration(...)
57
58mp_obj_t mp_make_raise_obj(mp_obj_t o);
59
60extern mp_obj_t mp_sys_path;
61struct _mp_map_t *mp_loaded_modules_get(void);
62mp_obj_t mp_import_name(qstr name, mp_obj_t fromlist, mp_obj_t level);
63mp_obj_t mp_import_from(mp_obj_t module, qstr name);
64void mp_import_all(mp_obj_t module);