Lines Matching refs:DEBUG_OP_printf
50 #define DEBUG_OP_printf(...) DEBUG_printf(__VA_ARGS__) macro
53 #define DEBUG_OP_printf(...) (void)0 macro
162 DEBUG_OP_printf("load name %s\n", qstr_str(qst)); in mp_load_name()
175 DEBUG_OP_printf("load global %s\n", qstr_str(qst)); in mp_load_global()
200 DEBUG_OP_printf("load_build_class\n"); in mp_load_build_class()
214 DEBUG_OP_printf("store name %s <- %p\n", qstr_str(qst), obj); in mp_store_name()
219 DEBUG_OP_printf("delete name %s\n", qstr_str(qst)); in mp_delete_name()
225 DEBUG_OP_printf("store global %s <- %p\n", qstr_str(qst), obj); in mp_store_global()
230 DEBUG_OP_printf("delete global %s\n", qstr_str(qst)); in mp_delete_global()
236 DEBUG_OP_printf("unary " UINT_FMT " %q %p\n", op, mp_unary_op_method_name[op], arg); in mp_unary_op()
315 DEBUG_OP_printf("binary " UINT_FMT " %q %p %p\n", op, mp_binary_op_method_name[op], lhs, rhs); in mp_binary_op()
648 …DEBUG_OP_printf("calling function %p(n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n", fun_in, … in mp_call_function_n_kw()
669 …DEBUG_OP_printf("call method (fun=%p, self=%p, n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n"… in mp_call_method_n_kw()
689 …DEBUG_OP_printf("call method var (fun=%p, self=%p, n_args=%u, n_kw=%u, args=%p, seq=%p, dict=%p)\n… in mp_call_prepare_args_n_kw_var()
904 DEBUG_OP_printf("unpack ex " UINT_FMT " " UINT_FMT "\n", num_left, num_right); in mp_unpack_ex()
962 DEBUG_OP_printf("load attr %p.%s\n", base, qstr_str(attr)); in mp_load_attr()
1117 DEBUG_OP_printf("load method %p.%s\n", base, qstr_str(attr)); in mp_load_method()
1157 DEBUG_OP_printf("store attr %p.%s <- %p\n", base, qstr_str(attr), value); in mp_store_attr()