2013-10-16 11:12:52 -04:00
|
|
|
// in principle, rt_xxx functions are called only by vm/native/viper and make assumptions about args
|
2013-12-21 13:17:45 -05:00
|
|
|
// mp_xxx functions are safer and can be called by anyone
|
2013-10-16 15:39:12 -04:00
|
|
|
// note that rt_assign_xxx are called only from emit*, and maybe we can rename them to reflect this
|
2013-10-16 11:12:52 -04:00
|
|
|
|
2013-10-04 14:53:11 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2013-10-15 17:25:17 -04:00
|
|
|
#include "nlr.h"
|
2013-10-04 14:53:11 -04:00
|
|
|
#include "misc.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "mpconfig.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "obj.h"
|
|
|
|
#include "runtime0.h"
|
2013-10-04 14:53:11 -04:00
|
|
|
#include "runtime.h"
|
2013-12-17 13:27:24 -05:00
|
|
|
#include "map.h"
|
|
|
|
#include "builtin.h"
|
2014-01-18 12:24:47 -05:00
|
|
|
#include "objarray.h"
|
2014-01-22 09:35:10 -05:00
|
|
|
#include "bc.h"
|
2013-12-17 13:27:24 -05:00
|
|
|
|
2013-10-10 06:24:39 -04:00
|
|
|
#if 0 // print debugging info
|
2013-10-10 18:25:50 -04:00
|
|
|
#define DEBUG_PRINT (1)
|
2013-11-17 08:16:36 -05:00
|
|
|
#define WRITE_CODE (1)
|
2013-10-10 06:24:39 -04:00
|
|
|
#define DEBUG_printf(args...) printf(args)
|
|
|
|
#define DEBUG_OP_printf(args...) printf(args)
|
|
|
|
#else // don't print debugging info
|
2013-10-09 18:10:10 -04:00
|
|
|
#define DEBUG_printf(args...) (void)0
|
2013-10-04 14:53:11 -04:00
|
|
|
#define DEBUG_OP_printf(args...) (void)0
|
2013-10-10 06:24:39 -04:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2013-10-10 17:06:54 -04:00
|
|
|
// locals and globals need to be pointers because they can be the same in outer module scope
|
2013-12-21 13:17:45 -05:00
|
|
|
static mp_map_t *map_locals;
|
|
|
|
static mp_map_t *map_globals;
|
|
|
|
static mp_map_t map_builtins;
|
2014-01-22 18:59:20 -05:00
|
|
|
static mp_map_t map_loaded_modules; // TODO: expose as sys.modules
|
2013-10-16 15:39:12 -04:00
|
|
|
|
2013-10-04 14:53:11 -04:00
|
|
|
typedef enum {
|
2013-12-21 13:17:45 -05:00
|
|
|
MP_CODE_NONE,
|
|
|
|
MP_CODE_BYTE,
|
|
|
|
MP_CODE_NATIVE,
|
|
|
|
MP_CODE_INLINE_ASM,
|
|
|
|
} mp_code_kind_t;
|
|
|
|
|
|
|
|
typedef struct _mp_code_t {
|
2014-01-29 15:30:52 -05:00
|
|
|
struct {
|
|
|
|
mp_code_kind_t kind : 8;
|
|
|
|
bool is_generator : 1;
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
uint n_args : 16;
|
|
|
|
uint n_state : 16;
|
|
|
|
};
|
2013-10-04 14:53:11 -04:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
byte *code;
|
|
|
|
uint len;
|
|
|
|
} u_byte;
|
2013-10-05 18:17:28 -04:00
|
|
|
struct {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_fun_t fun;
|
2013-10-05 18:17:28 -04:00
|
|
|
} u_native;
|
|
|
|
struct {
|
2013-10-06 07:04:13 -04:00
|
|
|
void *fun;
|
2013-10-05 18:17:28 -04:00
|
|
|
} u_inline_asm;
|
2013-10-04 14:53:11 -04:00
|
|
|
};
|
2013-12-21 13:17:45 -05:00
|
|
|
} mp_code_t;
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2014-01-29 15:30:52 -05:00
|
|
|
static uint next_unique_code_id;
|
2014-01-07 18:06:46 -05:00
|
|
|
static machine_uint_t unique_codes_alloc = 0;
|
|
|
|
static mp_code_t *unique_codes = NULL;
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2013-11-17 08:16:36 -05:00
|
|
|
#ifdef WRITE_CODE
|
|
|
|
FILE *fp_write_code = NULL;
|
2013-10-10 18:25:50 -04:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2014-01-08 12:33:12 -05:00
|
|
|
// a good optimising compiler will inline this if necessary
|
|
|
|
static void mp_map_add_qstr(mp_map_t *map, qstr qstr, mp_obj_t value) {
|
|
|
|
mp_map_lookup(map, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = value;
|
|
|
|
}
|
|
|
|
|
2013-10-23 15:20:17 -04:00
|
|
|
void rt_init(void) {
|
2013-10-10 17:06:54 -04:00
|
|
|
// locals = globals for outer module (see Objects/frameobject.c/PyFrame_New())
|
2014-01-08 12:33:12 -05:00
|
|
|
map_locals = map_globals = mp_map_new(1);
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_map_add_qstr(map_globals, MP_QSTR___name__, MP_OBJ_NEW_QSTR(MP_QSTR___main__));
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2013-12-29 12:17:43 -05:00
|
|
|
// init built-in hash table
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_init(&map_builtins, 3);
|
2013-12-29 12:17:43 -05:00
|
|
|
|
2014-01-22 18:59:20 -05:00
|
|
|
// init loaded modules table
|
|
|
|
mp_map_init(&map_loaded_modules, 3);
|
|
|
|
|
2014-01-24 19:17:36 -05:00
|
|
|
// built-in exceptions (TODO, make these proper classes, and const if possible)
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_AttributeError, mp_obj_new_exception(MP_QSTR_AttributeError));
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_IndexError, mp_obj_new_exception(MP_QSTR_IndexError));
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_KeyError, mp_obj_new_exception(MP_QSTR_KeyError));
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_NameError, mp_obj_new_exception(MP_QSTR_NameError));
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_TypeError, mp_obj_new_exception(MP_QSTR_TypeError));
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_SyntaxError, mp_obj_new_exception(MP_QSTR_SyntaxError));
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_ValueError, mp_obj_new_exception(MP_QSTR_ValueError));
|
2014-01-18 05:46:43 -05:00
|
|
|
// Somehow CPython managed to have OverflowError not inherit from ValueError ;-/
|
|
|
|
// TODO: For MICROPY_CPYTHON_COMPAT==0 use ValueError to avoid exc proliferation
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_OverflowError, mp_obj_new_exception(MP_QSTR_OverflowError));
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_OSError, mp_obj_new_exception(MP_QSTR_OSError));
|
2014-01-11 09:33:32 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_AssertionError, mp_obj_new_exception(MP_QSTR_AssertionError));
|
2014-01-24 19:17:36 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_StopIteration, mp_obj_new_exception(MP_QSTR_StopIteration));
|
2013-12-29 12:17:43 -05:00
|
|
|
|
2014-01-04 13:44:46 -05:00
|
|
|
// built-in objects
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_Ellipsis, mp_const_ellipsis);
|
2014-01-04 13:44:46 -05:00
|
|
|
|
2013-12-29 12:17:43 -05:00
|
|
|
// built-in core functions
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR___build_class__, (mp_obj_t)&mp_builtin___build_class___obj);
|
2014-01-13 14:39:01 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR___repl_print__, (mp_obj_t)&mp_builtin___repl_print___obj);
|
2013-12-29 12:17:43 -05:00
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
// built-in types
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_bool, (mp_obj_t)&bool_type);
|
2014-01-04 15:21:15 -05:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_complex, (mp_obj_t)&complex_type);
|
2014-01-04 15:21:15 -05:00
|
|
|
#endif
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_dict, (mp_obj_t)&dict_type);
|
2014-01-14 18:55:01 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_enumerate, (mp_obj_t)&enumerate_type);
|
2014-01-14 20:37:08 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_filter, (mp_obj_t)&filter_type);
|
2014-01-04 15:21:15 -05:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_float, (mp_obj_t)&float_type);
|
2014-01-04 15:21:15 -05:00
|
|
|
#endif
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_int, (mp_obj_t)&int_type);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_list, (mp_obj_t)&list_type);
|
2014-01-14 20:10:09 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_map, (mp_obj_t)&map_type);
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_set, (mp_obj_t)&set_type);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_tuple, (mp_obj_t)&tuple_type);
|
2014-01-08 13:48:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_type, (mp_obj_t)&mp_const_type);
|
2014-01-12 21:31:00 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_zip, (mp_obj_t)&zip_type);
|
2014-01-04 15:21:15 -05:00
|
|
|
|
2014-01-18 12:24:47 -05:00
|
|
|
mp_obj_t m_array = mp_obj_new_module(MP_QSTR_array);
|
|
|
|
rt_store_attr(m_array, MP_QSTR_array, (mp_obj_t)&array_type);
|
|
|
|
|
2014-01-13 14:39:01 -05:00
|
|
|
// built-in user functions
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_abs, (mp_obj_t)&mp_builtin_abs_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_all, (mp_obj_t)&mp_builtin_all_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_any, (mp_obj_t)&mp_builtin_any_obj);
|
2014-01-20 13:32:50 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_bytes, (mp_obj_t)&mp_builtin_bytes_obj);
|
2014-01-13 14:39:01 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_callable, (mp_obj_t)&mp_builtin_callable_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_chr, (mp_obj_t)&mp_builtin_chr_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_divmod, (mp_obj_t)&mp_builtin_divmod_obj);
|
2014-01-15 17:14:03 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_eval, (mp_obj_t)&mp_builtin_eval_obj);
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_hash, (mp_obj_t)&mp_builtin_hash_obj);
|
2014-01-09 16:43:51 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_isinstance, (mp_obj_t)&mp_builtin_isinstance_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_issubclass, (mp_obj_t)&mp_builtin_issubclass_obj);
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_iter, (mp_obj_t)&mp_builtin_iter_obj);
|
2014-01-13 14:39:01 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_len, (mp_obj_t)&mp_builtin_len_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_max, (mp_obj_t)&mp_builtin_max_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_min, (mp_obj_t)&mp_builtin_min_obj);
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_next, (mp_obj_t)&mp_builtin_next_obj);
|
2014-01-13 14:39:01 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_ord, (mp_obj_t)&mp_builtin_ord_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_pow, (mp_obj_t)&mp_builtin_pow_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_print, (mp_obj_t)&mp_builtin_print_obj);
|
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_range, (mp_obj_t)&mp_builtin_range_obj);
|
2014-01-15 16:40:48 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_repr, (mp_obj_t)&mp_builtin_repr_obj);
|
2014-01-13 00:12:50 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_sorted, (mp_obj_t)&mp_builtin_sorted_obj);
|
2014-01-13 14:39:01 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_sum, (mp_obj_t)&mp_builtin_sum_obj);
|
2014-01-13 12:20:46 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_str, (mp_obj_t)&mp_builtin_str_obj);
|
2014-01-18 12:24:47 -05:00
|
|
|
mp_map_add_qstr(&map_builtins, MP_QSTR_bytearray, (mp_obj_t)&mp_builtin_bytearray_obj);
|
2014-01-04 10:57:35 -05:00
|
|
|
|
2014-01-16 12:19:50 -05:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
2014-01-19 18:57:20 -05:00
|
|
|
// Precreate sys module, so "import sys" didn't throw exceptions.
|
2014-01-21 16:40:13 -05:00
|
|
|
mp_obj_new_module(QSTR_FROM_STR_STATIC("sys"));
|
2014-01-16 12:19:50 -05:00
|
|
|
#endif
|
|
|
|
|
2014-01-20 05:30:24 -05:00
|
|
|
mp_module_micropython_init();
|
2014-01-19 18:53:15 -05:00
|
|
|
|
2014-01-24 17:04:14 -05:00
|
|
|
// TODO: wastes one mp_code_t structure in mem
|
2014-01-04 10:57:35 -05:00
|
|
|
next_unique_code_id = 1; // 0 indicates "no code"
|
2014-01-07 18:06:46 -05:00
|
|
|
unique_codes_alloc = 0;
|
2013-10-04 14:53:11 -04:00
|
|
|
unique_codes = NULL;
|
|
|
|
|
2013-11-17 08:16:36 -05:00
|
|
|
#ifdef WRITE_CODE
|
|
|
|
fp_write_code = fopen("out-code", "wb");
|
2013-10-10 18:25:50 -04:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-10-23 15:20:17 -04:00
|
|
|
void rt_deinit(void) {
|
2014-01-07 18:06:46 -05:00
|
|
|
m_del(mp_code_t, unique_codes, unique_codes_alloc);
|
2014-01-24 17:04:14 -05:00
|
|
|
mp_map_free(map_globals);
|
|
|
|
mp_map_deinit(&map_loaded_modules);
|
|
|
|
mp_map_deinit(&map_builtins);
|
2013-11-17 08:16:36 -05:00
|
|
|
#ifdef WRITE_CODE
|
|
|
|
if (fp_write_code != NULL) {
|
|
|
|
fclose(fp_write_code);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2013-10-10 18:25:50 -04:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:30:52 -05:00
|
|
|
uint rt_get_unique_code_id(void) {
|
2014-01-04 10:57:35 -05:00
|
|
|
return next_unique_code_id++;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-10-23 15:20:17 -04:00
|
|
|
static void alloc_unique_codes(void) {
|
2014-01-07 18:06:46 -05:00
|
|
|
if (next_unique_code_id > unique_codes_alloc) {
|
2014-01-29 15:30:52 -05:00
|
|
|
DEBUG_printf("allocate more unique codes: " UINT_FMT " -> %u\n", unique_codes_alloc, next_unique_code_id);
|
2014-01-07 18:06:46 -05:00
|
|
|
// increase size of unique_codes table
|
|
|
|
unique_codes = m_renew(mp_code_t, unique_codes, unique_codes_alloc, next_unique_code_id);
|
2014-01-29 15:30:52 -05:00
|
|
|
for (uint i = unique_codes_alloc; i < next_unique_code_id; i++) {
|
2013-12-21 13:17:45 -05:00
|
|
|
unique_codes[i].kind = MP_CODE_NONE;
|
2013-10-05 18:17:28 -04:00
|
|
|
}
|
2014-01-07 18:06:46 -05:00
|
|
|
unique_codes_alloc = next_unique_code_id;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2013-10-05 18:17:28 -04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:30:52 -05:00
|
|
|
void rt_assign_byte_code(uint unique_code_id, byte *code, uint len, int n_args, int n_locals, int n_stack, bool is_generator) {
|
2013-10-05 18:17:28 -04:00
|
|
|
alloc_unique_codes();
|
|
|
|
|
2014-01-07 18:06:46 -05:00
|
|
|
assert(1 <= unique_code_id && unique_code_id < next_unique_code_id && unique_codes[unique_code_id].kind == MP_CODE_NONE);
|
2013-12-21 13:17:45 -05:00
|
|
|
unique_codes[unique_code_id].kind = MP_CODE_BYTE;
|
2013-10-16 15:39:12 -04:00
|
|
|
unique_codes[unique_code_id].is_generator = is_generator;
|
2014-01-29 15:30:52 -05:00
|
|
|
unique_codes[unique_code_id].n_args = n_args;
|
|
|
|
unique_codes[unique_code_id].n_state = n_locals + n_stack;
|
2013-10-05 18:17:28 -04:00
|
|
|
unique_codes[unique_code_id].u_byte.code = code;
|
|
|
|
unique_codes[unique_code_id].u_byte.len = len;
|
|
|
|
|
2013-12-10 19:41:43 -05:00
|
|
|
//printf("byte code: %d bytes\n", len);
|
2013-11-17 08:16:36 -05:00
|
|
|
|
|
|
|
#ifdef DEBUG_PRINT
|
2014-01-29 13:58:52 -05:00
|
|
|
DEBUG_printf("assign byte code: id=%d code=%p len=%u n_args=%d n_locals=%d n_stack=%d\n", unique_code_id, code, len, n_args, n_locals, n_stack);
|
2013-11-17 08:16:36 -05:00
|
|
|
for (int i = 0; i < 128 && i < len; i++) {
|
|
|
|
if (i > 0 && i % 16 == 0) {
|
|
|
|
DEBUG_printf("\n");
|
|
|
|
}
|
|
|
|
DEBUG_printf(" %02x", code[i]);
|
|
|
|
}
|
|
|
|
DEBUG_printf("\n");
|
2014-01-19 06:48:48 -05:00
|
|
|
#if MICROPY_DEBUG_PRINTERS
|
|
|
|
mp_byte_code_print(code, len);
|
2014-01-09 15:57:50 -05:00
|
|
|
#endif
|
2013-11-17 08:16:36 -05:00
|
|
|
|
|
|
|
#ifdef WRITE_CODE
|
|
|
|
if (fp_write_code != NULL) {
|
|
|
|
fwrite(code, len, 1, fp_write_code);
|
|
|
|
fflush(fp_write_code);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2013-10-05 18:17:28 -04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:30:52 -05:00
|
|
|
void rt_assign_native_code(uint unique_code_id, void *fun, uint len, int n_args) {
|
2013-10-05 18:17:28 -04:00
|
|
|
alloc_unique_codes();
|
|
|
|
|
2014-01-07 18:06:46 -05:00
|
|
|
assert(1 <= unique_code_id && unique_code_id < next_unique_code_id && unique_codes[unique_code_id].kind == MP_CODE_NONE);
|
2013-12-21 13:17:45 -05:00
|
|
|
unique_codes[unique_code_id].kind = MP_CODE_NATIVE;
|
2013-10-16 15:39:12 -04:00
|
|
|
unique_codes[unique_code_id].is_generator = false;
|
2014-01-29 15:30:52 -05:00
|
|
|
unique_codes[unique_code_id].n_args = n_args;
|
|
|
|
unique_codes[unique_code_id].n_state = 0;
|
2013-10-04 14:53:11 -04:00
|
|
|
unique_codes[unique_code_id].u_native.fun = fun;
|
|
|
|
|
2013-12-30 13:23:50 -05:00
|
|
|
//printf("native code: %d bytes\n", len);
|
2013-11-17 08:16:36 -05:00
|
|
|
|
2013-10-10 18:25:50 -04:00
|
|
|
#ifdef DEBUG_PRINT
|
2013-10-04 14:53:11 -04:00
|
|
|
DEBUG_printf("assign native code: id=%d fun=%p len=%u n_args=%d\n", unique_code_id, fun, len, n_args);
|
|
|
|
byte *fun_data = (byte*)(((machine_uint_t)fun) & (~1)); // need to clear lower bit in case it's thumb code
|
|
|
|
for (int i = 0; i < 128 && i < len; i++) {
|
|
|
|
if (i > 0 && i % 16 == 0) {
|
|
|
|
DEBUG_printf("\n");
|
|
|
|
}
|
|
|
|
DEBUG_printf(" %02x", fun_data[i]);
|
|
|
|
}
|
|
|
|
DEBUG_printf("\n");
|
|
|
|
|
2013-11-17 08:16:36 -05:00
|
|
|
#ifdef WRITE_CODE
|
|
|
|
if (fp_write_code != NULL) {
|
|
|
|
fwrite(fun_data, len, 1, fp_write_code);
|
|
|
|
fflush(fp_write_code);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2013-10-10 18:25:50 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:30:52 -05:00
|
|
|
void rt_assign_inline_asm_code(uint unique_code_id, void *fun, uint len, int n_args) {
|
2013-10-05 18:17:28 -04:00
|
|
|
alloc_unique_codes();
|
|
|
|
|
2014-01-07 18:06:46 -05:00
|
|
|
assert(1 <= unique_code_id && unique_code_id < next_unique_code_id && unique_codes[unique_code_id].kind == MP_CODE_NONE);
|
2013-12-21 13:17:45 -05:00
|
|
|
unique_codes[unique_code_id].kind = MP_CODE_INLINE_ASM;
|
2013-10-16 15:39:12 -04:00
|
|
|
unique_codes[unique_code_id].is_generator = false;
|
2014-01-29 15:30:52 -05:00
|
|
|
unique_codes[unique_code_id].n_args = n_args;
|
|
|
|
unique_codes[unique_code_id].n_state = 0;
|
2013-10-05 18:17:28 -04:00
|
|
|
unique_codes[unique_code_id].u_inline_asm.fun = fun;
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2013-10-10 18:25:50 -04:00
|
|
|
#ifdef DEBUG_PRINT
|
2013-10-05 18:17:28 -04:00
|
|
|
DEBUG_printf("assign inline asm code: id=%d fun=%p len=%u n_args=%d\n", unique_code_id, fun, len, n_args);
|
|
|
|
byte *fun_data = (byte*)(((machine_uint_t)fun) & (~1)); // need to clear lower bit in case it's thumb code
|
|
|
|
for (int i = 0; i < 128 && i < len; i++) {
|
|
|
|
if (i > 0 && i % 16 == 0) {
|
|
|
|
DEBUG_printf("\n");
|
|
|
|
}
|
|
|
|
DEBUG_printf(" %02x", fun_data[i]);
|
|
|
|
}
|
|
|
|
DEBUG_printf("\n");
|
|
|
|
|
2013-11-17 08:16:36 -05:00
|
|
|
#ifdef WRITE_CODE
|
|
|
|
if (fp_write_code != NULL) {
|
|
|
|
fwrite(fun_data, len, 1, fp_write_code);
|
2013-10-05 18:17:28 -04:00
|
|
|
}
|
2013-10-10 18:25:50 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
int rt_is_true(mp_obj_t arg) {
|
|
|
|
DEBUG_OP_printf("is true %p\n", arg);
|
2014-01-30 05:05:33 -05:00
|
|
|
if (arg == mp_const_false) {
|
|
|
|
return 0;
|
|
|
|
} else if (arg == mp_const_true) {
|
|
|
|
return 1;
|
|
|
|
} else if (arg == mp_const_none) {
|
|
|
|
return 0;
|
|
|
|
} else if (MP_OBJ_IS_SMALL_INT(arg)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
if (MP_OBJ_SMALL_INT_VALUE(arg) == 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
2014-01-29 21:37:19 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(arg);
|
|
|
|
if (type->unary_op != NULL) {
|
|
|
|
mp_obj_t result = type->unary_op(RT_UNARY_OP_BOOL, arg);
|
2014-01-30 05:05:33 -05:00
|
|
|
if (result != MP_OBJ_NULL) {
|
2014-01-29 21:37:19 -05:00
|
|
|
return result == mp_const_true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-28 18:27:35 -05:00
|
|
|
mp_obj_t len = mp_obj_len_maybe(arg);
|
|
|
|
if (len != MP_OBJ_NULL) {
|
|
|
|
// obj has a length, truth determined if len != 0
|
|
|
|
return len != MP_OBJ_NEW_SMALL_INT(0);
|
|
|
|
} else {
|
2014-01-29 21:37:19 -05:00
|
|
|
// any other obj is true per Python semantics
|
2014-01-28 18:27:35 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t rt_list_append(mp_obj_t self_in, mp_obj_t arg) {
|
|
|
|
return mp_obj_list_append(self_in, arg);
|
|
|
|
}
|
|
|
|
|
2013-11-02 15:47:57 -04:00
|
|
|
#define PARSE_DEC_IN_INTG (1)
|
|
|
|
#define PARSE_DEC_IN_FRAC (2)
|
|
|
|
#define PARSE_DEC_IN_EXP (3)
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_load_const_dec(qstr qstr) {
|
2013-11-02 15:47:57 -04:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
|
|
|
DEBUG_OP_printf("load '%s'\n", qstr_str(qstr));
|
|
|
|
const char *s = qstr_str(qstr);
|
|
|
|
int in = PARSE_DEC_IN_INTG;
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_float_t dec_val = 0;
|
2013-11-02 15:47:57 -04:00
|
|
|
bool exp_neg = false;
|
|
|
|
int exp_val = 0;
|
|
|
|
int exp_extra = 0;
|
|
|
|
bool imag = false;
|
|
|
|
for (; *s; s++) {
|
|
|
|
int dig = *s;
|
|
|
|
if ('0' <= dig && dig <= '9') {
|
|
|
|
dig -= '0';
|
|
|
|
if (in == PARSE_DEC_IN_EXP) {
|
|
|
|
exp_val = 10 * exp_val + dig;
|
|
|
|
} else {
|
|
|
|
dec_val = 10 * dec_val + dig;
|
|
|
|
if (in == PARSE_DEC_IN_FRAC) {
|
|
|
|
exp_extra -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (in == PARSE_DEC_IN_INTG && dig == '.') {
|
|
|
|
in = PARSE_DEC_IN_FRAC;
|
|
|
|
} else if (in != PARSE_DEC_IN_EXP && (dig == 'E' || dig == 'e')) {
|
|
|
|
in = PARSE_DEC_IN_EXP;
|
|
|
|
if (s[1] == '+') {
|
|
|
|
s++;
|
|
|
|
} else if (s[1] == '-') {
|
|
|
|
s++;
|
|
|
|
exp_neg = true;
|
|
|
|
}
|
|
|
|
} else if (dig == 'J' || dig == 'j') {
|
|
|
|
s++;
|
|
|
|
imag = true;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
// unknown character
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*s != 0) {
|
2014-01-04 10:57:35 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_SyntaxError, "invalid syntax for number"));
|
2013-11-02 15:47:57 -04:00
|
|
|
}
|
|
|
|
if (exp_neg) {
|
|
|
|
exp_val = -exp_val;
|
|
|
|
}
|
|
|
|
exp_val += exp_extra;
|
|
|
|
for (; exp_val > 0; exp_val--) {
|
|
|
|
dec_val *= 10;
|
|
|
|
}
|
|
|
|
for (; exp_val < 0; exp_val++) {
|
|
|
|
dec_val *= 0.1;
|
|
|
|
}
|
|
|
|
if (imag) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_obj_new_complex(0, dec_val);
|
2013-11-02 15:47:57 -04:00
|
|
|
} else {
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_obj_new_float(dec_val);
|
2013-11-02 15:47:57 -04:00
|
|
|
}
|
|
|
|
#else
|
2014-01-04 10:57:35 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_SyntaxError, "decimal numbers not supported"));
|
2013-11-02 15:47:57 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_load_const_str(qstr qstr) {
|
2013-10-04 14:53:11 -04:00
|
|
|
DEBUG_OP_printf("load '%s'\n", qstr_str(qstr));
|
2014-01-22 09:35:10 -05:00
|
|
|
return MP_OBJ_NEW_QSTR(qstr);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2014-01-24 15:50:40 -05:00
|
|
|
mp_obj_t rt_load_const_bytes(qstr qstr) {
|
|
|
|
DEBUG_OP_printf("load b'%s'\n", qstr_str(qstr));
|
|
|
|
uint len;
|
|
|
|
const byte *data = qstr_data(qstr, &len);
|
|
|
|
return mp_obj_new_bytes(data, len);
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_load_name(qstr qstr) {
|
2013-10-04 14:53:11 -04:00
|
|
|
// logic: search locals, globals, builtins
|
2013-10-09 18:10:10 -04:00
|
|
|
DEBUG_OP_printf("load name %s\n", qstr_str(qstr));
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_elem_t *elem = mp_map_lookup(map_locals, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP);
|
2013-10-04 14:53:11 -04:00
|
|
|
if (elem == NULL) {
|
2014-01-08 12:33:12 -05:00
|
|
|
elem = mp_map_lookup(map_globals, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP);
|
2013-10-04 14:53:11 -04:00
|
|
|
if (elem == NULL) {
|
2014-01-08 12:33:12 -05:00
|
|
|
elem = mp_map_lookup(&map_builtins, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP);
|
2013-10-09 18:10:10 -04:00
|
|
|
if (elem == NULL) {
|
2014-01-08 13:11:23 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_NameError, "name '%s' is not defined", qstr_str(qstr)));
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return elem->value;
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_load_global(qstr qstr) {
|
2013-10-09 18:10:10 -04:00
|
|
|
// logic: search globals, builtins
|
|
|
|
DEBUG_OP_printf("load global %s\n", qstr_str(qstr));
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_elem_t *elem = mp_map_lookup(map_globals, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP);
|
2013-10-09 18:10:10 -04:00
|
|
|
if (elem == NULL) {
|
2014-01-08 12:33:12 -05:00
|
|
|
elem = mp_map_lookup(&map_builtins, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP);
|
2013-10-09 18:10:10 -04:00
|
|
|
if (elem == NULL) {
|
2014-01-08 13:11:23 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_NameError, "name '%s' is not defined", qstr_str(qstr)));
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return elem->value;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_load_build_class(void) {
|
2013-10-04 14:53:11 -04:00
|
|
|
DEBUG_OP_printf("load_build_class\n");
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_elem_t *elem = mp_map_lookup(&map_builtins, MP_OBJ_NEW_QSTR(MP_QSTR___build_class__), MP_MAP_LOOKUP);
|
2013-10-04 14:53:11 -04:00
|
|
|
if (elem == NULL) {
|
2014-01-04 10:57:35 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_NameError, "name '__build_class__' is not defined"));
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
return elem->value;
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_get_cell(mp_obj_t cell) {
|
|
|
|
return mp_obj_cell_get(cell);
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void rt_set_cell(mp_obj_t cell, mp_obj_t val) {
|
|
|
|
mp_obj_cell_set(cell, val);
|
2013-12-17 13:27:24 -05:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void rt_store_name(qstr qstr, mp_obj_t obj) {
|
2013-10-09 18:10:10 -04:00
|
|
|
DEBUG_OP_printf("store name %s <- %p\n", qstr_str(qstr), obj);
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_lookup(map_locals, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = obj;
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void rt_store_global(qstr qstr, mp_obj_t obj) {
|
2013-10-09 18:10:10 -04:00
|
|
|
DEBUG_OP_printf("store global %s <- %p\n", qstr_str(qstr), obj);
|
2014-01-08 12:33:12 -05:00
|
|
|
mp_map_lookup(map_globals, MP_OBJ_NEW_QSTR(qstr), MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = obj;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_unary_op(int op, mp_obj_t arg) {
|
2013-11-02 15:47:57 -04:00
|
|
|
DEBUG_OP_printf("unary %d %p\n", op, arg);
|
2013-12-21 13:17:45 -05:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(arg)) {
|
|
|
|
mp_small_int_t val = MP_OBJ_SMALL_INT_VALUE(arg);
|
2013-11-02 15:47:57 -04:00
|
|
|
switch (op) {
|
2014-01-29 21:37:19 -05:00
|
|
|
case RT_UNARY_OP_BOOL: return MP_BOOL(val != 0);
|
2013-11-02 15:47:57 -04:00
|
|
|
case RT_UNARY_OP_POSITIVE: break;
|
|
|
|
case RT_UNARY_OP_NEGATIVE: val = -val; break;
|
|
|
|
case RT_UNARY_OP_INVERT: val = ~val; break;
|
|
|
|
default: assert(0); val = 0;
|
|
|
|
}
|
2014-01-12 10:06:25 -05:00
|
|
|
if (MP_OBJ_FITS_SMALL_INT(val)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(val);
|
|
|
|
}
|
2014-01-12 10:06:25 -05:00
|
|
|
return mp_obj_new_int(val);
|
2014-01-23 13:27:51 -05:00
|
|
|
} else {
|
|
|
|
mp_obj_type_t *type = mp_obj_get_type(arg);
|
|
|
|
if (type->unary_op != NULL) {
|
|
|
|
mp_obj_t result = type->unary_op(op, arg);
|
2013-12-21 13:17:45 -05:00
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
2013-11-02 15:47:57 -04:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
// TODO specify in error message what the operator is
|
2014-01-23 13:27:51 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "bad operand type for unary operator: '%s'", type->name));
|
2013-11-02 15:47:57 -04:00
|
|
|
}
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) {
|
2013-10-04 14:53:11 -04:00
|
|
|
DEBUG_OP_printf("binary %d %p %p\n", op, lhs, rhs);
|
2014-01-03 09:09:31 -05:00
|
|
|
|
|
|
|
// TODO correctly distinguish inplace operators for mutable objects
|
|
|
|
// lookup logic that CPython uses for +=:
|
|
|
|
// check for implemented +=
|
|
|
|
// then check for implemented +
|
|
|
|
// then check for implemented seq.inplace_concat
|
|
|
|
// then check for implemented seq.concat
|
|
|
|
// then fail
|
|
|
|
// note that list does not implement + or +=, so that inplace_concat is reached first for +=
|
|
|
|
|
2014-01-14 17:31:28 -05:00
|
|
|
// deal with is, is not
|
|
|
|
if (op == RT_COMPARE_OP_IS) {
|
|
|
|
// TODO: may need to handle strings specially, CPython appears to
|
|
|
|
// assume all strings are interned (so "is" == "==" for strings)
|
|
|
|
return MP_BOOL(lhs == rhs);
|
|
|
|
}
|
|
|
|
if (op == RT_COMPARE_OP_IS_NOT) {
|
|
|
|
// TODO: may need to handle strings specially, CPython appears to
|
|
|
|
// assume all strings are interned (so "is" == "==" for strings)
|
|
|
|
return MP_BOOL(lhs != rhs);
|
|
|
|
}
|
|
|
|
|
2014-01-11 05:47:22 -05:00
|
|
|
// deal with == and != for all types
|
|
|
|
if (op == RT_COMPARE_OP_EQUAL || op == RT_COMPARE_OP_NOT_EQUAL) {
|
|
|
|
if (mp_obj_equal(lhs, rhs)) {
|
|
|
|
if (op == RT_COMPARE_OP_EQUAL) {
|
|
|
|
return mp_const_true;
|
|
|
|
} else {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (op == RT_COMPARE_OP_EQUAL) {
|
|
|
|
return mp_const_false;
|
|
|
|
} else {
|
|
|
|
return mp_const_true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// deal with exception_match for all types
|
|
|
|
if (op == RT_COMPARE_OP_EXCEPTION_MATCH) {
|
|
|
|
// TODO properly! at the moment it just compares the exception identifier for equality
|
|
|
|
if (MP_OBJ_IS_TYPE(lhs, &exception_type) && MP_OBJ_IS_TYPE(rhs, &exception_type)) {
|
|
|
|
if (mp_obj_exception_get_type(lhs) == mp_obj_exception_get_type(rhs)) {
|
|
|
|
return mp_const_true;
|
|
|
|
} else {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-06 17:13:00 -05:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(lhs)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_small_int_t lhs_val = MP_OBJ_SMALL_INT_VALUE(lhs);
|
2014-01-06 17:13:00 -05:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(rhs)) {
|
|
|
|
mp_small_int_t rhs_val = MP_OBJ_SMALL_INT_VALUE(rhs);
|
|
|
|
switch (op) {
|
|
|
|
case RT_BINARY_OP_OR:
|
|
|
|
case RT_BINARY_OP_INPLACE_OR: lhs_val |= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_XOR:
|
|
|
|
case RT_BINARY_OP_INPLACE_XOR: lhs_val ^= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_AND:
|
|
|
|
case RT_BINARY_OP_INPLACE_AND: lhs_val &= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_LSHIFT:
|
|
|
|
case RT_BINARY_OP_INPLACE_LSHIFT: lhs_val <<= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_RSHIFT:
|
|
|
|
case RT_BINARY_OP_INPLACE_RSHIFT: lhs_val >>= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_ADD:
|
|
|
|
case RT_BINARY_OP_INPLACE_ADD: lhs_val += rhs_val; break;
|
|
|
|
case RT_BINARY_OP_SUBTRACT:
|
|
|
|
case RT_BINARY_OP_INPLACE_SUBTRACT: lhs_val -= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_MULTIPLY:
|
|
|
|
case RT_BINARY_OP_INPLACE_MULTIPLY: lhs_val *= rhs_val; break;
|
|
|
|
case RT_BINARY_OP_FLOOR_DIVIDE:
|
|
|
|
case RT_BINARY_OP_INPLACE_FLOOR_DIVIDE: lhs_val /= rhs_val; break;
|
|
|
|
#if MICROPY_ENABLE_FLOAT
|
|
|
|
case RT_BINARY_OP_TRUE_DIVIDE:
|
|
|
|
case RT_BINARY_OP_INPLACE_TRUE_DIVIDE: return mp_obj_new_float((mp_float_t)lhs_val / (mp_float_t)rhs_val);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// TODO implement modulo as specified by Python
|
|
|
|
case RT_BINARY_OP_MODULO:
|
|
|
|
case RT_BINARY_OP_INPLACE_MODULO: lhs_val %= rhs_val; break;
|
|
|
|
|
|
|
|
// TODO check for negative power, and overflow
|
|
|
|
case RT_BINARY_OP_POWER:
|
|
|
|
case RT_BINARY_OP_INPLACE_POWER:
|
|
|
|
{
|
|
|
|
int ans = 1;
|
|
|
|
while (rhs_val > 0) {
|
|
|
|
if (rhs_val & 1) {
|
|
|
|
ans *= lhs_val;
|
|
|
|
}
|
|
|
|
lhs_val *= lhs_val;
|
|
|
|
rhs_val /= 2;
|
2013-12-17 16:35:38 -05:00
|
|
|
}
|
2014-01-06 17:13:00 -05:00
|
|
|
lhs_val = ans;
|
|
|
|
break;
|
2013-11-02 10:33:10 -04:00
|
|
|
}
|
2014-01-10 19:58:59 -05:00
|
|
|
case RT_COMPARE_OP_LESS: return MP_BOOL(lhs_val < rhs_val); break;
|
|
|
|
case RT_COMPARE_OP_MORE: return MP_BOOL(lhs_val > rhs_val); break;
|
|
|
|
case RT_COMPARE_OP_LESS_EQUAL: return MP_BOOL(lhs_val <= rhs_val); break;
|
|
|
|
case RT_COMPARE_OP_MORE_EQUAL: return MP_BOOL(lhs_val >= rhs_val); break;
|
2013-12-17 16:35:38 -05:00
|
|
|
|
2014-01-06 17:13:00 -05:00
|
|
|
default: assert(0);
|
|
|
|
}
|
2014-01-12 10:06:25 -05:00
|
|
|
// TODO: We just should make mp_obj_new_int() inline and use that
|
|
|
|
if (MP_OBJ_FITS_SMALL_INT(lhs_val)) {
|
2014-01-06 17:13:00 -05:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(lhs_val);
|
|
|
|
}
|
2014-01-12 10:06:25 -05:00
|
|
|
return mp_obj_new_int(lhs_val);
|
2014-01-30 19:42:12 -05:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
2014-01-06 17:13:00 -05:00
|
|
|
} else if (MP_OBJ_IS_TYPE(rhs, &float_type)) {
|
|
|
|
return mp_obj_float_binary_op(op, lhs_val, rhs);
|
|
|
|
} else if (MP_OBJ_IS_TYPE(rhs, &complex_type)) {
|
|
|
|
return mp_obj_complex_binary_op(op, lhs_val, 0, rhs);
|
2014-01-30 19:42:12 -05:00
|
|
|
#endif
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-11 07:39:33 -05:00
|
|
|
}
|
2013-11-02 10:33:10 -04:00
|
|
|
|
2014-01-11 07:39:33 -05:00
|
|
|
/* deal with `in` and `not in`
|
|
|
|
*
|
|
|
|
* NOTE `a in b` is `b.__contains__(a)`, hence why the generic dispatch
|
|
|
|
* needs to go below
|
|
|
|
*/
|
|
|
|
if (op == RT_COMPARE_OP_IN || op == RT_COMPARE_OP_NOT_IN) {
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(rhs);
|
|
|
|
if (type->binary_op != NULL) {
|
|
|
|
mp_obj_t res = type->binary_op(op, rhs, lhs);
|
|
|
|
if (res != NULL) {
|
|
|
|
return res;
|
2014-01-10 19:58:59 -05:00
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
}
|
|
|
|
if (type->getiter != NULL) {
|
|
|
|
/* second attempt, walk the iterator */
|
|
|
|
mp_obj_t next = NULL;
|
|
|
|
mp_obj_t iter = rt_getiter(rhs);
|
|
|
|
while ((next = rt_iternext(iter)) != mp_const_stop_iteration) {
|
|
|
|
if (mp_obj_equal(next, lhs)) {
|
|
|
|
return MP_BOOL(op == RT_COMPARE_OP_IN);
|
2014-01-10 19:58:59 -05:00
|
|
|
}
|
2014-01-11 07:39:33 -05:00
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
return MP_BOOL(op != RT_COMPARE_OP_IN);
|
2014-01-11 07:39:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(
|
|
|
|
MP_QSTR_TypeError, "'%s' object is not iterable",
|
|
|
|
mp_obj_get_type_str(rhs)));
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
// generic binary_op supplied by type
|
|
|
|
mp_obj_type_t *type = mp_obj_get_type(lhs);
|
|
|
|
if (type->binary_op != NULL) {
|
|
|
|
mp_obj_t result = type->binary_op(op, lhs, rhs);
|
|
|
|
if (result != MP_OBJ_NULL) {
|
|
|
|
return result;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
}
|
2013-10-22 11:53:02 -04:00
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
// TODO implement dispatch for reverse binary ops
|
|
|
|
|
2014-01-10 19:58:59 -05:00
|
|
|
// TODO specify in error message what the operator is
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError,
|
|
|
|
"unsupported operand types for binary operator: '%s', '%s'",
|
|
|
|
mp_obj_get_type_str(lhs), mp_obj_get_type_str(rhs)));
|
2014-01-11 07:39:33 -05:00
|
|
|
return mp_const_none;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_make_function_from_id(int unique_code_id) {
|
2013-10-05 08:37:10 -04:00
|
|
|
DEBUG_OP_printf("make_function_from_id %d\n", unique_code_id);
|
|
|
|
if (unique_code_id < 1 || unique_code_id >= next_unique_code_id) {
|
2013-10-04 14:53:11 -04:00
|
|
|
// illegal code id
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_const_none;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
|
|
|
|
// make the function, depending on the code kind
|
|
|
|
mp_code_t *c = &unique_codes[unique_code_id];
|
|
|
|
mp_obj_t fun;
|
2013-10-04 14:53:11 -04:00
|
|
|
switch (c->kind) {
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_CODE_BYTE:
|
2014-01-29 15:30:52 -05:00
|
|
|
fun = mp_obj_new_fun_bc(c->n_args, c->n_state, c->u_byte.code);
|
2013-10-05 18:17:28 -04:00
|
|
|
break;
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_CODE_NATIVE:
|
2014-01-13 14:50:05 -05:00
|
|
|
fun = rt_make_function_n(c->n_args, c->u_native.fun);
|
2013-10-04 14:53:11 -04:00
|
|
|
break;
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_CODE_INLINE_ASM:
|
|
|
|
fun = mp_obj_new_fun_asm(c->n_args, c->u_inline_asm.fun);
|
2013-10-04 14:53:11 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
2013-12-21 13:17:45 -05:00
|
|
|
fun = mp_const_none;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2013-10-16 15:39:12 -04:00
|
|
|
|
|
|
|
// check for generator functions and if so wrap in generator object
|
|
|
|
if (c->is_generator) {
|
2014-01-29 15:30:52 -05:00
|
|
|
fun = mp_obj_new_gen_wrap(fun);
|
2013-10-16 15:39:12 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
return fun;
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_make_closure_from_id(int unique_code_id, mp_obj_t closure_tuple) {
|
2013-12-30 17:32:17 -05:00
|
|
|
DEBUG_OP_printf("make_closure_from_id %d\n", unique_code_id);
|
2013-12-21 13:17:45 -05:00
|
|
|
// make function object
|
|
|
|
mp_obj_t ffun = rt_make_function_from_id(unique_code_id);
|
2013-12-10 19:41:43 -05:00
|
|
|
// wrap function in closure object
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_obj_new_closure(ffun, closure_tuple);
|
2013-12-10 19:41:43 -05:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_call_function_0(mp_obj_t fun) {
|
2014-01-18 09:10:48 -05:00
|
|
|
return rt_call_function_n_kw(fun, 0, 0, NULL);
|
2013-10-10 17:06:54 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_call_function_1(mp_obj_t fun, mp_obj_t arg) {
|
2014-01-18 09:10:48 -05:00
|
|
|
return rt_call_function_n_kw(fun, 1, 0, &arg);
|
2013-10-10 17:06:54 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_call_function_2(mp_obj_t fun, mp_obj_t arg1, mp_obj_t arg2) {
|
|
|
|
mp_obj_t args[2];
|
2014-01-18 09:10:48 -05:00
|
|
|
args[0] = arg1;
|
|
|
|
args[1] = arg2;
|
|
|
|
return rt_call_function_n_kw(fun, 2, 0, args);
|
2013-10-10 17:06:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-18 09:10:48 -05:00
|
|
|
// args contains, eg: arg0 arg1 key0 value0 key1 value1
|
|
|
|
mp_obj_t rt_call_function_n_kw(mp_obj_t fun_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// TODO improve this: fun object can specify its type and we parse here the arguments,
|
|
|
|
// passing to the function arrays of fixed and keyword arguments
|
2013-10-10 17:06:54 -04:00
|
|
|
|
2014-01-07 18:06:46 -05:00
|
|
|
DEBUG_OP_printf("calling function %p(n_args=%d, n_kw=%d, args=%p)\n", fun_in, n_args, n_kw, args);
|
|
|
|
|
2014-01-31 18:49:49 -05:00
|
|
|
// get the type
|
|
|
|
mp_obj_type_t *type = mp_obj_get_type(fun_in);
|
|
|
|
|
|
|
|
// do the call
|
|
|
|
if (type->call != NULL) {
|
|
|
|
return type->call(fun_in, n_args, n_kw, args);
|
2014-01-07 18:06:46 -05:00
|
|
|
} else {
|
2014-01-31 18:49:49 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "'%s' object is not callable", type->name));
|
2014-01-07 18:06:46 -05:00
|
|
|
}
|
2013-11-26 10:16:41 -05:00
|
|
|
}
|
|
|
|
|
2014-01-18 09:10:48 -05:00
|
|
|
// args contains: fun self/NULL arg(0) ... arg(n_args-2) arg(n_args-1) kw_key(0) kw_val(0) ... kw_key(n_kw-1) kw_val(n_kw-1)
|
|
|
|
// if n_args==0 and n_kw==0 then there are only fun and self/NULL
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_call_method_n_kw(uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-01-18 09:10:48 -05:00
|
|
|
DEBUG_OP_printf("call method (fun=%p, self=%p, n_args=%u, n_kw=%u, args=%p)\n", args[0], args[1], n_args, n_kw, args);
|
|
|
|
int adjust = (args[1] == NULL) ? 0 : 1;
|
|
|
|
return rt_call_function_n_kw(args[0], n_args + adjust, n_kw, args + 2 - adjust);
|
2013-11-26 10:16:41 -05:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_build_tuple(int n_args, mp_obj_t *items) {
|
2014-01-18 09:10:48 -05:00
|
|
|
return mp_obj_new_tuple(n_args, items);
|
2013-10-16 11:12:52 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_build_list(int n_args, mp_obj_t *items) {
|
2014-01-18 09:10:48 -05:00
|
|
|
return mp_obj_new_list(n_args, items);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_build_set(int n_args, mp_obj_t *items) {
|
|
|
|
return mp_obj_new_set(n_args, items);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_store_set(mp_obj_t set, mp_obj_t item) {
|
2013-12-29 17:32:51 -05:00
|
|
|
mp_obj_set_store(set, item);
|
2013-10-16 15:57:49 -04:00
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
2014-01-18 18:42:49 -05:00
|
|
|
// unpacked items are stored in reverse order into the array pointed to by items
|
2013-12-21 13:17:45 -05:00
|
|
|
void rt_unpack_sequence(mp_obj_t seq_in, uint num, mp_obj_t *items) {
|
|
|
|
if (MP_OBJ_IS_TYPE(seq_in, &tuple_type) || MP_OBJ_IS_TYPE(seq_in, &list_type)) {
|
|
|
|
uint seq_len;
|
|
|
|
mp_obj_t *seq_items;
|
|
|
|
if (MP_OBJ_IS_TYPE(seq_in, &tuple_type)) {
|
|
|
|
mp_obj_tuple_get(seq_in, &seq_len, &seq_items);
|
|
|
|
} else {
|
|
|
|
mp_obj_list_get(seq_in, &seq_len, &seq_items);
|
2013-11-26 10:16:41 -05:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
if (seq_len < num) {
|
2014-01-08 13:11:23 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "need more than %d values to unpack", (void*)(machine_uint_t)seq_len));
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (seq_len > num) {
|
2014-01-08 13:11:23 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "too many values to unpack (expected %d)", (void*)(machine_uint_t)num));
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-18 18:42:49 -05:00
|
|
|
for (uint i = 0; i < num; i++) {
|
|
|
|
items[i] = seq_items[num - 1 - i];
|
|
|
|
}
|
2013-11-26 10:16:41 -05:00
|
|
|
} else {
|
|
|
|
// TODO call rt_getiter and extract via rt_iternext
|
2014-01-08 13:11:23 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "'%s' object is not iterable", mp_obj_get_type_str(seq_in)));
|
2013-11-26 10:16:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_build_map(int n_args) {
|
|
|
|
return mp_obj_new_dict(n_args);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_store_map(mp_obj_t map, mp_obj_t key, mp_obj_t value) {
|
|
|
|
// map should always be a dict
|
|
|
|
return mp_obj_dict_store(map, key, value);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_load_attr(mp_obj_t base, qstr attr) {
|
2014-01-09 15:57:50 -05:00
|
|
|
DEBUG_OP_printf("load attr %p.%s\n", base, qstr_str(attr));
|
|
|
|
// use load_method
|
|
|
|
mp_obj_t dest[2];
|
|
|
|
rt_load_method(base, attr, dest);
|
2014-01-24 19:17:36 -05:00
|
|
|
if (dest[1] == MP_OBJ_NULL) {
|
2014-01-09 15:57:50 -05:00
|
|
|
// load_method returned just a normal attribute
|
2014-01-18 09:10:48 -05:00
|
|
|
return dest[0];
|
2014-01-09 15:57:50 -05:00
|
|
|
} else {
|
|
|
|
// load_method returned a method, so build a bound method object
|
|
|
|
return mp_obj_new_bound_meth(dest[0], dest[1]);
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 19:17:36 -05:00
|
|
|
// no attribute found, returns: dest[0] == MP_OBJ_NULL, dest[1] == MP_OBJ_NULL
|
|
|
|
// normal attribute found, returns: dest[0] == <attribute>, dest[1] == MP_OBJ_NULL
|
|
|
|
// method attribute found, returns: dest[0] == <method>, dest[1] == <self>
|
|
|
|
static void rt_load_method_maybe(mp_obj_t base, qstr attr, mp_obj_t *dest) {
|
2014-01-09 15:57:50 -05:00
|
|
|
// clear output to indicate no attribute/method found yet
|
|
|
|
dest[0] = MP_OBJ_NULL;
|
|
|
|
dest[1] = MP_OBJ_NULL;
|
|
|
|
|
|
|
|
// get the type
|
|
|
|
mp_obj_type_t *type = mp_obj_get_type(base);
|
|
|
|
|
|
|
|
// if this type can do its own load, then call it
|
|
|
|
if (type->load_attr != NULL) {
|
|
|
|
type->load_attr(base, attr, dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if nothing found yet, look for built-in and generic names
|
2014-01-24 19:17:36 -05:00
|
|
|
if (dest[0] == MP_OBJ_NULL) {
|
2014-01-09 15:57:50 -05:00
|
|
|
if (attr == MP_QSTR___next__ && type->iternext != NULL) {
|
2014-01-18 09:10:48 -05:00
|
|
|
dest[0] = (mp_obj_t)&mp_builtin_next_obj;
|
|
|
|
dest[1] = base;
|
2014-01-18 12:52:41 -05:00
|
|
|
} else if (type->load_attr == NULL) {
|
|
|
|
// generic method lookup if type didn't provide a specific one
|
2014-01-11 14:22:29 -05:00
|
|
|
// this is a lookup in the object (ie not class or type)
|
2014-01-09 15:57:50 -05:00
|
|
|
const mp_method_t *meth = type->methods;
|
|
|
|
if (meth != NULL) {
|
|
|
|
for (; meth->name != NULL; meth++) {
|
|
|
|
if (strcmp(meth->name, qstr_str(attr)) == 0) {
|
2014-01-11 14:22:29 -05:00
|
|
|
// check if the methods are functions, static or class methods
|
|
|
|
// see http://docs.python.org/3.3/howto/descriptor.html
|
|
|
|
if (MP_OBJ_IS_TYPE(meth->fun, &mp_type_staticmethod)) {
|
|
|
|
// return just the function
|
2014-01-18 09:10:48 -05:00
|
|
|
dest[0] = ((mp_obj_staticmethod_t*)meth->fun)->fun;
|
2014-01-11 14:22:29 -05:00
|
|
|
} else if (MP_OBJ_IS_TYPE(meth->fun, &mp_type_classmethod)) {
|
|
|
|
// return a bound method, with self being the type of this object
|
2014-01-18 09:10:48 -05:00
|
|
|
dest[0] = ((mp_obj_classmethod_t*)meth->fun)->fun;
|
|
|
|
dest[1] = mp_obj_get_type(base);
|
2014-01-11 14:22:29 -05:00
|
|
|
} else {
|
|
|
|
// return a bound method, with self being this object
|
2014-01-18 09:10:48 -05:00
|
|
|
dest[0] = (mp_obj_t)meth->fun;
|
|
|
|
dest[1] = base;
|
2014-01-11 14:22:29 -05:00
|
|
|
}
|
2014-01-09 15:57:50 -05:00
|
|
|
break;
|
|
|
|
}
|
2014-01-07 18:06:46 -05:00
|
|
|
}
|
2013-11-02 19:58:14 -04:00
|
|
|
}
|
|
|
|
}
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
2014-01-24 19:17:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void rt_load_method(mp_obj_t base, qstr attr, mp_obj_t *dest) {
|
|
|
|
DEBUG_OP_printf("load method %p.%s\n", base, qstr_str(attr));
|
|
|
|
|
|
|
|
rt_load_method_maybe(base, attr, dest);
|
2013-10-09 18:10:10 -04:00
|
|
|
|
2014-01-24 19:17:36 -05:00
|
|
|
if (dest[0] == MP_OBJ_NULL) {
|
2014-01-09 15:57:50 -05:00
|
|
|
// no attribute/method called attr
|
|
|
|
// following CPython, we give a more detailed error message for type objects
|
|
|
|
if (MP_OBJ_IS_TYPE(base, &mp_const_type)) {
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_AttributeError, "type object '%s' has no attribute '%s'", ((mp_obj_type_t*)base)->name, qstr_str(attr)));
|
|
|
|
} else {
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_AttributeError, "'%s' object has no attribute '%s'", mp_obj_get_type_str(base), qstr_str(attr)));
|
|
|
|
}
|
|
|
|
}
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void rt_store_attr(mp_obj_t base, qstr attr, mp_obj_t value) {
|
2013-10-18 14:58:12 -04:00
|
|
|
DEBUG_OP_printf("store attr %p.%s <- %p\n", base, qstr_str(attr), value);
|
2014-01-09 15:57:50 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(base);
|
|
|
|
if (type->store_attr != NULL) {
|
|
|
|
if (type->store_attr(base, attr, value)) {
|
|
|
|
return;
|
|
|
|
}
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
2014-01-09 15:57:50 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_AttributeError, "'%s' object has no attribute '%s'", mp_obj_get_type_str(base), qstr_str(attr)));
|
2013-10-09 18:10:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void rt_store_subscr(mp_obj_t base, mp_obj_t index, mp_obj_t value) {
|
2013-10-18 14:58:12 -04:00
|
|
|
DEBUG_OP_printf("store subscr %p[%p] <- %p\n", base, index, value);
|
2013-12-21 13:17:45 -05:00
|
|
|
if (MP_OBJ_IS_TYPE(base, &list_type)) {
|
2013-10-09 18:10:10 -04:00
|
|
|
// list store
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_list_store(base, index, value);
|
|
|
|
} else if (MP_OBJ_IS_TYPE(base, &dict_type)) {
|
|
|
|
// dict store
|
|
|
|
mp_obj_dict_store(base, index, value);
|
2013-10-04 14:53:11 -04:00
|
|
|
} else {
|
2014-01-18 06:10:51 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(base);
|
|
|
|
if (type->store_item != NULL) {
|
|
|
|
bool r = type->store_item(base, index, value);
|
|
|
|
if (r) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// TODO: call base classes here?
|
|
|
|
}
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "'%s' object does not support item assignment", mp_obj_get_type_str(base)));
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_getiter(mp_obj_t o_in) {
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(o_in);
|
|
|
|
if (type->getiter != NULL) {
|
|
|
|
return type->getiter(o_in);
|
2013-10-15 17:25:17 -04:00
|
|
|
} else {
|
2014-01-24 19:17:36 -05:00
|
|
|
// check for __getitem__ method
|
|
|
|
mp_obj_t dest[2];
|
|
|
|
rt_load_method_maybe(o_in, qstr_from_str("__getitem__"), dest);
|
|
|
|
if (dest[0] != MP_OBJ_NULL) {
|
|
|
|
// __getitem__ exists, create an iterator
|
|
|
|
return mp_obj_new_getitem_iter(dest);
|
|
|
|
} else {
|
|
|
|
// object not iterable
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "'%s' object is not iterable", type->name));
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
2013-10-16 15:39:12 -04:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_iternext(mp_obj_t o_in) {
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(o_in);
|
|
|
|
if (type->iternext != NULL) {
|
|
|
|
return type->iternext(o_in);
|
2013-12-21 13:17:45 -05:00
|
|
|
} else {
|
2014-01-22 09:35:10 -05:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "'%s' object is not an iterator", type->name));
|
2013-10-15 17:25:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_import_name(qstr name, mp_obj_t fromlist, mp_obj_t level) {
|
2013-12-10 12:27:24 -05:00
|
|
|
// build args array
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t args[5];
|
2014-01-22 09:35:10 -05:00
|
|
|
args[0] = MP_OBJ_NEW_QSTR(name);
|
2013-12-21 13:17:45 -05:00
|
|
|
args[1] = mp_const_none; // TODO should be globals
|
|
|
|
args[2] = mp_const_none; // TODO should be locals
|
2013-12-10 12:27:24 -05:00
|
|
|
args[3] = fromlist;
|
|
|
|
args[4] = level; // must be 0; we don't yet support other values
|
|
|
|
|
|
|
|
// TODO lookup __import__ and call that instead of going straight to builtin implementation
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_builtin___import__(5, args);
|
2013-12-10 12:27:24 -05:00
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t rt_import_from(mp_obj_t module, qstr name) {
|
|
|
|
mp_obj_t x = rt_load_attr(module, name);
|
2013-12-10 12:27:24 -05:00
|
|
|
/* TODO convert AttributeError to ImportError
|
|
|
|
if (fail) {
|
|
|
|
(ImportError, "cannot import name %s", qstr_str(name), NULL)
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2014-01-03 09:03:48 -05:00
|
|
|
mp_map_t *rt_locals_get(void) {
|
|
|
|
return map_locals;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rt_locals_set(mp_map_t *m) {
|
|
|
|
DEBUG_OP_printf("rt_locals_set(%p)\n", m);
|
|
|
|
map_locals = m;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_map_t *rt_globals_get(void) {
|
|
|
|
return map_globals;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rt_globals_set(mp_map_t *m) {
|
|
|
|
DEBUG_OP_printf("rt_globals_set(%p)\n", m);
|
|
|
|
map_globals = m;
|
|
|
|
}
|
|
|
|
|
2014-01-22 18:59:20 -05:00
|
|
|
mp_map_t *rt_loaded_modules_get(void) {
|
|
|
|
return &map_loaded_modules;
|
|
|
|
}
|
|
|
|
|
2013-11-02 16:34:54 -04:00
|
|
|
// these must correspond to the respective enum
|
2013-10-19 13:28:01 -04:00
|
|
|
void *const rt_fun_table[RT_F_NUMBER_OF] = {
|
2013-11-02 16:34:54 -04:00
|
|
|
rt_load_const_dec,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_load_const_str,
|
|
|
|
rt_load_name,
|
|
|
|
rt_load_global,
|
2013-10-10 06:24:39 -04:00
|
|
|
rt_load_build_class,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_load_attr,
|
|
|
|
rt_load_method,
|
|
|
|
rt_store_name,
|
2013-10-10 06:24:39 -04:00
|
|
|
rt_store_attr,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_store_subscr,
|
|
|
|
rt_is_true,
|
|
|
|
rt_unary_op,
|
2013-10-16 18:58:48 -04:00
|
|
|
rt_build_tuple,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_build_list,
|
2013-10-16 18:58:48 -04:00
|
|
|
rt_list_append,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_build_map,
|
|
|
|
rt_store_map,
|
|
|
|
rt_build_set,
|
2013-10-16 18:58:48 -04:00
|
|
|
rt_store_set,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_make_function_from_id,
|
2014-01-18 09:10:48 -05:00
|
|
|
rt_call_function_n_kw,
|
|
|
|
rt_call_method_n_kw,
|
2013-10-04 14:53:11 -04:00
|
|
|
rt_binary_op,
|
2013-10-16 18:58:48 -04:00
|
|
|
rt_getiter,
|
|
|
|
rt_iternext,
|
2013-10-04 14:53:11 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
void rt_f_vector(rt_fun_kind_t fun_kind) {
|
|
|
|
(rt_f_table[fun_kind])();
|
|
|
|
}
|
|
|
|
*/
|