Lines Matching refs:SET_TOP
99 #define SET_TOP(val) *sp = (val) macro
417 SET_TOP(mp_load_attr(TOP(), qst)); in mp_execute_bytecode()
437 SET_TOP(obj); in mp_execute_bytecode()
467 SET_TOP(mp_obj_subscr(TOP(), index, MP_OBJ_SENTINEL)); in mp_execute_bytecode()
674 SET_TOP(mp_const_none); in mp_execute_bytecode()
703 SET_TOP(mp_const_none); in mp_execute_bytecode()
797 SET_TOP(mp_getiter(TOP(), NULL)); in mp_execute_bytecode()
857 SET_TOP(mp_obj_new_tuple(unum, sp)); in mp_execute_bytecode()
865 SET_TOP(mp_obj_new_list(unum, sp)); in mp_execute_bytecode()
887 SET_TOP(mp_obj_new_set(unum, sp)); in mp_execute_bytecode()
902 SET_TOP(mp_obj_new_slice(start, stop, step)); in mp_execute_bytecode()
952 SET_TOP(mp_make_function_from_raw_code(ptr, TOP(), def_dict)); in mp_execute_bytecode()
961 SET_TOP(mp_make_closure_from_raw_code(ptr, n_closed_over, sp)); in mp_execute_bytecode()
970 SET_TOP(mp_make_closure_from_raw_code(ptr, 0x100 | n_closed_over, sp)); in mp_execute_bytecode()
1005 SET_TOP(mp_call_function_n_kw(*sp, unum & 0xff, (unum >> 8) & 0xff, sp + 1)); in mp_execute_bytecode()
1051 SET_TOP(mp_call_method_n_kw_var(false, unum, sp)); in mp_execute_bytecode()
1090 SET_TOP(mp_call_method_n_kw(unum & 0xff, (unum >> 8) & 0xff, sp)); in mp_execute_bytecode()
1136 SET_TOP(mp_call_method_n_kw_var(true, unum, sp)); in mp_execute_bytecode()
1262 SET_TOP(ret_value); in mp_execute_bytecode()
1281 SET_TOP(mp_import_name(qst, obj, TOP())); in mp_execute_bytecode()
1314 SET_TOP(mp_unary_op(ip[-1] - MP_BC_UNARY_OP_MULTI, TOP())); in mp_execute_bytecode()
1321 SET_TOP(mp_binary_op(ip[-1] - MP_BC_BINARY_OP_MULTI, lhs, rhs)); in mp_execute_bytecode()
1339 SET_TOP(mp_unary_op(ip[-1] - MP_BC_UNARY_OP_MULTI, TOP())); in mp_execute_bytecode()
1344 SET_TOP(mp_binary_op(ip[-1] - MP_BC_BINARY_OP_MULTI, lhs, rhs)); in mp_execute_bytecode()