Branch data Line data Source code
1 : : /*
2 : : * This file is part of the MicroPython project, http://micropython.org/
3 : : *
4 : : * The MIT License (MIT)
5 : : *
6 : : * Copyright (c) 2013, 2014 Damien P. George
7 : : * Copyright (c) 2014 Paul Sokolovsky
8 : : *
9 : : * Permission is hereby granted, free of charge, to any person obtaining a copy
10 : : * of this software and associated documentation files (the "Software"), to deal
11 : : * in the Software without restriction, including without limitation the rights
12 : : * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 : : * copies of the Software, and to permit persons to whom the Software is
14 : : * furnished to do so, subject to the following conditions:
15 : : *
16 : : * The above copyright notice and this permission notice shall be included in
17 : : * all copies or substantial portions of the Software.
18 : : *
19 : : * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 : : * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 : : * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 : : * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 : : * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 : : * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 : : * THE SOFTWARE.
26 : : */
27 : :
28 : : #include <string.h>
29 : : #include <assert.h>
30 : :
31 : : #include "py/objtuple.h"
32 : : #include "py/objfun.h"
33 : : #include "py/runtime.h"
34 : : #include "py/bc.h"
35 : : #include "py/cstack.h"
36 : :
37 : : #if MICROPY_DEBUG_VERBOSE // print debugging info
38 : : #define DEBUG_PRINT (1)
39 : : #else // don't print debugging info
40 : : #define DEBUG_PRINT (0)
41 : : #define DEBUG_printf(...) (void)0
42 : : #endif
43 : :
44 : : // Note: the "name" entry in mp_obj_type_t for a function type must be
45 : : // MP_QSTR_function because it is used to determine if an object is of generic
46 : : // function type.
47 : :
48 : : /******************************************************************************/
49 : : /* builtin functions */
50 : :
51 : 8076890 : static mp_obj_t fun_builtin_0_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
52 : 8076890 : (void)args;
53 [ + - - + ]: 8076890 : assert(mp_obj_is_type(self_in, &mp_type_fun_builtin_0));
54 : 8076890 : mp_obj_fun_builtin_fixed_t *self = MP_OBJ_TO_PTR(self_in);
55 : 8076890 : mp_arg_check_num(n_args, n_kw, 0, 0, false);
56 : 8076890 : return self->fun._0();
57 : : }
58 : :
59 : : MP_DEFINE_CONST_OBJ_TYPE(
60 : : mp_type_fun_builtin_0, MP_QSTR_function, MP_TYPE_FLAG_BINDS_SELF | MP_TYPE_FLAG_BUILTIN_FUN,
61 : : call, fun_builtin_0_call
62 : : );
63 : :
64 : 875251 : static mp_obj_t fun_builtin_1_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
65 [ + - - + ]: 875251 : assert(mp_obj_is_type(self_in, &mp_type_fun_builtin_1));
66 : 875251 : mp_obj_fun_builtin_fixed_t *self = MP_OBJ_TO_PTR(self_in);
67 : 875251 : mp_arg_check_num(n_args, n_kw, 1, 1, false);
68 : 875250 : return self->fun._1(args[0]);
69 : : }
70 : :
71 : : MP_DEFINE_CONST_OBJ_TYPE(
72 : : mp_type_fun_builtin_1, MP_QSTR_function, MP_TYPE_FLAG_BINDS_SELF | MP_TYPE_FLAG_BUILTIN_FUN,
73 : : call, fun_builtin_1_call
74 : : );
75 : :
76 : 8435194 : static mp_obj_t fun_builtin_2_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
77 [ + - - + ]: 8435194 : assert(mp_obj_is_type(self_in, &mp_type_fun_builtin_2));
78 : 8435194 : mp_obj_fun_builtin_fixed_t *self = MP_OBJ_TO_PTR(self_in);
79 : 8435194 : mp_arg_check_num(n_args, n_kw, 2, 2, false);
80 : 8435079 : return self->fun._2(args[0], args[1]);
81 : : }
82 : :
83 : : MP_DEFINE_CONST_OBJ_TYPE(
84 : : mp_type_fun_builtin_2, MP_QSTR_function, MP_TYPE_FLAG_BINDS_SELF | MP_TYPE_FLAG_BUILTIN_FUN,
85 : : call, fun_builtin_2_call
86 : : );
87 : :
88 : 7833 : static mp_obj_t fun_builtin_3_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
89 [ + - - + ]: 7833 : assert(mp_obj_is_type(self_in, &mp_type_fun_builtin_3));
90 : 7833 : mp_obj_fun_builtin_fixed_t *self = MP_OBJ_TO_PTR(self_in);
91 : 7833 : mp_arg_check_num(n_args, n_kw, 3, 3, false);
92 : 7831 : return self->fun._3(args[0], args[1], args[2]);
93 : : }
94 : :
95 : : MP_DEFINE_CONST_OBJ_TYPE(
96 : : mp_type_fun_builtin_3, MP_QSTR_function, MP_TYPE_FLAG_BINDS_SELF | MP_TYPE_FLAG_BUILTIN_FUN,
97 : : call, fun_builtin_3_call
98 : : );
99 : :
100 : 2086222 : static mp_obj_t fun_builtin_var_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
101 [ + - - + ]: 2086222 : assert(mp_obj_is_type(self_in, &mp_type_fun_builtin_var));
102 : 2086222 : mp_obj_fun_builtin_var_t *self = MP_OBJ_TO_PTR(self_in);
103 : :
104 : : // check number of arguments
105 : 2086222 : mp_arg_check_num_sig(n_args, n_kw, self->sig);
106 : :
107 [ + + ]: 2086212 : if (self->sig & 1) {
108 : : // function allows keywords
109 : :
110 : : // we create a map directly from the given args array; self->fun.kw does still
111 : : // expect args to have both positional and keyword arguments, ordered as:
112 : : // arg0 arg1 ... arg<n_args> key0 value0 key1 value1 ... key<n_kw> value<n_kw>
113 : 874641 : mp_map_t kw_args;
114 : 874641 : mp_map_init_fixed_table(&kw_args, n_kw, args + n_args);
115 : :
116 : 874641 : return self->fun.kw(n_args, args, &kw_args);
117 : :
118 : : } else {
119 : : // function takes a variable number of arguments, but no keywords
120 : :
121 : 1211571 : return self->fun.var(n_args, args);
122 : : }
123 : : }
124 : :
125 : : MP_DEFINE_CONST_OBJ_TYPE(
126 : : mp_type_fun_builtin_var, MP_QSTR_function, MP_TYPE_FLAG_BINDS_SELF | MP_TYPE_FLAG_BUILTIN_FUN,
127 : : call, fun_builtin_var_call
128 : : );
129 : :
130 : : /******************************************************************************/
131 : : /* byte code functions */
132 : :
133 : 65 : qstr mp_obj_fun_get_name(mp_const_obj_t fun_in) {
134 : 65 : const mp_obj_fun_bc_t *fun = MP_OBJ_TO_PTR(fun_in);
135 : 65 : const byte *bc = fun->bytecode;
136 : :
137 : : #if MICROPY_EMIT_NATIVE
138 [ + + + + ]: 65 : if (fun->base.type == &mp_type_fun_native || fun->base.type == &mp_type_native_gen_wrap) {
139 [ + + ]: 34 : bc = mp_obj_fun_native_get_prelude_ptr(fun);
140 : : }
141 : : #endif
142 : :
143 [ + + ]: 97 : MP_BC_PRELUDE_SIG_DECODE(bc);
144 [ - + ]: 65 : MP_BC_PRELUDE_SIZE_DECODE(bc);
145 : :
146 : 65 : mp_uint_t name = mp_decode_uint_value(bc);
147 : : #if MICROPY_EMIT_BYTECODE_USES_QSTR_TABLE
148 : 65 : name = fun->context->constants.qstr_table[name];
149 : : #endif
150 : :
151 : 65 : return name;
152 : : }
153 : :
154 : : #if MICROPY_CPYTHON_COMPAT
155 : 5 : static void fun_bc_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) {
156 : 5 : (void)kind;
157 : 5 : mp_obj_fun_bc_t *o = MP_OBJ_TO_PTR(o_in);
158 : 5 : mp_printf(print, "<function %q at 0x%p>", mp_obj_fun_get_name(o_in), o);
159 : 5 : }
160 : : #endif
161 : :
162 : : #if DEBUG_PRINT
163 : : static void dump_args(const mp_obj_t *a, size_t sz) {
164 : : DEBUG_printf("%p: ", a);
165 : : for (size_t i = 0; i < sz; i++) {
166 : : DEBUG_printf("%p ", a[i]);
167 : : }
168 : : DEBUG_printf("\n");
169 : : }
170 : : #else
171 : : #define dump_args(...) (void)0
172 : : #endif
173 : :
174 : : // With this macro you can tune the maximum number of function state bytes
175 : : // that will be allocated on the stack. Any function that needs more
176 : : // than this will try to use the heap, with fallback to stack allocation.
177 : : #define VM_MAX_STATE_ON_STACK (sizeof(mp_uint_t) * 11)
178 : :
179 : : #define DECODE_CODESTATE_SIZE(bytecode, n_state_out_var, state_size_out_var) \
180 : : { \
181 : : const uint8_t *ip = bytecode; \
182 : : size_t n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_def_args; \
183 : : MP_BC_PRELUDE_SIG_DECODE_INTO(ip, n_state_out_var, n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_def_args); \
184 : : (void)scope_flags; (void)n_pos_args; (void)n_kwonly_args; (void)n_def_args; \
185 : : \
186 : : /* state size in bytes */ \
187 : : state_size_out_var = n_state_out_var * sizeof(mp_obj_t) \
188 : : + n_exc_stack * sizeof(mp_exc_stack_t); \
189 : : }
190 : :
191 : : #define INIT_CODESTATE(code_state, _fun_bc, _n_state, n_args, n_kw, args) \
192 : : code_state->fun_bc = _fun_bc; \
193 : : code_state->n_state = _n_state; \
194 : : mp_setup_code_state(code_state, n_args, n_kw, args); \
195 : : code_state->old_globals = mp_globals_get();
196 : :
197 : : #if MICROPY_STACKLESS
198 : : mp_code_state_t *mp_obj_fun_bc_prepare_codestate(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
199 : : mp_cstack_check();
200 : : mp_obj_fun_bc_t *self = MP_OBJ_TO_PTR(self_in);
201 : :
202 : : size_t n_state, state_size;
203 : : DECODE_CODESTATE_SIZE(self->bytecode, n_state, state_size);
204 : :
205 : : mp_code_state_t *code_state;
206 : : #if MICROPY_ENABLE_PYSTACK
207 : : code_state = mp_pystack_alloc(sizeof(mp_code_state_t) + state_size);
208 : : #else
209 : : // If we use m_new_obj_var(), then on no memory, MemoryError will be
210 : : // raised. But this is not correct exception for a function call,
211 : : // RuntimeError should be raised instead. So, we use m_new_obj_var_maybe(),
212 : : // return NULL, then vm.c takes the needed action (either raise
213 : : // RuntimeError or fallback to stack allocation).
214 : : code_state = m_new_obj_var_maybe(mp_code_state_t, state, byte, state_size);
215 : : if (!code_state) {
216 : : return NULL;
217 : : }
218 : : #endif
219 : :
220 : : INIT_CODESTATE(code_state, self, n_state, n_args, n_kw, args);
221 : :
222 : : // execute the byte code with the correct globals context
223 : : mp_globals_set(self->context->module.globals);
224 : :
225 : : return code_state;
226 : : }
227 : : #endif
228 : :
229 : 8182167 : static mp_obj_t fun_bc_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
230 : 8182167 : mp_cstack_check();
231 : :
232 : 7817246 : DEBUG_printf("Input n_args: " UINT_FMT ", n_kw: " UINT_FMT "\n", n_args, n_kw);
233 : 7817246 : DEBUG_printf("Input pos args: ");
234 : 7817246 : dump_args(args, n_args);
235 : 7817246 : DEBUG_printf("Input kw args: ");
236 : 7817246 : dump_args(args + n_args, n_kw * 2);
237 : :
238 : 7817246 : mp_obj_fun_bc_t *self = MP_OBJ_TO_PTR(self_in);
239 : :
240 : 7817246 : size_t n_state, state_size;
241 [ + + ]: 8174327 : DECODE_CODESTATE_SIZE(self->bytecode, n_state, state_size);
242 : :
243 : : // allocate state for locals and stack
244 : 7817246 : mp_code_state_t *code_state = NULL;
245 : : #if MICROPY_ENABLE_PYSTACK
246 : : code_state = mp_pystack_alloc(offsetof(mp_code_state_t, state) + state_size);
247 : : #else
248 [ + + ]: 7817246 : if (state_size > VM_MAX_STATE_ON_STACK) {
249 : 336102 : code_state = m_new_obj_var_maybe(mp_code_state_t, state, byte, state_size);
250 : : #if MICROPY_DEBUG_VM_STACK_OVERFLOW
251 : : if (code_state != NULL) {
252 : : memset(code_state->state, 0, state_size);
253 : : }
254 : : #endif
255 : : }
256 [ + + ]: 334907 : if (code_state == NULL) {
257 : 7481160 : code_state = alloca(offsetof(mp_code_state_t, state) + state_size);
258 : : #if MICROPY_DEBUG_VM_STACK_OVERFLOW
259 : : memset(code_state->state, 0, state_size);
260 : : #endif
261 : 7481160 : state_size = 0; // indicate that we allocated using alloca
262 : : }
263 : : #endif
264 : :
265 : 7816051 : INIT_CODESTATE(code_state, self, n_state, n_args, n_kw, args);
266 : :
267 : : // execute the byte code with the correct globals context
268 : 7853520 : mp_globals_set(self->context->module.globals);
269 : 7924965 : mp_vm_return_kind_t vm_return_kind = mp_execute_bytecode(code_state, MP_OBJ_NULL);
270 : 7718212 : mp_globals_set(code_state->old_globals);
271 : :
272 : : #if MICROPY_DEBUG_VM_STACK_OVERFLOW
273 : : if (vm_return_kind == MP_VM_RETURN_NORMAL) {
274 : : if (code_state->sp < code_state->state) {
275 : : mp_printf(MICROPY_DEBUG_PRINTER, "VM stack underflow: " INT_FMT "\n", code_state->sp - code_state->state);
276 : : assert(0);
277 : : }
278 : : }
279 : : const byte *bytecode_ptr = self->bytecode;
280 : : size_t n_state_unused, n_exc_stack_unused, scope_flags_unused;
281 : : size_t n_pos_args, n_kwonly_args, n_def_args_unused;
282 : : MP_BC_PRELUDE_SIG_DECODE_INTO(bytecode_ptr, n_state_unused, n_exc_stack_unused,
283 : : scope_flags_unused, n_pos_args, n_kwonly_args, n_def_args_unused);
284 : : // We can't check the case when an exception is returned in state[0]
285 : : // and there are no arguments, because in this case our detection slot may have
286 : : // been overwritten by the returned exception (which is allowed).
287 : : if (!(vm_return_kind == MP_VM_RETURN_EXCEPTION && n_pos_args + n_kwonly_args == 0)) {
288 : : // Just check to see that we have at least 1 null object left in the state.
289 : : bool overflow = true;
290 : : for (size_t i = 0; i < n_state - n_pos_args - n_kwonly_args; ++i) {
291 : : if (code_state->state[i] == MP_OBJ_NULL) {
292 : : overflow = false;
293 : : break;
294 : : }
295 : : }
296 : : if (overflow) {
297 : : mp_printf(MICROPY_DEBUG_PRINTER, "VM stack overflow state=%p n_state+1=" UINT_FMT "\n", code_state->state, n_state);
298 : : assert(0);
299 : : }
300 : : }
301 : : #endif
302 : :
303 : 8228619 : mp_obj_t result;
304 [ + + ]: 8228619 : if (vm_return_kind == MP_VM_RETURN_NORMAL) {
305 : : // return value is in *sp
306 : 8079613 : result = *code_state->sp;
307 : : } else {
308 : : // must be an exception because normal functions can't yield
309 [ - + ]: 149006 : assert(vm_return_kind == MP_VM_RETURN_EXCEPTION);
310 : : // returned exception is in state[0]
311 : 149006 : result = code_state->state[0];
312 : : }
313 : :
314 : : #if MICROPY_ENABLE_PYSTACK
315 : : mp_pystack_free(code_state);
316 : : #else
317 : : // free the state if it was allocated on the heap
318 [ + + ]: 8228619 : if (state_size != 0) {
319 : 335996 : m_del_var(mp_code_state_t, state, byte, state_size, code_state);
320 : : }
321 : : #endif
322 : :
323 [ + + ]: 8228824 : if (vm_return_kind == MP_VM_RETURN_NORMAL) {
324 : 8079818 : return result;
325 : : } else { // MP_VM_RETURN_EXCEPTION
326 : 149006 : nlr_raise(result);
327 : : }
328 : : }
329 : :
330 : : #if MICROPY_PY_FUNCTION_ATTRS
331 : 10158 : void mp_obj_fun_bc_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
332 [ + + ]: 10158 : if (dest[0] != MP_OBJ_NULL) {
333 : : // not load attribute
334 : : return;
335 : : }
336 [ + + ]: 10148 : if (attr == MP_QSTR___name__) {
337 : 44 : dest[0] = MP_OBJ_NEW_QSTR(mp_obj_fun_get_name(self_in));
338 : : }
339 [ + + ]: 10148 : if (attr == MP_QSTR___globals__) {
340 : 36 : mp_obj_fun_bc_t *self = MP_OBJ_TO_PTR(self_in);
341 : 36 : dest[0] = MP_OBJ_FROM_PTR(self->context->module.globals);
342 : : }
343 : : }
344 : : #endif
345 : :
346 : : #if MICROPY_CPYTHON_COMPAT
347 : : #define FUN_BC_TYPE_PRINT print, fun_bc_print,
348 : : #else
349 : : #define FUN_BC_TYPE_PRINT
350 : : #endif
351 : :
352 : : #if MICROPY_PY_FUNCTION_ATTRS
353 : : #define FUN_BC_TYPE_ATTR attr, mp_obj_fun_bc_attr,
354 : : #else
355 : : #define FUN_BC_TYPE_ATTR
356 : : #endif
357 : :
358 : : MP_DEFINE_CONST_OBJ_TYPE(
359 : : mp_type_fun_bc,
360 : : MP_QSTR_function,
361 : : MP_TYPE_FLAG_BINDS_SELF,
362 : : FUN_BC_TYPE_PRINT
363 : : FUN_BC_TYPE_ATTR
364 : : call, fun_bc_call
365 : : );
366 : :
367 : 18491 : mp_obj_t mp_obj_new_fun_bc(const mp_obj_t *def_args, const byte *code, const mp_module_context_t *context, struct _mp_raw_code_t *const *child_table) {
368 : 18491 : size_t n_def_args = 0;
369 : 18491 : size_t n_extra_args = 0;
370 : 18491 : mp_obj_tuple_t *def_pos_args = NULL;
371 : 18491 : mp_obj_t def_kw_args = MP_OBJ_NULL;
372 [ + + + + ]: 18491 : if (def_args != NULL && def_args[0] != MP_OBJ_NULL) {
373 [ - + - + : 403 : assert(mp_obj_is_type(def_args[0], &mp_type_tuple));
- + - + +
- - + ]
374 : 403 : def_pos_args = MP_OBJ_TO_PTR(def_args[0]);
375 : 403 : n_def_args = def_pos_args->len;
376 : 403 : n_extra_args = def_pos_args->len;
377 : : }
378 [ + + + + ]: 18491 : if (def_args != NULL && def_args[1] != MP_OBJ_NULL) {
379 [ - + - + : 42 : assert(mp_obj_is_type(def_args[1], &mp_type_dict));
- + - + +
- - + ]
380 : 42 : def_kw_args = def_args[1];
381 : 42 : n_extra_args += 1;
382 : : }
383 : 18491 : mp_obj_fun_bc_t *o = mp_obj_malloc_var(mp_obj_fun_bc_t, extra_args, mp_obj_t, n_extra_args, &mp_type_fun_bc);
384 : 18490 : o->bytecode = code;
385 : 18490 : o->context = context;
386 : 18490 : o->child_table = child_table;
387 [ + + ]: 18490 : if (def_pos_args != NULL) {
388 : 403 : memcpy(o->extra_args, def_pos_args->items, n_def_args * sizeof(mp_obj_t));
389 : : }
390 [ + + ]: 18490 : if (def_kw_args != MP_OBJ_NULL) {
391 : 42 : o->extra_args[n_def_args] = def_kw_args;
392 : : }
393 : 18490 : return MP_OBJ_FROM_PTR(o);
394 : : }
395 : :
396 : : /******************************************************************************/
397 : : /* native functions */
398 : :
399 : : #if MICROPY_EMIT_NATIVE
400 : :
401 : 1062280 : static mp_obj_t fun_native_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
402 : 1062280 : mp_cstack_check();
403 : 1062277 : mp_obj_fun_bc_t *self = MP_OBJ_TO_PTR(self_in);
404 : 1062277 : mp_call_fun_t fun = mp_obj_fun_native_get_function_start(self);
405 : 1062277 : return fun(self_in, n_args, n_kw, args);
406 : : }
407 : :
408 : : #if MICROPY_CPYTHON_COMPAT
409 : : #define FUN_BC_TYPE_PRINT print, fun_bc_print,
410 : : #else
411 : : #define FUN_BC_TYPE_PRINT
412 : : #endif
413 : : #if MICROPY_PY_FUNCTION_ATTRS
414 : : #define FUN_BC_TYPE_ATTR attr, mp_obj_fun_bc_attr,
415 : : #else
416 : : #define FUN_BC_TYPE_ATTR
417 : : #endif
418 : :
419 : : MP_DEFINE_CONST_OBJ_TYPE(
420 : : mp_type_fun_native,
421 : : MP_QSTR_function,
422 : : MP_TYPE_FLAG_BINDS_SELF,
423 : : FUN_BC_TYPE_PRINT
424 : : FUN_BC_TYPE_ATTR
425 : : call, fun_native_call
426 : : );
427 : :
428 : : #endif // MICROPY_EMIT_NATIVE
429 : :
430 : : /******************************************************************************/
431 : : /* viper functions */
432 : :
433 : : #if MICROPY_EMIT_NATIVE
434 : :
435 : 932 : static mp_obj_t fun_viper_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
436 : 932 : mp_cstack_check();
437 : 932 : mp_obj_fun_bc_t *self = MP_OBJ_TO_PTR(self_in);
438 : 932 : mp_call_fun_t fun = MICROPY_MAKE_POINTER_CALLABLE((void *)self->bytecode);
439 : 932 : return fun(self_in, n_args, n_kw, args);
440 : : }
441 : :
442 : : MP_DEFINE_CONST_OBJ_TYPE(
443 : : mp_type_fun_viper,
444 : : MP_QSTR_function,
445 : : MP_TYPE_FLAG_BINDS_SELF,
446 : : call, fun_viper_call
447 : : );
448 : :
449 : : #endif // MICROPY_EMIT_NATIVE
450 : :
451 : : /******************************************************************************/
452 : : /* inline assembler functions */
453 : :
454 : : #if MICROPY_EMIT_INLINE_ASM
455 : :
456 : : typedef mp_uint_t (*inline_asm_fun_0_t)(void);
457 : : typedef mp_uint_t (*inline_asm_fun_1_t)(mp_uint_t);
458 : : typedef mp_uint_t (*inline_asm_fun_2_t)(mp_uint_t, mp_uint_t);
459 : : typedef mp_uint_t (*inline_asm_fun_3_t)(mp_uint_t, mp_uint_t, mp_uint_t);
460 : : typedef mp_uint_t (*inline_asm_fun_4_t)(mp_uint_t, mp_uint_t, mp_uint_t, mp_uint_t);
461 : :
462 : : // convert a MicroPython object to a sensible value for inline asm
463 : : static mp_uint_t convert_obj_for_inline_asm(mp_obj_t obj) {
464 : : // TODO for byte_array, pass pointer to the array
465 : : if (mp_obj_is_small_int(obj)) {
466 : : return MP_OBJ_SMALL_INT_VALUE(obj);
467 : : } else if (obj == mp_const_none) {
468 : : return 0;
469 : : } else if (obj == mp_const_false) {
470 : : return 0;
471 : : } else if (obj == mp_const_true) {
472 : : return 1;
473 : : } else if (mp_obj_is_exact_type(obj, &mp_type_int)) {
474 : : return mp_obj_int_get_truncated(obj);
475 : : } else if (mp_obj_is_str(obj)) {
476 : : // pointer to the string (it's probably constant though!)
477 : : size_t l;
478 : : return (mp_uint_t)mp_obj_str_get_data(obj, &l);
479 : : } else {
480 : : const mp_obj_type_t *type = mp_obj_get_type(obj);
481 : : #if MICROPY_PY_BUILTINS_FLOAT
482 : : if (type == &mp_type_float) {
483 : : // convert float to int (could also pass in float registers)
484 : : return (mp_int_t)mp_obj_float_get(obj);
485 : : }
486 : : #endif
487 : : if (type == &mp_type_tuple || type == &mp_type_list) {
488 : : // pointer to start of tuple (could pass length, but then could use len(x) for that)
489 : : size_t len;
490 : : mp_obj_t *items;
491 : : mp_obj_get_array(obj, &len, &items);
492 : : return (mp_uint_t)items;
493 : : } else {
494 : : mp_buffer_info_t bufinfo;
495 : : if (mp_get_buffer(obj, &bufinfo, MP_BUFFER_READ)) {
496 : : // supports the buffer protocol, return a pointer to the data
497 : : return (mp_uint_t)bufinfo.buf;
498 : : } else {
499 : : // just pass along a pointer to the object
500 : : return (mp_uint_t)obj;
501 : : }
502 : : }
503 : : }
504 : : }
505 : :
506 : : static mp_obj_t fun_asm_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
507 : : mp_obj_fun_asm_t *self = MP_OBJ_TO_PTR(self_in);
508 : :
509 : : mp_arg_check_num(n_args, n_kw, self->n_args, self->n_args, false);
510 : :
511 : : const void *fun = MICROPY_MAKE_POINTER_CALLABLE(self->fun_data);
512 : :
513 : : mp_uint_t ret;
514 : : if (n_args == 0) {
515 : : ret = ((inline_asm_fun_0_t)fun)();
516 : : } else if (n_args == 1) {
517 : : ret = ((inline_asm_fun_1_t)fun)(convert_obj_for_inline_asm(args[0]));
518 : : } else if (n_args == 2) {
519 : : ret = ((inline_asm_fun_2_t)fun)(convert_obj_for_inline_asm(args[0]), convert_obj_for_inline_asm(args[1]));
520 : : } else if (n_args == 3) {
521 : : ret = ((inline_asm_fun_3_t)fun)(convert_obj_for_inline_asm(args[0]), convert_obj_for_inline_asm(args[1]), convert_obj_for_inline_asm(args[2]));
522 : : } else {
523 : : // compiler allows at most 4 arguments
524 : : assert(n_args == 4);
525 : : ret = ((inline_asm_fun_4_t)fun)(
526 : : convert_obj_for_inline_asm(args[0]),
527 : : convert_obj_for_inline_asm(args[1]),
528 : : convert_obj_for_inline_asm(args[2]),
529 : : convert_obj_for_inline_asm(args[3])
530 : : );
531 : : }
532 : :
533 : : return mp_native_to_obj(ret, self->type_sig);
534 : : }
535 : :
536 : : MP_DEFINE_CONST_OBJ_TYPE(
537 : : mp_type_fun_asm,
538 : : MP_QSTR_function,
539 : : MP_TYPE_FLAG_BINDS_SELF,
540 : : call, fun_asm_call
541 : : );
542 : :
543 : : #endif // MICROPY_EMIT_INLINE_ASM
|