py/bc0: Order opcodes into groups based on their size and format.

This commit is contained in:
Damien George
2019-09-02 20:24:01 +10:00
parent fe4e1fe4b9
commit 5889cf58db
5 changed files with 111 additions and 96 deletions

View File

@@ -210,13 +210,13 @@ const void *const mp_fun_table[MP_F_NUMBER_OF] = {
mp_binary_op,
mp_obj_new_tuple,
mp_obj_new_list,
mp_obj_list_append,
mp_obj_new_dict,
mp_obj_dict_store,
#if MICROPY_PY_BUILTINS_SET
mp_obj_set_store,
mp_obj_new_set,
mp_obj_set_store,
#endif
mp_obj_list_append,
mp_obj_dict_store,
mp_make_function_from_raw_code,
mp_native_call_function_n_kw,
mp_call_method_n_kw,