runtime.c 63.6 KB
Newer Older
1
/*
2
 * This file is part of the MicroPython project, http://micropython.org/
3 4 5 6
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2013, 2014 Damien P. George
7
 * Copyright (c) 2014-2018 Paul Sokolovsky
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

28
#include <assert.h>
29
#include <stdarg.h>
D
Damien 已提交
30 31
#include <stdio.h>
#include <string.h>
32
#include <unistd.h>
D
Damien 已提交
33

34 35
#include "py/parsenum.h"
#include "py/compile.h"
36
#include "py/objstr.h"
37 38
#include "py/objtuple.h"
#include "py/objlist.h"
39
#include "py/objtype.h"
40 41 42 43 44 45 46
#include "py/objmodule.h"
#include "py/objgenerator.h"
#include "py/smallint.h"
#include "py/runtime.h"
#include "py/builtin.h"
#include "py/stackctrl.h"
#include "py/gc.h"
D
Damien 已提交
47

48
#if MICROPY_DEBUG_VERBOSE // print debugging info
49
#define DEBUG_PRINT (1)
50
#define DEBUG_printf DEBUG_printf
51
#define DEBUG_OP_printf(...) DEBUG_printf(__VA_ARGS__)
52
#else // don't print debugging info
53 54
#define DEBUG_printf(...) (void)0
#define DEBUG_OP_printf(...) (void)0
55
#endif
D
Damien 已提交
56

57 58
const mp_obj_module_t mp_module___main__ = {
    .base = { &mp_type_module },
59
    .globals = (mp_obj_dict_t *)&MP_STATE_VM(dict_main),
60 61
};

D
Damien George 已提交
62
void mp_init(void) {
63
    qstr_init();
64

65
    // no pending exceptions to start with
66
    MP_STATE_THREAD(mp_pending_exception) = MP_OBJ_NULL;
67
    #if MICROPY_ENABLE_SCHEDULER
68 69 70 71 72 73 74 75 76
    #if MICROPY_SCHEDULER_STATIC_NODES
    if (MP_STATE_VM(sched_head) == NULL) {
        // no pending callbacks to start with
        MP_STATE_VM(sched_state) = MP_SCHED_IDLE;
    } else {
        // pending callbacks are on the list, eg from before a soft reset
        MP_STATE_VM(sched_state) = MP_SCHED_PENDING;
    }
    #endif
77 78
    MP_STATE_VM(sched_idx) = 0;
    MP_STATE_VM(sched_len) = 0;
79
    #endif
80

81
    #if MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF
82
    mp_init_emergency_exception_buf();
83
    #endif
84

85 86 87 88 89 90
    #if MICROPY_KBD_EXCEPTION
    // initialise the exception object for raising KeyboardInterrupt
    MP_STATE_VM(mp_kbd_exception).base.type = &mp_type_KeyboardInterrupt;
    MP_STATE_VM(mp_kbd_exception).traceback_alloc = 0;
    MP_STATE_VM(mp_kbd_exception).traceback_len = 0;
    MP_STATE_VM(mp_kbd_exception).traceback_data = NULL;
91
    MP_STATE_VM(mp_kbd_exception).args = (mp_obj_tuple_t *)&mp_const_empty_tuple_obj;
92 93
    #endif

94
    #if MICROPY_ENABLE_COMPILER
95
    // optimization disabled by default
96
    MP_STATE_VM(mp_optimise_value) = 0;
97 98 99
    #if MICROPY_EMIT_NATIVE
    MP_STATE_VM(default_emit_opt) = MP_EMIT_OPT_NONE;
    #endif
100
    #endif
101

102
    // init global module dict
103
    mp_obj_dict_init(&MP_STATE_VM(mp_loaded_modules_dict), MICROPY_LOADED_MODULES_DICT_SIZE);
104

105
    // initialise the __main__ module
106
    mp_obj_dict_init(&MP_STATE_VM(dict_main), 1);
107
    mp_obj_dict_store(MP_OBJ_FROM_PTR(&MP_STATE_VM(dict_main)), MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR___main__));
108 109

    // locals = globals for outer module (see Objects/frameobject.c/PyFrame_New())
110 111
    mp_locals_set(&MP_STATE_VM(dict_main));
    mp_globals_set(&MP_STATE_VM(dict_main));
112 113 114

    #if MICROPY_CAN_OVERRIDE_BUILTINS
    // start with no extensions to builtins
115
    MP_STATE_VM(mp_module_builtins_override_dict) = NULL;
116
    #endif
117

118 119 120 121
    #if MICROPY_PERSISTENT_CODE_TRACK_RELOC_CODE
    MP_STATE_VM(track_reloc_code_list) = MP_OBJ_NULL;
    #endif

122 123 124 125 126 127
    #if MICROPY_PY_OS_DUPTERM
    for (size_t i = 0; i < MICROPY_PY_OS_DUPTERM; ++i) {
        MP_STATE_VM(dupterm_objs[i]) = MP_OBJ_NULL;
    }
    #endif

128 129 130 131 132 133
    #if MICROPY_VFS
    // initialise the VFS sub-system
    MP_STATE_VM(vfs_cur) = NULL;
    MP_STATE_VM(vfs_mount_table) = NULL;
    #endif

134 135
    #if MICROPY_PY_SYS_PATH_ARGV_DEFAULTS
    mp_obj_list_init(MP_OBJ_TO_PTR(mp_sys_path), 0);
136
    mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script)
137 138 139 140 141 142
    #if MICROPY_MODULE_FROZEN
    mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__dot_frozen));
    #endif
    mp_obj_list_init(MP_OBJ_TO_PTR(mp_sys_argv), 0);
    #endif

143 144 145 146
    #if MICROPY_PY_SYS_ATEXIT
    MP_STATE_VM(sys_exitfunc) = mp_const_none;
    #endif

147 148 149 150 151
    #if MICROPY_PY_SYS_PS1_PS2
    MP_STATE_VM(sys_mutable[MP_SYS_MUTABLE_PS1]) = MP_OBJ_NEW_QSTR(MP_QSTR__gt__gt__gt__space_);
    MP_STATE_VM(sys_mutable[MP_SYS_MUTABLE_PS2]) = MP_OBJ_NEW_QSTR(MP_QSTR__dot__dot__dot__space_);
    #endif

152 153 154 155 156 157
    #if MICROPY_PY_SYS_SETTRACE
    MP_STATE_THREAD(prof_trace_callback) = MP_OBJ_NULL;
    MP_STATE_THREAD(prof_callback_is_executing) = false;
    MP_STATE_THREAD(current_code_state) = NULL;
    #endif

158 159 160 161
    #if MICROPY_PY_SYS_TRACEBACKLIMIT
    MP_STATE_VM(sys_mutable[MP_SYS_MUTABLE_TRACEBACKLIMIT]) = MP_OBJ_NEW_SMALL_INT(1000);
    #endif

162 163 164 165
    #if MICROPY_PY_BLUETOOTH
    MP_STATE_VM(bluetooth) = MP_OBJ_NULL;
    #endif

166 167 168 169
    #if MICROPY_PY_THREAD_GIL
    mp_thread_mutex_init(&MP_STATE_VM(gil_mutex));
    #endif

170 171 172 173 174
    // call port specific initialization if any
    #ifdef MICROPY_PORT_INIT_FUNC
    MICROPY_PORT_INIT_FUNC;
    #endif

175
    MP_THREAD_GIL_ENTER();
D
Damien 已提交
176 177
}

D
Damien George 已提交
178
void mp_deinit(void) {
179 180
    MP_THREAD_GIL_EXIT();

181
    // call port specific deinitialization if any
182
    #ifdef MICROPY_PORT_DEINIT_FUNC
S
stijn 已提交
183
    MICROPY_PORT_DEINIT_FUNC;
184
    #endif
D
Damien 已提交
185 186
}

187
mp_obj_t MICROPY_WRAP_MP_LOAD_NAME(mp_load_name)(qstr qst) {
D
Damien 已提交
188
    // logic: search locals, globals, builtins
189
    DEBUG_OP_printf("load name %s\n", qstr_str(qst));
190
    // If we're at the outer scope (locals == globals), dispatch to load_global right away
191 192
    if (mp_locals_get() != mp_globals_get()) {
        mp_map_elem_t *elem = mp_map_lookup(&mp_locals_get()->map, MP_OBJ_NEW_QSTR(qst), MP_MAP_LOOKUP);
193 194 195
        if (elem != NULL) {
            return elem->value;
        }
D
Damien 已提交
196
    }
197
    return mp_load_global(qst);
D
Damien 已提交
198 199
}

200
mp_obj_t MICROPY_WRAP_MP_LOAD_GLOBAL(mp_load_global)(qstr qst) {
201
    // logic: search globals, builtins
202
    DEBUG_OP_printf("load global %s\n", qstr_str(qst));
203
    mp_map_elem_t *elem = mp_map_lookup(&mp_globals_get()->map, MP_OBJ_NEW_QSTR(qst), MP_MAP_LOOKUP);
204
    if (elem == NULL) {
205
        #if MICROPY_CAN_OVERRIDE_BUILTINS
206
        if (MP_STATE_VM(mp_module_builtins_override_dict) != NULL) {
207
            // lookup in additional dynamic table of builtins first
208
            elem = mp_map_lookup(&MP_STATE_VM(mp_module_builtins_override_dict)->map, MP_OBJ_NEW_QSTR(qst), MP_MAP_LOOKUP);
209 210 211 212 213
            if (elem != NULL) {
                return elem->value;
            }
        }
        #endif
214
        elem = mp_map_lookup((mp_map_t *)&mp_module_builtins_globals.map, MP_OBJ_NEW_QSTR(qst), MP_MAP_LOOKUP);
215
        if (elem == NULL) {
216
            #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
217
            mp_raise_msg(&mp_type_NameError, MP_ERROR_TEXT("name not defined"));
218
            #else
219
            mp_raise_msg_varg(&mp_type_NameError, MP_ERROR_TEXT("name '%q' isn't defined"), qst);
220
            #endif
221 222 223
        }
    }
    return elem->value;
D
Damien 已提交
224 225
}

D
Damien George 已提交
226
mp_obj_t mp_load_build_class(void) {
D
Damien 已提交
227
    DEBUG_OP_printf("load_build_class\n");
228
    #if MICROPY_CAN_OVERRIDE_BUILTINS
229
    if (MP_STATE_VM(mp_module_builtins_override_dict) != NULL) {
230
        // lookup in additional dynamic table of builtins first
231
        mp_map_elem_t *elem = mp_map_lookup(&MP_STATE_VM(mp_module_builtins_override_dict)->map, MP_OBJ_NEW_QSTR(MP_QSTR___build_class__), MP_MAP_LOOKUP);
232 233 234 235 236
        if (elem != NULL) {
            return elem->value;
        }
    }
    #endif
237
    return MP_OBJ_FROM_PTR(&mp_builtin___build_class___obj);
D
Damien 已提交
238 239
}

240 241
void mp_store_name(qstr qst, mp_obj_t obj) {
    DEBUG_OP_printf("store name %s <- %p\n", qstr_str(qst), obj);
242
    mp_obj_dict_store(MP_OBJ_FROM_PTR(mp_locals_get()), MP_OBJ_NEW_QSTR(qst), obj);
243 244
}

245 246 247
void mp_delete_name(qstr qst) {
    DEBUG_OP_printf("delete name %s\n", qstr_str(qst));
    // TODO convert KeyError to NameError if qst not found
248
    mp_obj_dict_delete(MP_OBJ_FROM_PTR(mp_locals_get()), MP_OBJ_NEW_QSTR(qst));
249 250
}

251 252
void mp_store_global(qstr qst, mp_obj_t obj) {
    DEBUG_OP_printf("store global %s <- %p\n", qstr_str(qst), obj);
253
    mp_obj_dict_store(MP_OBJ_FROM_PTR(mp_globals_get()), MP_OBJ_NEW_QSTR(qst), obj);
D
Damien 已提交
254 255
}

256 257 258
void mp_delete_global(qstr qst) {
    DEBUG_OP_printf("delete global %s\n", qstr_str(qst));
    // TODO convert KeyError to NameError if qst not found
259
    mp_obj_dict_delete(MP_OBJ_FROM_PTR(mp_globals_get()), MP_OBJ_NEW_QSTR(qst));
260 261
}

262
mp_obj_t mp_unary_op(mp_unary_op_t op, mp_obj_t arg) {
263
    DEBUG_OP_printf("unary " UINT_FMT " %q %p\n", op, mp_unary_op_method_name[op], arg);
264

265 266 267
    if (op == MP_UNARY_OP_NOT) {
        // "not x" is the negative of whether "x" is true per Python semantics
        return mp_obj_new_bool(mp_obj_is_true(arg) == 0);
268
    } else if (mp_obj_is_small_int(arg)) {
269
        mp_int_t val = MP_OBJ_SMALL_INT_VALUE(arg);
D
Damien 已提交
270
        switch (op) {
D
Damien George 已提交
271
            case MP_UNARY_OP_BOOL:
272
                return mp_obj_new_bool(val != 0);
273 274
            case MP_UNARY_OP_HASH:
                return arg;
D
Damien George 已提交
275
            case MP_UNARY_OP_POSITIVE:
276
            case MP_UNARY_OP_INT:
277
                return arg;
D
Damien George 已提交
278
            case MP_UNARY_OP_NEGATIVE:
279 280 281 282 283 284
                // check for overflow
                if (val == MP_SMALL_INT_MIN) {
                    return mp_obj_new_int(-val);
                } else {
                    return MP_OBJ_NEW_SMALL_INT(-val);
                }
285 286 287 288 289 290 291 292 293
            case MP_UNARY_OP_ABS:
                if (val >= 0) {
                    return arg;
                } else if (val == MP_SMALL_INT_MIN) {
                    // check for overflow
                    return mp_obj_new_int(-val);
                } else {
                    return MP_OBJ_NEW_SMALL_INT(-val);
                }
294
            default:
295 296
                assert(op == MP_UNARY_OP_INVERT);
                return MP_OBJ_NEW_SMALL_INT(~val);
297
        }
298
    } else if (op == MP_UNARY_OP_HASH && mp_obj_is_str_or_bytes(arg)) {
299 300
        // fast path for hashing str/bytes
        GET_STR_HASH(arg, h);
301 302 303 304
        if (h == 0) {
            GET_STR_DATA_LEN(arg, data, len);
            h = qstr_compute_hash(data, len);
        }
305
        return MP_OBJ_NEW_SMALL_INT(h);
306
    } else {
307
        const mp_obj_type_t *type = mp_obj_get_type(arg);
308 309
        if (type->unary_op != NULL) {
            mp_obj_t result = type->unary_op(op, arg);
310
            if (result != MP_OBJ_NULL) {
311 312
                return result;
            }
D
Damien 已提交
313
        }
314 315 316 317 318 319
        if (op == MP_UNARY_OP_BOOL) {
            // Type doesn't have unary_op (or didn't handle MP_UNARY_OP_BOOL),
            // so is implicitly True as this code path is impossible to reach
            // if arg==mp_const_none.
            return mp_const_true;
        }
320 321
        // With MP_UNARY_OP_INT, mp_unary_op() becomes a fallback for mp_obj_get_int().
        // In this case provide a more focused error message to not confuse, e.g. chr(1.0)
322
        #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
323
        if (op == MP_UNARY_OP_INT) {
324
            mp_raise_TypeError(MP_ERROR_TEXT("can't convert to int"));
325
        } else {
326
            mp_raise_TypeError(MP_ERROR_TEXT("unsupported type for operator"));
327
        }
328 329 330
        #else
        if (op == MP_UNARY_OP_INT) {
            mp_raise_msg_varg(&mp_type_TypeError,
331
                MP_ERROR_TEXT("can't convert %s to int"), mp_obj_get_type_str(arg));
332 333
        } else {
            mp_raise_msg_varg(&mp_type_TypeError,
334
                MP_ERROR_TEXT("unsupported type for %q: '%s'"),
335 336 337
                mp_unary_op_method_name[op], mp_obj_get_type_str(arg));
        }
        #endif
D
Damien 已提交
338
    }
D
Damien 已提交
339 340
}

341
mp_obj_t MICROPY_WRAP_MP_BINARY_OP(mp_binary_op)(mp_binary_op_t op, mp_obj_t lhs, mp_obj_t rhs) {
342
    DEBUG_OP_printf("binary " UINT_FMT " %q %p %p\n", op, mp_binary_op_method_name[op], lhs, rhs);
343 344 345 346 347 348 349 350 351 352

    // 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 +=

353
    // deal with is
D
Damien George 已提交
354
    if (op == MP_BINARY_OP_IS) {
355
        return mp_obj_new_bool(lhs == rhs);
356 357
    }

358
    // deal with == and != for all types
D
Damien George 已提交
359
    if (op == MP_BINARY_OP_EQUAL || op == MP_BINARY_OP_NOT_EQUAL) {
360 361
        // mp_obj_equal_not_equal supports a bunch of shortcuts
        return mp_obj_equal_not_equal(op, lhs, rhs);
362 363 364
    }

    // deal with exception_match for all types
D
Damien George 已提交
365
    if (op == MP_BINARY_OP_EXCEPTION_MATCH) {
366 367
        // rhs must be issubclass(rhs, BaseException)
        if (mp_obj_is_exception_type(rhs)) {
368
            if (mp_obj_exception_match(lhs, rhs)) {
369 370 371 372
                return mp_const_true;
            } else {
                return mp_const_false;
            }
373
        } else if (mp_obj_is_type(rhs, &mp_type_tuple)) {
374
            mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(rhs);
375
            for (size_t i = 0; i < tuple->len; i++) {
376 377 378 379 380 381 382 383 384
                rhs = tuple->items[i];
                if (!mp_obj_is_exception_type(rhs)) {
                    goto unsupported_op;
                }
                if (mp_obj_exception_match(lhs, rhs)) {
                    return mp_const_true;
                }
            }
            return mp_const_false;
385
        }
386
        goto unsupported_op;
387 388
    }

389
    if (mp_obj_is_small_int(lhs)) {
390
        mp_int_t lhs_val = MP_OBJ_SMALL_INT_VALUE(lhs);
391
        if (mp_obj_is_small_int(rhs)) {
392
            mp_int_t rhs_val = MP_OBJ_SMALL_INT_VALUE(rhs);
393 394 395
            // This is a binary operation: lhs_val op rhs_val
            // We need to be careful to handle overflow; see CERT INT32-C
            // Operations that can overflow:
396 397
            //      +       result always fits in mp_int_t, then handled by SMALL_INT check
            //      -       result always fits in mp_int_t, then handled by SMALL_INT check
398
            //      *       checked explicitly
399 400
            //      /       if lhs=MIN and rhs=-1; result always fits in mp_int_t, then handled by SMALL_INT check
            //      %       if lhs=MIN and rhs=-1; result always fits in mp_int_t, then handled by SMALL_INT check
401
            //      <<      checked explicitly
402
            switch (op) {
D
Damien George 已提交
403
                case MP_BINARY_OP_OR:
404 405 406
                case MP_BINARY_OP_INPLACE_OR:
                    lhs_val |= rhs_val;
                    break;
D
Damien George 已提交
407
                case MP_BINARY_OP_XOR:
408 409 410
                case MP_BINARY_OP_INPLACE_XOR:
                    lhs_val ^= rhs_val;
                    break;
D
Damien George 已提交
411
                case MP_BINARY_OP_AND:
412 413 414
                case MP_BINARY_OP_INPLACE_AND:
                    lhs_val &= rhs_val;
                    break;
D
Damien George 已提交
415 416
                case MP_BINARY_OP_LSHIFT:
                case MP_BINARY_OP_INPLACE_LSHIFT: {
417 418
                    if (rhs_val < 0) {
                        // negative shift not allowed
419
                        mp_raise_ValueError(MP_ERROR_TEXT("negative shift count"));
420
                    } else if (rhs_val >= (mp_int_t)(sizeof(lhs_val) * MP_BITS_PER_BYTE)
421 422
                               || lhs_val > (MP_SMALL_INT_MAX >> rhs_val)
                               || lhs_val < (MP_SMALL_INT_MIN >> rhs_val)) {
423 424 425 426 427
                        // left-shift will overflow, so use higher precision integer
                        lhs = mp_obj_new_int_from_ll(lhs_val);
                        goto generic_binary_op;
                    } else {
                        // use standard precision
428
                        lhs_val = (mp_uint_t)lhs_val << rhs_val;
429 430 431
                    }
                    break;
                }
D
Damien George 已提交
432 433
                case MP_BINARY_OP_RSHIFT:
                case MP_BINARY_OP_INPLACE_RSHIFT:
434 435
                    if (rhs_val < 0) {
                        // negative shift not allowed
436
                        mp_raise_ValueError(MP_ERROR_TEXT("negative shift count"));
437 438
                    } else {
                        // standard precision is enough for right-shift
439
                        if (rhs_val >= (mp_int_t)(sizeof(lhs_val) * MP_BITS_PER_BYTE)) {
440 441
                            // Shifting to big amounts is underfined behavior
                            // in C and is CPU-dependent; propagate sign bit.
442
                            rhs_val = sizeof(lhs_val) * MP_BITS_PER_BYTE - 1;
443
                        }
444 445 446
                        lhs_val >>= rhs_val;
                    }
                    break;
D
Damien George 已提交
447
                case MP_BINARY_OP_ADD:
448 449 450
                case MP_BINARY_OP_INPLACE_ADD:
                    lhs_val += rhs_val;
                    break;
D
Damien George 已提交
451
                case MP_BINARY_OP_SUBTRACT:
452 453 454
                case MP_BINARY_OP_INPLACE_SUBTRACT:
                    lhs_val -= rhs_val;
                    break;
D
Damien George 已提交
455 456
                case MP_BINARY_OP_MULTIPLY:
                case MP_BINARY_OP_INPLACE_MULTIPLY: {
457

458
                    // If long long type exists and is larger than mp_int_t, then
459
                    // we can use the following code to perform overflow-checked multiplication.
460
                    // Otherwise (eg in x64 case) we must use mp_small_int_mul_overflow.
461 462 463 464 465 466 467 468
                    #if 0
                    // compute result using long long precision
                    long long res = (long long)lhs_val * (long long)rhs_val;
                    if (res > MP_SMALL_INT_MAX || res < MP_SMALL_INT_MIN) {
                        // result overflowed SMALL_INT, so return higher precision integer
                        return mp_obj_new_int_from_ll(res);
                    } else {
                        // use standard precision
469
                        lhs_val = (mp_int_t)res;
470 471 472
                    }
                    #endif

473 474 475 476 477 478 479 480
                    if (mp_small_int_mul_overflow(lhs_val, rhs_val)) {
                        // use higher precision
                        lhs = mp_obj_new_int_from_ll(lhs_val);
                        goto generic_binary_op;
                    } else {
                        // use standard precision
                        return MP_OBJ_NEW_SMALL_INT(lhs_val * rhs_val);
                    }
481
                }
D
Damien George 已提交
482 483
                case MP_BINARY_OP_FLOOR_DIVIDE:
                case MP_BINARY_OP_INPLACE_FLOOR_DIVIDE:
484 485 486
                    if (rhs_val == 0) {
                        goto zero_division;
                    }
487
                    lhs_val = mp_small_int_floor_divide(lhs_val, rhs_val);
488
                    break;
489

490
                #if MICROPY_PY_BUILTINS_FLOAT
D
Damien George 已提交
491
                case MP_BINARY_OP_TRUE_DIVIDE:
492 493
                case MP_BINARY_OP_INPLACE_TRUE_DIVIDE:
                    if (rhs_val == 0) {
494
                        goto zero_division;
495 496
                    }
                    return mp_obj_new_float((mp_float_t)lhs_val / (mp_float_t)rhs_val);
497
                #endif
498

D
Damien George 已提交
499
                case MP_BINARY_OP_MODULO:
500
                case MP_BINARY_OP_INPLACE_MODULO: {
501 502 503
                    if (rhs_val == 0) {
                        goto zero_division;
                    }
504
                    lhs_val = mp_small_int_modulo(lhs_val, rhs_val);
505 506
                    break;
                }
507

D
Damien George 已提交
508 509
                case MP_BINARY_OP_POWER:
                case MP_BINARY_OP_INPLACE_POWER:
510
                    if (rhs_val < 0) {
511
                        #if MICROPY_PY_BUILTINS_FLOAT
512
                        return mp_obj_float_binary_op(op, (mp_float_t)lhs_val, rhs);
513
                        #else
514
                        mp_raise_ValueError(MP_ERROR_TEXT("negative power with no float support"));
515 516
                        #endif
                    } else {
517
                        mp_int_t ans = 1;
518 519
                        while (rhs_val > 0) {
                            if (rhs_val & 1) {
520
                                if (mp_small_int_mul_overflow(ans, lhs_val)) {
521 522
                                    goto power_overflow;
                                }
523
                                ans *= lhs_val;
524 525 526
                            }
                            if (rhs_val == 1) {
                                break;
527 528
                            }
                            rhs_val /= 2;
529
                            if (mp_small_int_mul_overflow(lhs_val, lhs_val)) {
530 531
                                goto power_overflow;
                            }
532
                            lhs_val *= lhs_val;
533
                        }
534
                        lhs_val = ans;
D
Damien 已提交
535
                    }
536
                    break;
537 538 539 540 541 542

                power_overflow:
                    // use higher precision
                    lhs = mp_obj_new_int_from_ll(MP_OBJ_SMALL_INT_VALUE(lhs));
                    goto generic_binary_op;

543 544 545 546 547
                case MP_BINARY_OP_DIVMOD: {
                    if (rhs_val == 0) {
                        goto zero_division;
                    }
                    // to reduce stack usage we don't pass a temp array of the 2 items
548
                    mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(2, NULL));
549 550
                    tuple->items[0] = MP_OBJ_NEW_SMALL_INT(mp_small_int_floor_divide(lhs_val, rhs_val));
                    tuple->items[1] = MP_OBJ_NEW_SMALL_INT(mp_small_int_modulo(lhs_val, rhs_val));
551
                    return MP_OBJ_FROM_PTR(tuple);
552 553
                }

554 555 556 557 558 559 560 561
                case MP_BINARY_OP_LESS:
                    return mp_obj_new_bool(lhs_val < rhs_val);
                case MP_BINARY_OP_MORE:
                    return mp_obj_new_bool(lhs_val > rhs_val);
                case MP_BINARY_OP_LESS_EQUAL:
                    return mp_obj_new_bool(lhs_val <= rhs_val);
                case MP_BINARY_OP_MORE_EQUAL:
                    return mp_obj_new_bool(lhs_val >= rhs_val);
D
Damien 已提交
562

563 564
                default:
                    goto unsupported_op;
565
            }
566
            // This is an inlined version of mp_obj_new_int, for speed
567
            if (MP_SMALL_INT_FITS(lhs_val)) {
568
                return MP_OBJ_NEW_SMALL_INT(lhs_val);
569
            } else {
570
                return mp_obj_new_int_from_ll(lhs_val);
571
            }
572
        #if MICROPY_PY_BUILTINS_FLOAT
573
        } else if (mp_obj_is_float(rhs)) {
574
            mp_obj_t res = mp_obj_float_binary_op(op, (mp_float_t)lhs_val, rhs);
575 576 577 578 579
            if (res == MP_OBJ_NULL) {
                goto unsupported_op;
            } else {
                return res;
            }
580 581
        #endif
        #if MICROPY_PY_BUILTINS_COMPLEX
582
        } else if (mp_obj_is_type(rhs, &mp_type_complex)) {
583
            mp_obj_t res = mp_obj_complex_binary_op(op, (mp_float_t)lhs_val, 0, rhs);
584 585 586 587 588
            if (res == MP_OBJ_NULL) {
                goto unsupported_op;
            } else {
                return res;
            }
589
        #endif
590
        }
591
    }
592

593
    // Convert MP_BINARY_OP_IN to MP_BINARY_OP_CONTAINS with swapped args.
D
Damien George 已提交
594
    if (op == MP_BINARY_OP_IN) {
595 596 597 598
        op = MP_BINARY_OP_CONTAINS;
        mp_obj_t temp = lhs;
        lhs = rhs;
        rhs = temp;
599 600
    }

601
    // generic binary_op supplied by type
602
    const mp_obj_type_t *type;
603 604
generic_binary_op:
    type = mp_obj_get_type(lhs);
605 606
    if (type->binary_op != NULL) {
        mp_obj_t result = type->binary_op(op, lhs, rhs);
607
        if (result != MP_OBJ_NULL) {
608
            return result;
D
Damien 已提交
609 610
        }
    }
611

612
    #if MICROPY_PY_REVERSE_SPECIAL_METHODS
613
    if (op >= MP_BINARY_OP_OR && op <= MP_BINARY_OP_POWER) {
614 615 616
        mp_obj_t t = rhs;
        rhs = lhs;
        lhs = t;
617 618 619
        op += MP_BINARY_OP_REVERSE_OR - MP_BINARY_OP_OR;
        goto generic_binary_op;
    } else if (op >= MP_BINARY_OP_REVERSE_OR) {
620
        // Convert __rop__ back to __op__ for error message
621 622 623
        mp_obj_t t = rhs;
        rhs = lhs;
        lhs = t;
624 625
        op -= MP_BINARY_OP_REVERSE_OR - MP_BINARY_OP_OR;
    }
626
    #endif
627

628 629 630 631 632 633 634 635 636 637 638 639 640 641
    if (op == MP_BINARY_OP_CONTAINS) {
        // If type didn't support containment then explicitly walk the iterator.
        // mp_getiter will raise the appropriate exception if lhs is not iterable.
        mp_obj_iter_buf_t iter_buf;
        mp_obj_t iter = mp_getiter(lhs, &iter_buf);
        mp_obj_t next;
        while ((next = mp_iternext(iter)) != MP_OBJ_STOP_ITERATION) {
            if (mp_obj_equal(next, rhs)) {
                return mp_const_true;
            }
        }
        return mp_const_false;
    }

642
unsupported_op:
643
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
644
    mp_raise_TypeError(MP_ERROR_TEXT("unsupported type for operator"));
645 646
    #else
    mp_raise_msg_varg(&mp_type_TypeError,
647
        MP_ERROR_TEXT("unsupported types for %q: '%s', '%s'"),
648 649
        mp_binary_op_method_name[op], mp_obj_get_type_str(lhs), mp_obj_get_type_str(rhs));
    #endif
650 651

zero_division:
652
    mp_raise_msg(&mp_type_ZeroDivisionError, MP_ERROR_TEXT("divide by zero"));
D
Damien 已提交
653 654
}

D
Damien George 已提交
655 656
mp_obj_t mp_call_function_0(mp_obj_t fun) {
    return mp_call_function_n_kw(fun, 0, 0, NULL);
657 658
}

D
Damien George 已提交
659 660
mp_obj_t mp_call_function_1(mp_obj_t fun, mp_obj_t arg) {
    return mp_call_function_n_kw(fun, 1, 0, &arg);
661 662
}

D
Damien George 已提交
663
mp_obj_t mp_call_function_2(mp_obj_t fun, mp_obj_t arg1, mp_obj_t arg2) {
664
    mp_obj_t args[2];
665 666
    args[0] = arg1;
    args[1] = arg2;
D
Damien George 已提交
667
    return mp_call_function_n_kw(fun, 2, 0, args);
668 669
}

670
// args contains, eg: arg0  arg1  key0  value0  key1  value1
671
mp_obj_t mp_call_function_n_kw(mp_obj_t fun_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
672 673
    // 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
674

675
    DEBUG_OP_printf("calling function %p(n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n", fun_in, n_args, n_kw, args);
676

677
    // get the type
678
    const mp_obj_type_t *type = mp_obj_get_type(fun_in);
679 680 681

    // do the call
    if (type->call != NULL) {
682
        return type->call(fun_in, n_args, n_kw, args);
683
    }
684

685
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
686
    mp_raise_TypeError(MP_ERROR_TEXT("object not callable"));
687 688
    #else
    mp_raise_msg_varg(&mp_type_TypeError,
689
        MP_ERROR_TEXT("'%s' object isn't callable"), mp_obj_get_type_str(fun_in));
690
    #endif
691 692
}

693 694
// 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
695
mp_obj_t mp_call_method_n_kw(size_t n_args, size_t n_kw, const mp_obj_t *args) {
696
    DEBUG_OP_printf("call method (fun=%p, self=%p, n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n", args[0], args[1], n_args, n_kw, args);
697
    int adjust = (args[1] == MP_OBJ_NULL) ? 0 : 1;
D
Damien George 已提交
698
    return mp_call_function_n_kw(args[0], n_args + adjust, n_kw, args + 2 - adjust);
699 700
}

701 702 703 704
// This function only needs to be exposed externally when in stackless mode.
#if !MICROPY_STACKLESS
STATIC
#endif
705
void mp_call_prepare_args_n_kw_var(bool have_self, size_t n_args_n_kw, const mp_obj_t *args, mp_call_args_t *out_args) {
706 707 708 709 710
    mp_obj_t fun = *args++;
    mp_obj_t self = MP_OBJ_NULL;
    if (have_self) {
        self = *args++; // may be MP_OBJ_NULL
    }
711 712
    size_t n_args = n_args_n_kw & 0xff;
    size_t n_kw = (n_args_n_kw >> 8) & 0xff;
713
    mp_uint_t star_args = MP_OBJ_SMALL_INT_VALUE(args[n_args + 2 * n_kw]);
714

715
    DEBUG_OP_printf("call method var (fun=%p, self=%p, n_args=%u, n_kw=%u, args=%p, map=%u)\n", fun, self, n_args, n_kw, args, star_args);
716 717 718 719 720 721 722

    // We need to create the following array of objects:
    //     args[0 .. n_args]  unpacked(pos_seq)  args[n_args .. n_args + 2 * n_kw]  unpacked(kw_dict)
    // TODO: optimize one day to avoid constructing new arg array? Will be hard.

    // The new args array
    mp_obj_t *args2;
723 724
    size_t args2_alloc;
    size_t args2_len = 0;
725

726
    // Try to get a hint for unpacked * args length
727
    ssize_t list_len = 0;
728 729

    if (star_args != 0) {
730
        for (size_t i = 0; i < n_args; i++) {
731
            if ((star_args >> i) & 1) {
732 733
                mp_obj_t len = mp_obj_len_maybe(args[i]);
                if (len != MP_OBJ_NULL) {
734 735
                    // -1 accounts for 1 of n_args occupied by this arg
                    list_len += mp_obj_get_int(len) - 1;
736 737 738 739 740
                }
            }
        }
    }

741
    // Try to get a hint for the size of the kw_dict
742
    ssize_t kw_dict_len = 0;
743

744
    for (size_t i = 0; i < n_kw; i++) {
745 746 747
        mp_obj_t key = args[n_args + i * 2];
        mp_obj_t value = args[n_args + i * 2 + 1];
        if (key == MP_OBJ_NULL && value != MP_OBJ_NULL && mp_obj_is_type(value, &mp_type_dict)) {
748 749
            // -1 accounts for 1 of n_kw occupied by this arg
            kw_dict_len += mp_obj_dict_len(value) - 1;
750
        }
751 752 753 754
    }

    // Extract the pos_seq sequence to the new args array.
    // Note that it can be arbitrary iterator.
755 756
    if (star_args == 0) {
        // no star args to unpack
757 758 759

        // allocate memory for the new array of args
        args2_alloc = 1 + n_args + 2 * (n_kw + kw_dict_len);
760
        args2 = mp_nonlocal_alloc(args2_alloc * sizeof(mp_obj_t));
761 762 763 764 765 766 767

        // copy the self
        if (self != MP_OBJ_NULL) {
            args2[args2_len++] = self;
        }

        // copy the fixed pos args
768
        mp_seq_copy(args2 + args2_len, args, n_args, mp_obj_t);
769 770
        args2_len += n_args;
    } else {
771
        // at least one star arg to unpack
772 773

        // allocate memory for the new array of args
774
        args2_alloc = 1 + n_args + list_len + 2 * (n_kw + kw_dict_len);
775
        args2 = mp_nonlocal_alloc(args2_alloc * sizeof(mp_obj_t));
776 777 778 779 780 781

        // copy the self
        if (self != MP_OBJ_NULL) {
            args2[args2_len++] = self;
        }

782
        for (size_t i = 0; i < n_args; i++) {
783
            mp_obj_t arg = args[i];
784
            if ((star_args >> i) & 1) {
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
                // star arg
                if (mp_obj_is_type(arg, &mp_type_tuple) || mp_obj_is_type(arg, &mp_type_list)) {
                    // optimise the case of a tuple and list

                    // get the items
                    size_t len;
                    mp_obj_t *items;
                    mp_obj_get_array(arg, &len, &items);

                    // copy the items
                    assert(args2_len + len <= args2_alloc);
                    mp_seq_copy(args2 + args2_len, items, len, mp_obj_t);
                    args2_len += len;
                } else {
                    // generic iterator

                    // extract the variable position args from the iterator
                    mp_obj_iter_buf_t iter_buf;
                    mp_obj_t iterable = mp_getiter(arg, &iter_buf);
                    mp_obj_t item;
                    while ((item = mp_iternext(iterable)) != MP_OBJ_STOP_ITERATION) {
                        if (args2_len >= args2_alloc) {
                            args2 = mp_nonlocal_realloc(args2, args2_alloc * sizeof(mp_obj_t),
                                args2_alloc * 2 * sizeof(mp_obj_t));
                            args2_alloc *= 2;
                        }
                        args2[args2_len++] = item;
                    }
                }
            } else {
                // normal argument
                assert(args2_len < args2_alloc);
                args2[args2_len++] = arg;
818 819 820 821 822
            }
        }
    }

    // The size of the args2 array now is the number of positional args.
823
    size_t pos_args_len = args2_len;
824

825 826
    // ensure there is still enough room for kw args
    if (args2_len + 2 * (n_kw + kw_dict_len) > args2_alloc) {
827
        size_t new_alloc = args2_len + 2 * (n_kw + kw_dict_len);
828 829 830 831 832
        args2 = mp_nonlocal_realloc(args2, args2_alloc * sizeof(mp_obj_t),
            new_alloc * sizeof(mp_obj_t));
        args2_alloc = new_alloc;
    }

833
    // Copy the kw args.
834
    for (size_t i = 0; i < n_kw; i++) {
835 836 837 838
        mp_obj_t kw_key = args[n_args + i * 2];
        mp_obj_t kw_value = args[n_args + i * 2 + 1];
        if (kw_key == MP_OBJ_NULL) {
            // double-star args
839
            if (mp_obj_is_type(kw_value, &mp_type_dict)) {
840 841 842 843 844 845 846 847 848 849 850 851 852 853
                // dictionary
                mp_map_t *map = mp_obj_dict_get_map(kw_value);
                // should have enough, since kw_dict_len is in this case hinted correctly above
                assert(args2_len + 2 * map->used <= args2_alloc);
                for (size_t j = 0; j < map->alloc; j++) {
                    if (mp_map_slot_is_filled(map, j)) {
                        // the key must be a qstr, so intern it if it's a string
                        mp_obj_t key = map->table[j].key;
                        if (!mp_obj_is_qstr(key)) {
                            key = mp_obj_str_intern_checked(key);
                        }
                        args2[args2_len++] = key;
                        args2[args2_len++] = map->table[j].value;
                    }
854
                }
855 856 857 858 859 860 861 862 863 864 865 866 867 868
            } else {
                // generic mapping:
                // - call keys() to get an iterable of all keys in the mapping
                // - call __getitem__ for each key to get the corresponding value

                // get the keys iterable
                mp_obj_t dest[3];
                mp_load_method(kw_value, MP_QSTR_keys, dest);
                mp_obj_t iterable = mp_getiter(mp_call_method_n_kw(0, 0, dest), NULL);

                mp_obj_t key;
                while ((key = mp_iternext(iterable)) != MP_OBJ_STOP_ITERATION) {
                    // expand size of args array if needed
                    if (args2_len + 1 >= args2_alloc) {
869
                        size_t new_alloc = args2_alloc * 2;
870 871 872
                        args2 = mp_nonlocal_realloc(args2, args2_alloc * sizeof(mp_obj_t), new_alloc * sizeof(mp_obj_t));
                        args2_alloc = new_alloc;
                    }
873

874 875 876 877
                    // the key must be a qstr, so intern it if it's a string
                    if (!mp_obj_is_qstr(key)) {
                        key = mp_obj_str_intern_checked(key);
                    }
878

879 880 881 882
                    // get the value corresponding to the key
                    mp_load_method(kw_value, MP_QSTR___getitem__, dest);
                    dest[2] = key;
                    mp_obj_t value = mp_call_method_n_kw(1, 0, dest);
883

884 885 886 887 888 889 890 891 892 893
                    // store the key/value pair in the argument array
                    args2[args2_len++] = key;
                    args2[args2_len++] = value;
                }
            }
        } else {
            // normal kwarg
            assert(args2_len + 2 <= args2_alloc);
            args2[args2_len++] = kw_key;
            args2[args2_len++] = kw_value;
894 895 896
        }
    }

897 898 899 900 901 902 903
    out_args->fun = fun;
    out_args->args = args2;
    out_args->n_args = pos_args_len;
    out_args->n_kw = (args2_len - pos_args_len) / 2;
    out_args->n_alloc = args2_alloc;
}

904
mp_obj_t mp_call_method_n_kw_var(bool have_self, size_t n_args_n_kw, const mp_obj_t *args) {
905
    mp_call_args_t out_args;
906 907 908
    mp_call_prepare_args_n_kw_var(have_self, n_args_n_kw, args, &out_args);

    mp_obj_t res = mp_call_function_n_kw(out_args.fun, out_args.n_args, out_args.n_kw, out_args.args);
909
    mp_nonlocal_free(out_args.args, out_args.n_alloc * sizeof(mp_obj_t));
910 911 912 913

    return res;
}

914
// unpacked items are stored in reverse order into the array pointed to by items
915
void mp_unpack_sequence(mp_obj_t seq_in, size_t num, mp_obj_t *items) {
916
    size_t seq_len;
917
    if (mp_obj_is_type(seq_in, &mp_type_tuple) || mp_obj_is_type(seq_in, &mp_type_list)) {
918
        mp_obj_t *seq_items;
919
        mp_obj_get_array(seq_in, &seq_len, &seq_items);
920
        if (seq_len < num) {
921
            goto too_short;
922
        } else if (seq_len > num) {
923
            goto too_long;
924
        }
925
        for (size_t i = 0; i < num; i++) {
926 927
            items[i] = seq_items[num - 1 - i];
        }
928
    } else {
929 930
        mp_obj_iter_buf_t iter_buf;
        mp_obj_t iterable = mp_getiter(seq_in, &iter_buf);
931 932

        for (seq_len = 0; seq_len < num; seq_len++) {
D
Damien George 已提交
933
            mp_obj_t el = mp_iternext(iterable);
934
            if (el == MP_OBJ_STOP_ITERATION) {
935 936 937 938
                goto too_short;
            }
            items[num - 1 - seq_len] = el;
        }
939
        if (mp_iternext(iterable) != MP_OBJ_STOP_ITERATION) {
940 941
            goto too_long;
        }
942
    }
943 944 945
    return;

too_short:
946
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
947
    mp_raise_ValueError(MP_ERROR_TEXT("wrong number of values to unpack"));
948
    #else
949
    mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("need more than %d values to unpack"), (int)seq_len);
950
    #endif
951
too_long:
952
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
953
    mp_raise_ValueError(MP_ERROR_TEXT("wrong number of values to unpack"));
954
    #else
955
    mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("too many values to unpack (expected %d)"), (int)num);
956
    #endif
957 958
}

959
// unpacked items are stored in reverse order into the array pointed to by items
960 961 962
void mp_unpack_ex(mp_obj_t seq_in, size_t num_in, mp_obj_t *items) {
    size_t num_left = num_in & 0xff;
    size_t num_right = (num_in >> 8) & 0xff;
963
    DEBUG_OP_printf("unpack ex " UINT_FMT " " UINT_FMT "\n", num_left, num_right);
964
    size_t seq_len;
965
    if (mp_obj_is_type(seq_in, &mp_type_tuple) || mp_obj_is_type(seq_in, &mp_type_list)) {
966 967 968 969
        // Make the seq variable volatile so the compiler keeps a reference to it,
        // since if it's a tuple then seq_items points to the interior of the GC cell
        // and mp_obj_new_list may trigger a GC which doesn't trace this and reclaims seq.
        volatile mp_obj_t seq = seq_in;
970
        mp_obj_t *seq_items;
971
        mp_obj_get_array(seq, &seq_len, &seq_items);
972 973 974
        if (seq_len < num_left + num_right) {
            goto too_short;
        }
975
        for (size_t i = 0; i < num_right; i++) {
976 977 978
            items[i] = seq_items[seq_len - 1 - i];
        }
        items[num_right] = mp_obj_new_list(seq_len - num_left - num_right, seq_items + num_left);
979
        for (size_t i = 0; i < num_left; i++) {
980 981
            items[num_right + 1 + i] = seq_items[num_left - 1 - i];
        }
982
        seq = MP_OBJ_NULL;
983 984 985 986 987
    } else {
        // Generic iterable; this gets a bit messy: we unpack known left length to the
        // items destination array, then the rest to a dynamically created list.  Once the
        // iterable is exhausted, we take from this list for the right part of the items.
        // TODO Improve to waste less memory in the dynamically created list.
988
        mp_obj_t iterable = mp_getiter(seq_in, NULL);
989 990 991
        mp_obj_t item;
        for (seq_len = 0; seq_len < num_left; seq_len++) {
            item = mp_iternext(iterable);
992
            if (item == MP_OBJ_STOP_ITERATION) {
993 994 995 996
                goto too_short;
            }
            items[num_left + num_right + 1 - 1 - seq_len] = item;
        }
997
        mp_obj_list_t *rest = MP_OBJ_TO_PTR(mp_obj_new_list(0, NULL));
998
        while ((item = mp_iternext(iterable)) != MP_OBJ_STOP_ITERATION) {
999
            mp_obj_list_append(MP_OBJ_FROM_PTR(rest), item);
1000
        }
1001
        if (rest->len < num_right) {
1002 1003
            goto too_short;
        }
1004
        items[num_right] = MP_OBJ_FROM_PTR(rest);
1005
        for (size_t i = 0; i < num_right; i++) {
1006
            items[num_right - 1 - i] = rest->items[rest->len - num_right + i];
1007
        }
1008
        mp_obj_list_set_len(MP_OBJ_FROM_PTR(rest), rest->len - num_right);
1009 1010 1011 1012
    }
    return;

too_short:
1013
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
1014
    mp_raise_ValueError(MP_ERROR_TEXT("wrong number of values to unpack"));
1015
    #else
1016
    mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("need more than %d values to unpack"), (int)seq_len);
1017
    #endif
1018 1019
}

1020
mp_obj_t mp_load_attr(mp_obj_t base, qstr attr) {
1021
    DEBUG_OP_printf("load attr %p.%s\n", base, qstr_str(attr));
1022
    // use load_method
1023
    mp_obj_t dest[2];
1024 1025
    mp_load_method(base, attr, dest);
    if (dest[1] == MP_OBJ_NULL) {
1026
        // load_method returned just a normal attribute
1027
        return dest[0];
1028 1029 1030
    } else {
        // load_method returned a method, so build a bound method object
        return mp_obj_new_bound_meth(dest[0], dest[1]);
D
Damien 已提交
1031 1032 1033
    }
}

1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
#if MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG

// The following "checked fun" type is local to the mp_convert_member_lookup
// function, and serves to check that the first argument to a builtin function
// has the correct type.

typedef struct _mp_obj_checked_fun_t {
    mp_obj_base_t base;
    const mp_obj_type_t *type;
    mp_obj_t fun;
} mp_obj_checked_fun_t;

1046
STATIC mp_obj_t checked_fun_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
1047
    mp_obj_checked_fun_t *self = MP_OBJ_TO_PTR(self_in);
1048 1049 1050
    if (n_args > 0) {
        const mp_obj_type_t *arg0_type = mp_obj_get_type(args[0]);
        if (arg0_type != self->type) {
1051
            #if MICROPY_ERROR_REPORTING != MICROPY_ERROR_REPORTING_DETAILED
1052
            mp_raise_TypeError(MP_ERROR_TEXT("argument has wrong type"));
1053 1054
            #else
            mp_raise_msg_varg(&mp_type_TypeError,
1055
                MP_ERROR_TEXT("argument should be a '%q' not a '%q'"), self->type->name, arg0_type->name);
1056
            #endif
1057 1058 1059 1060 1061 1062 1063
        }
    }
    return mp_call_function_n_kw(self->fun, n_args, n_kw, args);
}

STATIC const mp_obj_type_t mp_type_checked_fun = {
    { &mp_type_type },
1064
    .flags = MP_TYPE_FLAG_BINDS_SELF,
1065 1066 1067 1068 1069
    .name = MP_QSTR_function,
    .call = checked_fun_call,
};

STATIC mp_obj_t mp_obj_new_checked_fun(const mp_obj_type_t *type, mp_obj_t fun) {
1070
    mp_obj_checked_fun_t *o = mp_obj_malloc(mp_obj_checked_fun_t, &mp_type_checked_fun);
1071 1072
    o->type = type;
    o->fun = fun;
1073
    return MP_OBJ_FROM_PTR(o);
1074 1075 1076 1077
}

#endif // MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG

1078 1079 1080 1081
// Given a member that was extracted from an instance, convert it correctly
// and put the result in the dest[] array for a possible method call.
// Conversion means dealing with static/class methods, callables, and values.
// see http://docs.python.org/3/howto/descriptor.html
1082
// and also https://mail.python.org/pipermail/python-dev/2015-March/138950.html
1083
void mp_convert_member_lookup(mp_obj_t self, const mp_obj_type_t *type, mp_obj_t member, mp_obj_t *dest) {
1084
    if (mp_obj_is_obj(member)) {
1085
        const mp_obj_type_t *m_type = ((mp_obj_base_t *)MP_OBJ_TO_PTR(member))->type;
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
        if (m_type->flags & MP_TYPE_FLAG_BINDS_SELF) {
            // `member` is a function that binds self as its first argument.
            if (m_type->flags & MP_TYPE_FLAG_BUILTIN_FUN) {
                // `member` is a built-in function, which has special behaviour.
                if (mp_obj_is_instance_type(type)) {
                    // Built-in functions on user types always behave like a staticmethod.
                    dest[0] = member;
                }
                #if MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG
                else if (self == MP_OBJ_NULL && type != &mp_type_object) {
                    // `member` is a built-in method without a first argument, so wrap
                    // it in a type checker that will check self when it's supplied.
                    // Note that object will do its own checking so shouldn't be wrapped.
                    dest[0] = mp_obj_new_checked_fun(type, member);
                }
                #endif
                else {
                    // Return a (built-in) bound method, with self being this object.
                    dest[0] = member;
                    dest[1] = self;
                }
            } else {
                // Return a bound method, with self being this object.
                dest[0] = member;
                dest[1] = self;
            }
        } else if (m_type == &mp_type_staticmethod) {
            // `member` is a staticmethod, return the function that it wraps.
            dest[0] = ((mp_obj_static_class_method_t *)MP_OBJ_TO_PTR(member))->fun;
        } else if (m_type == &mp_type_classmethod) {
            // `member` is a classmethod, return a bound method with self being the type of
            // this object.  This type should be the type of the original instance, not the
            // base type (which is what is passed in the `type` argument to this function).
            if (self != MP_OBJ_NULL) {
                type = mp_obj_get_type(self);
            }
            dest[0] = ((mp_obj_static_class_method_t *)MP_OBJ_TO_PTR(member))->fun;
            dest[1] = MP_OBJ_FROM_PTR(type);
        } else {
            // `member` is a value, so just return that value.
1126 1127
            dest[0] = member;
        }
1128
    } else {
1129
        // `member` is a value, so just return that value.
1130 1131 1132 1133
        dest[0] = member;
    }
}

1134 1135 1136
// 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>
1137
void mp_load_method_maybe(mp_obj_t obj, qstr attr, mp_obj_t *dest) {
1138 1139 1140 1141
    // clear output to indicate no attribute/method found yet
    dest[0] = MP_OBJ_NULL;
    dest[1] = MP_OBJ_NULL;

1142 1143 1144 1145
    // Note: the specific case of obj being an instance type is fast-path'ed in the VM
    // for the MP_BC_LOAD_ATTR opcode. Instance types handle type->attr and look up directly
    // in their member's map.

1146
    // get the type
1147
    const mp_obj_type_t *type = mp_obj_get_type(obj);
1148

D
Damien George 已提交
1149
    // look for built-in names
1150
    #if MICROPY_CPYTHON_COMPAT
1151
    if (attr == MP_QSTR___class__) {
D
Damien George 已提交
1152
        // a.__class__ is equivalent to type(a)
1153
        dest[0] = MP_OBJ_FROM_PTR(type);
1154 1155 1156 1157
        return;
    }
    #endif

1158
    if (attr == MP_QSTR___next__ && type->iternext != NULL) {
1159
        dest[0] = MP_OBJ_FROM_PTR(&mp_builtin_next_obj);
1160
        dest[1] = obj;
1161 1162 1163
        return;
    }
    if (type->attr != NULL) {
D
Damien George 已提交
1164
        // this type can do its own load, so call it
1165
        type->attr(obj, attr, dest);
1166 1167 1168 1169 1170 1171 1172 1173 1174
        // If type->attr has set dest[1] = MP_OBJ_SENTINEL, we should proceed
        // with lookups below (i.e. in locals_dict). If not, return right away.
        if (dest[1] != MP_OBJ_SENTINEL) {
            return;
        }
        // Clear the fail flag set by type->attr so it's like it never ran.
        dest[1] = MP_OBJ_NULL;
    }
    if (type->locals_dict != NULL) {
D
Damien George 已提交
1175 1176
        // generic method lookup
        // this is a lookup in the object (ie not class or type)
1177
        assert(type->locals_dict->base.type == &mp_type_dict); // MicroPython restriction, for now
1178
        mp_map_t *locals_map = &type->locals_dict->map;
D
Damien George 已提交
1179 1180
        mp_map_elem_t *elem = mp_map_lookup(locals_map, MP_OBJ_NEW_QSTR(attr), MP_MAP_LOOKUP);
        if (elem != NULL) {
1181
            mp_convert_member_lookup(obj, type, elem->value, dest);
D
Damien 已提交
1182
        }
1183
        return;
1184
    }
1185 1186
}

D
Damien George 已提交
1187
void mp_load_method(mp_obj_t base, qstr attr, mp_obj_t *dest) {
1188 1189
    DEBUG_OP_printf("load method %p.%s\n", base, qstr_str(attr));

D
Damien George 已提交
1190
    mp_load_method_maybe(base, attr, dest);
1191

1192
    if (dest[0] == MP_OBJ_NULL) {
1193
        // no attribute/method called attr
1194
        #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
1195
        mp_raise_msg(&mp_type_AttributeError, MP_ERROR_TEXT("no such attribute"));
1196 1197 1198 1199
        #else
        // following CPython, we give a more detailed error message for type objects
        if (mp_obj_is_type(base, &mp_type_type)) {
            mp_raise_msg_varg(&mp_type_AttributeError,
1200
                MP_ERROR_TEXT("type object '%q' has no attribute '%q'"),
1201
                ((mp_obj_type_t *)MP_OBJ_TO_PTR(base))->name, attr);
1202
        } else {
1203
            mp_raise_msg_varg(&mp_type_AttributeError,
1204
                MP_ERROR_TEXT("'%s' object has no attribute '%q'"),
1205
                mp_obj_get_type_str(base), attr);
1206
        }
1207
        #endif
1208
    }
1209 1210
}

1211 1212 1213 1214 1215 1216 1217 1218
// Acts like mp_load_method_maybe but catches AttributeError, and all other exceptions if requested
void mp_load_method_protected(mp_obj_t obj, qstr attr, mp_obj_t *dest, bool catch_all_exc) {
    nlr_buf_t nlr;
    if (nlr_push(&nlr) == 0) {
        mp_load_method_maybe(obj, attr, dest);
        nlr_pop();
    } else {
        if (!catch_all_exc
1219
            && !mp_obj_is_subclass_fast(MP_OBJ_FROM_PTR(((mp_obj_base_t *)nlr.ret_val)->type),
1220 1221 1222 1223 1224 1225 1226
                MP_OBJ_FROM_PTR(&mp_type_AttributeError))) {
            // Re-raise the exception
            nlr_raise(MP_OBJ_FROM_PTR(nlr.ret_val));
        }
    }
}

D
Damien George 已提交
1227
void mp_store_attr(mp_obj_t base, qstr attr, mp_obj_t value) {
D
Damien 已提交
1228
    DEBUG_OP_printf("store attr %p.%s <- %p\n", base, qstr_str(attr), value);
1229
    const mp_obj_type_t *type = mp_obj_get_type(base);
1230 1231 1232 1233 1234
    if (type->attr != NULL) {
        mp_obj_t dest[2] = {MP_OBJ_SENTINEL, value};
        type->attr(base, attr, dest);
        if (dest[0] == MP_OBJ_NULL) {
            // success
1235 1236
            return;
        }
1237
    }
1238
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
1239
    mp_raise_msg(&mp_type_AttributeError, MP_ERROR_TEXT("no such attribute"));
1240 1241
    #else
    mp_raise_msg_varg(&mp_type_AttributeError,
1242
        MP_ERROR_TEXT("'%s' object has no attribute '%q'"),
1243 1244
        mp_obj_get_type_str(base), attr);
    #endif
1245 1246
}

1247
mp_obj_t mp_getiter(mp_obj_t o_in, mp_obj_iter_buf_t *iter_buf) {
1248
    assert(o_in);
1249
    const mp_obj_type_t *type = mp_obj_get_type(o_in);
1250 1251 1252 1253 1254 1255

    // Check for native getiter which is the identity.  We handle this case explicitly
    // so we don't unnecessarily allocate any RAM for the iter_buf, which won't be used.
    if (type->getiter == mp_identity_getiter) {
        return o_in;
    }
1256 1257

    // check for native getiter (corresponds to __iter__)
1258
    if (type->getiter != NULL) {
1259 1260 1261 1262 1263
        if (iter_buf == NULL && type->getiter != mp_obj_instance_getiter) {
            // if caller did not provide a buffer then allocate one on the heap
            // mp_obj_instance_getiter is special, it will allocate only if needed
            iter_buf = m_new_obj(mp_obj_iter_buf_t);
        }
1264
        mp_obj_t iter = type->getiter(o_in, iter_buf);
1265 1266
        if (iter != MP_OBJ_NULL) {
            return iter;
1267
        }
1268 1269 1270 1271 1272 1273 1274
    }

    // check for __getitem__
    mp_obj_t dest[2];
    mp_load_method_maybe(o_in, MP_QSTR___getitem__, dest);
    if (dest[0] != MP_OBJ_NULL) {
        // __getitem__ exists, create and return an iterator
1275 1276 1277 1278
        if (iter_buf == NULL) {
            // if caller did not provide a buffer then allocate one on the heap
            iter_buf = m_new_obj(mp_obj_iter_buf_t);
        }
1279
        return mp_obj_new_getitem_iter(dest, iter_buf);
1280 1281 1282
    }

    // object not iterable
1283
    #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
1284
    mp_raise_TypeError(MP_ERROR_TEXT("object not iterable"));
1285 1286
    #else
    mp_raise_msg_varg(&mp_type_TypeError,
1287
        MP_ERROR_TEXT("'%s' object isn't iterable"), mp_obj_get_type_str(o_in));
1288 1289
    #endif

1290
}
1291

1292
// may return MP_OBJ_STOP_ITERATION as an optimisation instead of raise StopIteration()
1293
// may also raise StopIteration()
D
Damien George 已提交
1294
mp_obj_t mp_iternext_allow_raise(mp_obj_t o_in) {
1295
    const mp_obj_type_t *type = mp_obj_get_type(o_in);
1296
    if (type->iternext != NULL) {
1297
        MP_STATE_THREAD(stop_iteration_arg) = MP_OBJ_NULL;
1298
        return type->iternext(o_in);
1299
    } else {
1300 1301
        // check for __next__ method
        mp_obj_t dest[2];
D
Damien George 已提交
1302
        mp_load_method_maybe(o_in, MP_QSTR___next__, dest);
1303 1304
        if (dest[0] != MP_OBJ_NULL) {
            // __next__ exists, call it and return its result
D
Damien George 已提交
1305
            return mp_call_method_n_kw(0, 0, dest);
1306
        } else {
1307
            #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
1308
            mp_raise_TypeError(MP_ERROR_TEXT("object not an iterator"));
1309 1310
            #else
            mp_raise_msg_varg(&mp_type_TypeError,
1311
                MP_ERROR_TEXT("'%s' object isn't an iterator"), mp_obj_get_type_str(o_in));
1312
            #endif
1313
        }
1314 1315 1316
    }
}

1317
// will always return MP_OBJ_STOP_ITERATION instead of raising StopIteration() (or any subclass thereof)
1318
// may raise other exceptions
D
Damien George 已提交
1319
mp_obj_t mp_iternext(mp_obj_t o_in) {
1320
    MP_STACK_CHECK(); // enumerate, filter, map and zip can recursively call mp_iternext
1321
    const mp_obj_type_t *type = mp_obj_get_type(o_in);
1322
    if (type->iternext != NULL) {
1323
        MP_STATE_THREAD(stop_iteration_arg) = MP_OBJ_NULL;
1324 1325 1326 1327
        return type->iternext(o_in);
    } else {
        // check for __next__ method
        mp_obj_t dest[2];
D
Damien George 已提交
1328
        mp_load_method_maybe(o_in, MP_QSTR___next__, dest);
1329 1330 1331 1332
        if (dest[0] != MP_OBJ_NULL) {
            // __next__ exists, call it and return its result
            nlr_buf_t nlr;
            if (nlr_push(&nlr) == 0) {
D
Damien George 已提交
1333
                mp_obj_t ret = mp_call_method_n_kw(0, 0, dest);
1334 1335 1336
                nlr_pop();
                return ret;
            } else {
1337
                if (mp_obj_is_subclass_fast(MP_OBJ_FROM_PTR(((mp_obj_base_t *)nlr.ret_val)->type), MP_OBJ_FROM_PTR(&mp_type_StopIteration))) {
1338
                    return mp_make_stop_iteration(mp_obj_exception_get_value(MP_OBJ_FROM_PTR(nlr.ret_val)));
1339
                } else {
1340
                    nlr_jump(nlr.ret_val);
1341 1342 1343
                }
            }
        } else {
1344
            #if MICROPY_ERROR_REPORTING <= MICROPY_ERROR_REPORTING_TERSE
1345
            mp_raise_TypeError(MP_ERROR_TEXT("object not an iterator"));
1346 1347
            #else
            mp_raise_msg_varg(&mp_type_TypeError,
1348
                MP_ERROR_TEXT("'%s' object isn't an iterator"), mp_obj_get_type_str(o_in));
1349
            #endif
1350 1351 1352 1353
        }
    }
}

1354
mp_vm_return_kind_t mp_resume(mp_obj_t self_in, mp_obj_t send_value, mp_obj_t throw_value, mp_obj_t *ret_val) {
1355
    assert((send_value != MP_OBJ_NULL) ^ (throw_value != MP_OBJ_NULL));
1356
    const mp_obj_type_t *type = mp_obj_get_type(self_in);
1357 1358 1359 1360 1361 1362

    if (type == &mp_type_gen_instance) {
        return mp_obj_gen_resume(self_in, send_value, throw_value, ret_val);
    }

    if (type->iternext != NULL && send_value == mp_const_none) {
1363
        MP_STATE_THREAD(stop_iteration_arg) = MP_OBJ_NULL;
1364
        mp_obj_t ret = type->iternext(self_in);
1365
        *ret_val = ret;
1366
        if (ret != MP_OBJ_STOP_ITERATION) {
1367 1368
            return MP_VM_RETURN_YIELD;
        } else {
1369
            // The generator is finished.
1370 1371 1372 1373 1374
            // This is an optimised "raise StopIteration(*ret_val)".
            *ret_val = MP_STATE_THREAD(stop_iteration_arg);
            if (*ret_val == MP_OBJ_NULL) {
                *ret_val = mp_const_none;
            }
1375 1376 1377 1378 1379 1380
            return MP_VM_RETURN_NORMAL;
        }
    }

    mp_obj_t dest[3]; // Reserve slot for send() arg

1381
    // Python instance iterator protocol
1382 1383 1384
    if (send_value == mp_const_none) {
        mp_load_method_maybe(self_in, MP_QSTR___next__, dest);
        if (dest[0] != MP_OBJ_NULL) {
1385 1386
            *ret_val = mp_call_method_n_kw(0, 0, dest);
            return MP_VM_RETURN_YIELD;
1387 1388 1389
        }
    }

1390 1391
    // Either python instance generator protocol, or native object
    // generator protocol.
1392 1393 1394 1395 1396 1397 1398
    if (send_value != MP_OBJ_NULL) {
        mp_load_method(self_in, MP_QSTR_send, dest);
        dest[2] = send_value;
        *ret_val = mp_call_method_n_kw(1, 0, dest);
        return MP_VM_RETURN_YIELD;
    }

1399 1400
    assert(throw_value != MP_OBJ_NULL);
    {
1401
        if (mp_obj_is_subclass_fast(MP_OBJ_FROM_PTR(mp_obj_get_type(throw_value)), MP_OBJ_FROM_PTR(&mp_type_GeneratorExit))) {
1402 1403
            mp_load_method_maybe(self_in, MP_QSTR_close, dest);
            if (dest[0] != MP_OBJ_NULL) {
1404 1405
                // TODO: Exceptions raised in close() are not propagated,
                // printed to sys.stderr
1406 1407 1408 1409
                *ret_val = mp_call_method_n_kw(0, 0, dest);
                // We assume one can't "yield" from close()
                return MP_VM_RETURN_NORMAL;
            }
1410 1411 1412 1413 1414 1415 1416 1417 1418
        } else {
            mp_load_method_maybe(self_in, MP_QSTR_throw, dest);
            if (dest[0] != MP_OBJ_NULL) {
                dest[2] = throw_value;
                *ret_val = mp_call_method_n_kw(1, 0, dest);
                // If .throw() method returned, we assume it's value to yield
                // - any exception would be thrown with nlr_raise().
                return MP_VM_RETURN_YIELD;
            }
1419 1420 1421 1422 1423 1424
        }
        // If there's nowhere to throw exception into, then we assume that object
        // is just incapable to handle it, so any exception thrown into it
        // will be propagated up. This behavior is approved by test_pep380.py
        // test_delegation_of_close_to_non_generator(),
        //  test_delegating_throw_to_non_generator()
1425 1426
        if (mp_obj_exception_match(throw_value, MP_OBJ_FROM_PTR(&mp_type_StopIteration))) {
            // PEP479: if StopIteration is raised inside a generator it is replaced with RuntimeError
1427
            *ret_val = mp_obj_new_exception_msg(&mp_type_RuntimeError, MP_ERROR_TEXT("generator raised StopIteration"));
1428 1429 1430
        } else {
            *ret_val = mp_make_raise_obj(throw_value);
        }
1431
        return MP_VM_RETURN_EXCEPTION;
1432 1433 1434
    }
}

D
Damien George 已提交
1435
mp_obj_t mp_make_raise_obj(mp_obj_t o) {
1436 1437 1438 1439
    DEBUG_printf("raise %p\n", o);
    if (mp_obj_is_exception_type(o)) {
        // o is an exception type (it is derived from BaseException (or is BaseException))
        // create and return a new exception instance by calling o
1440 1441
        // TODO could have an option to disable traceback, then builtin exceptions (eg TypeError)
        // could have const instances in ROM which we return here instead
1442 1443 1444 1445
        o = mp_call_function_n_kw(o, 0, 0, NULL);
    }

    if (mp_obj_is_exception_instance(o)) {
1446 1447 1448 1449
        // o is an instance of an exception, so use it as the exception
        return o;
    } else {
        // o cannot be used as an exception, so return a type error (which will be raised by the caller)
1450
        return mp_obj_new_exception_msg(&mp_type_TypeError, MP_ERROR_TEXT("exceptions must derive from BaseException"));
1451 1452 1453
    }
}

D
Damien George 已提交
1454
mp_obj_t mp_import_name(qstr name, mp_obj_t fromlist, mp_obj_t level) {
1455
    DEBUG_printf("import name '%s' level=%d\n", qstr_str(name), MP_OBJ_SMALL_INT_VALUE(level));
1456

D
Damien 已提交
1457
    // build args array
1458
    mp_obj_t args[5];
1459
    args[0] = MP_OBJ_NEW_QSTR(name);
1460 1461
    args[1] = mp_const_none; // TODO should be globals
    args[2] = mp_const_none; // TODO should be locals
D
Damien 已提交
1462
    args[3] = fromlist;
1463
    args[4] = level;
D
Damien 已提交
1464

1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
    #if MICROPY_CAN_OVERRIDE_BUILTINS
    // Lookup __import__ and call that if it exists
    mp_obj_dict_t *bo_dict = MP_STATE_VM(mp_module_builtins_override_dict);
    if (bo_dict != NULL) {
        mp_map_elem_t *import = mp_map_lookup(&bo_dict->map, MP_OBJ_NEW_QSTR(MP_QSTR___import__), MP_MAP_LOOKUP);
        if (import != NULL) {
            return mp_call_function_n_kw(import->value, 5, 0, args);
        }
    }
    #endif

1476
    return mp_builtin___import__(5, args);
D
Damien 已提交
1477 1478
}

D
Damien George 已提交
1479
mp_obj_t mp_import_from(mp_obj_t module, qstr name) {
1480 1481
    DEBUG_printf("import from %p %s\n", module, qstr_str(name));

1482 1483 1484 1485 1486 1487
    mp_obj_t dest[2];

    mp_load_method_maybe(module, name, dest);

    if (dest[1] != MP_OBJ_NULL) {
        // Hopefully we can't import bound method from an object
1488
    import_error:
1489
        mp_raise_msg_varg(&mp_type_ImportError, MP_ERROR_TEXT("can't import name %q"), name);
1490 1491 1492 1493 1494 1495
    }

    if (dest[0] != MP_OBJ_NULL) {
        return dest[0];
    }

1496 1497
    #if MICROPY_ENABLE_EXTERNAL_IMPORT

1498
    // See if it's a package, then can try FS import
1499
    if (!mp_obj_is_package(module)) {
1500
        goto import_error;
D
Damien 已提交
1501
    }
1502 1503

    mp_load_method_maybe(module, MP_QSTR___name__, dest);
1504
    size_t pkg_name_len;
1505 1506
    const char *pkg_name = mp_obj_str_get_data(dest[0], &pkg_name_len);

S
stijn 已提交
1507
    const uint dot_name_len = pkg_name_len + 1 + qstr_len(name);
1508
    char *dot_name = mp_local_alloc(dot_name_len);
1509 1510 1511
    memcpy(dot_name, pkg_name, pkg_name_len);
    dot_name[pkg_name_len] = '.';
    memcpy(dot_name + pkg_name_len + 1, qstr_str(name), qstr_len(name));
S
stijn 已提交
1512
    qstr dot_name_q = qstr_from_strn(dot_name, dot_name_len);
1513
    mp_local_free(dot_name);
1514

1515 1516
    // For fromlist, pass sentinel "non empty" value to force returning of leaf module
    return mp_import_name(dot_name_q, mp_const_true, MP_OBJ_NEW_SMALL_INT(0));
1517 1518 1519 1520 1521 1522 1523

    #else

    // Package import not supported with external imports disabled
    goto import_error;

    #endif
D
Damien 已提交
1524 1525
}

D
Damien George 已提交
1526
void mp_import_all(mp_obj_t module) {
1527 1528
    DEBUG_printf("import all %p\n", module);

1529
    // TODO: Support __all__
1530
    mp_map_t *map = &mp_obj_module_get_globals(module)->map;
1531
    for (size_t i = 0; i < map->alloc; i++) {
1532
        if (mp_map_slot_is_filled(map, i)) {
1533 1534 1535 1536 1537 1538 1539
            // Entry in module global scope may be generated programmatically
            // (and thus be not a qstr for longer names). Avoid turning it in
            // qstr if it has '_' and was used exactly to save memory.
            const char *name = mp_obj_str_get_str(map->table[i].key);
            if (*name != '_') {
                qstr qname = mp_obj_str_get_qstr(map->table[i].key);
                mp_store_name(qname, map->table[i].value);
1540
            }
1541 1542 1543 1544
        }
    }
}

1545 1546
#if MICROPY_ENABLE_COMPILER

1547
mp_obj_t mp_parse_compile_execute(mp_lexer_t *lex, mp_parse_input_kind_t parse_input_kind, mp_obj_dict_t *globals, mp_obj_dict_t *locals) {
1548 1549 1550
    // save context
    mp_obj_dict_t *volatile old_globals = mp_globals_get();
    mp_obj_dict_t *volatile old_locals = mp_locals_get();
1551

1552
    // set new context
1553 1554 1555 1556 1557
    mp_globals_set(globals);
    mp_locals_set(locals);

    nlr_buf_t nlr;
    if (nlr_push(&nlr) == 0) {
1558
        qstr source_name = lex->source_name;
1559
        mp_parse_tree_t parse_tree = mp_parse(lex, parse_input_kind);
1560
        mp_obj_t module_fun = mp_compile(&parse_tree, source_name, parse_input_kind == MP_PARSE_SINGLE_INPUT);
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571

        mp_obj_t ret;
        if (MICROPY_PY_BUILTINS_COMPILE && globals == NULL) {
            // for compile only, return value is the module function
            ret = module_fun;
        } else {
            // execute module function and get return value
            ret = mp_call_function_0(module_fun);
        }

        // finish nlr block, restore context and return value
1572 1573 1574 1575 1576 1577 1578 1579
        nlr_pop();
        mp_globals_set(old_globals);
        mp_locals_set(old_locals);
        return ret;
    } else {
        // exception; restore context and re-raise same exception
        mp_globals_set(old_globals);
        mp_locals_set(old_locals);
1580
        nlr_jump(nlr.ret_val);
1581 1582 1583
    }
}

1584 1585
#endif // MICROPY_ENABLE_COMPILER

1586
NORETURN void m_malloc_fail(size_t num_bytes) {
1587
    DEBUG_printf("memory allocation failed, allocating %u bytes\n", (uint)num_bytes);
1588
    #if MICROPY_ENABLE_GC
1589
    if (gc_is_locked()) {
1590
        mp_raise_msg(&mp_type_MemoryError, MP_ERROR_TEXT("memory allocation failed, heap is locked"));
1591
    }
1592
    #endif
1593
    mp_raise_msg_varg(&mp_type_MemoryError,
1594
        MP_ERROR_TEXT("memory allocation failed, allocating %u bytes"), (uint)num_bytes);
1595 1596
}

1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
#if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_NONE

NORETURN void mp_raise_type(const mp_obj_type_t *exc_type) {
    nlr_raise(mp_obj_new_exception(exc_type));
}

NORETURN void mp_raise_ValueError_no_msg(void) {
    mp_raise_type(&mp_type_ValueError);
}

NORETURN void mp_raise_TypeError_no_msg(void) {
    mp_raise_type(&mp_type_TypeError);
}

NORETURN void mp_raise_NotImplementedError_no_msg(void) {
    mp_raise_type(&mp_type_NotImplementedError);
}

#else

1617
NORETURN void mp_raise_msg(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg) {
1618 1619 1620 1621 1622
    if (msg == NULL) {
        nlr_raise(mp_obj_new_exception(exc_type));
    } else {
        nlr_raise(mp_obj_new_exception_msg(exc_type, msg));
    }
1623 1624
}

1625
NORETURN void mp_raise_msg_varg(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, ...) {
1626 1627
    va_list args;
    va_start(args, fmt);
1628
    mp_obj_t exc = mp_obj_new_exception_msg_vlist(exc_type, fmt, args);
1629 1630 1631 1632
    va_end(args);
    nlr_raise(exc);
}

1633
NORETURN void mp_raise_ValueError(mp_rom_error_text_t msg) {
1634 1635 1636
    mp_raise_msg(&mp_type_ValueError, msg);
}

1637
NORETURN void mp_raise_TypeError(mp_rom_error_text_t msg) {
1638 1639 1640
    mp_raise_msg(&mp_type_TypeError, msg);
}

1641
NORETURN void mp_raise_NotImplementedError(mp_rom_error_text_t msg) {
1642
    mp_raise_msg(&mp_type_NotImplementedError, msg);
1643
}
1644

1645 1646
#endif

1647 1648 1649 1650
NORETURN void mp_raise_type_arg(const mp_obj_type_t *exc_type, mp_obj_t arg) {
    nlr_raise(mp_obj_new_exception_arg1(exc_type, arg));
}

1651 1652 1653 1654
NORETURN void mp_raise_StopIteration(mp_obj_t arg) {
    if (arg == MP_OBJ_NULL) {
        mp_raise_type(&mp_type_StopIteration);
    } else {
1655
        mp_raise_type_arg(&mp_type_StopIteration, arg);
1656 1657 1658
    }
}

1659
NORETURN void mp_raise_OSError(int errno_) {
1660
    mp_raise_type_arg(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(errno_));
1661 1662
}

1663
#if MICROPY_STACK_CHECK || MICROPY_ENABLE_PYSTACK
1664
NORETURN void mp_raise_recursion_depth(void) {
1665
    mp_raise_type_arg(&mp_type_RuntimeError, MP_OBJ_NEW_QSTR(MP_QSTR_maximum_space_recursion_space_depth_space_exceeded));
1666 1667
}
#endif