2014-03-16 03:14:26 -04:00
|
|
|
#include <stdbool.h>
|
2013-12-21 13:17:45 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mpconfig.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "obj.h"
|
2014-02-01 08:05:04 -05:00
|
|
|
#include "objtuple.h"
|
2014-02-15 19:01:29 -05:00
|
|
|
#include "runtime0.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "runtime.h"
|
|
|
|
#include "bc.h"
|
|
|
|
|
2014-02-16 11:30:49 -05:00
|
|
|
#if 0 // print debugging info
|
|
|
|
#define DEBUG_PRINT (1)
|
|
|
|
#else // don't print debugging info
|
2014-02-26 17:40:35 -05:00
|
|
|
#define DEBUG_printf(...) (void)0
|
2014-02-16 11:30:49 -05:00
|
|
|
#endif
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
/******************************************************************************/
|
|
|
|
/* native functions */
|
|
|
|
|
|
|
|
// mp_obj_fun_native_t defined in obj.h
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC void check_nargs(mp_obj_fun_native_t *self, int n_args, int n_kw) {
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_check_nargs(n_args, self->n_args_min, self->n_args_max, n_kw, self->is_kw);
|
2014-02-17 20:57:13 -05:00
|
|
|
}
|
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
void mp_check_nargs(int n_args, machine_uint_t n_args_min, machine_uint_t n_args_max, int n_kw, bool is_kw) {
|
2014-02-17 20:57:13 -05:00
|
|
|
if (n_kw && !is_kw) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError,
|
2014-01-13 14:55:18 -05:00
|
|
|
"function does not take keyword arguments"));
|
|
|
|
}
|
|
|
|
|
2014-02-17 20:57:13 -05:00
|
|
|
if (n_args_min == n_args_max) {
|
|
|
|
if (n_args != n_args_min) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
|
2014-01-13 14:55:18 -05:00
|
|
|
"function takes %d positional arguments but %d were given",
|
2014-02-17 20:57:13 -05:00
|
|
|
n_args_min, n_args));
|
2014-01-13 14:55:18 -05:00
|
|
|
}
|
|
|
|
} else {
|
2014-02-17 20:57:13 -05:00
|
|
|
if (n_args < n_args_min) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
|
2014-01-13 14:55:18 -05:00
|
|
|
"<fun name>() missing %d required positional arguments: <list of names of params>",
|
2014-02-17 20:57:13 -05:00
|
|
|
n_args_min - n_args));
|
|
|
|
} else if (n_args > n_args_max) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
|
2014-01-13 14:55:18 -05:00
|
|
|
"<fun name> expected at most %d arguments, got %d",
|
2014-02-17 20:57:13 -05:00
|
|
|
n_args_max, n_args));
|
2014-01-13 14:55:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-05 06:50:06 -04:00
|
|
|
STATIC mp_obj_t fun_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
|
|
|
switch (op) {
|
|
|
|
case MP_BINARY_OP_EQUAL:
|
|
|
|
// These objects can be equal only if it's the same underlying structure,
|
|
|
|
// we don't even need to check for 2nd arg type.
|
|
|
|
return MP_BOOL(lhs_in == rhs_in);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t fun_native_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-03-29 09:43:38 -04:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &mp_type_fun_native));
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_fun_native_t *self = self_in;
|
2014-01-18 09:10:48 -05:00
|
|
|
|
2014-01-13 14:55:18 -05:00
|
|
|
// check number of arguments
|
2014-01-18 09:10:48 -05:00
|
|
|
check_nargs(self, n_args, n_kw);
|
|
|
|
|
2014-01-07 12:29:16 -05:00
|
|
|
if (self->is_kw) {
|
2014-01-18 09:10:48 -05:00
|
|
|
// function allows keywords
|
|
|
|
|
2014-02-08 13:53:41 -05:00
|
|
|
// we create a map directly from the given args array
|
|
|
|
mp_map_t kw_args;
|
|
|
|
mp_map_init_fixed_table(&kw_args, n_kw, args + n_args);
|
2014-01-18 09:10:48 -05:00
|
|
|
|
2014-02-08 13:53:41 -05:00
|
|
|
return ((mp_fun_kw_t)self->fun)(n_args, args, &kw_args);
|
2014-01-18 09:10:48 -05:00
|
|
|
|
2014-01-25 18:58:51 -05:00
|
|
|
} else if (self->n_args_min <= 3 && self->n_args_min == self->n_args_max) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// function requires a fixed number of arguments
|
|
|
|
|
|
|
|
// dispatch function call
|
|
|
|
switch (self->n_args_min) {
|
|
|
|
case 0:
|
|
|
|
return ((mp_fun_0_t)self->fun)();
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return ((mp_fun_1_t)self->fun)(args[0]);
|
|
|
|
|
|
|
|
case 2:
|
2014-01-18 09:10:48 -05:00
|
|
|
return ((mp_fun_2_t)self->fun)(args[0], args[1]);
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-01-03 20:15:01 -05:00
|
|
|
case 3:
|
2014-01-18 09:10:48 -05:00
|
|
|
return ((mp_fun_3_t)self->fun)(args[0], args[1], args[2]);
|
2014-01-03 20:15:01 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2014-01-18 09:10:48 -05:00
|
|
|
// function takes a variable number of arguments, but no keywords
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-01-18 09:10:48 -05:00
|
|
|
return ((mp_fun_var_t)self->fun)(n_args, args);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
const mp_obj_type_t mp_type_fun_native = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_function,
|
2014-01-18 09:10:48 -05:00
|
|
|
.call = fun_native_call,
|
2014-04-05 06:50:06 -04:00
|
|
|
.binary_op = fun_binary_op,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
2014-01-13 14:50:05 -05:00
|
|
|
// fun must have the correct signature for n_args fixed arguments
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t mp_make_function_n(int n_args, void *fun) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_fun_native_t *o = m_new_obj(mp_obj_fun_native_t);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_fun_native;
|
2014-01-13 11:42:43 -05:00
|
|
|
o->is_kw = false;
|
2014-01-13 14:50:05 -05:00
|
|
|
o->n_args_min = n_args;
|
|
|
|
o->n_args_max = n_args;
|
2014-01-03 20:15:01 -05:00
|
|
|
o->fun = fun;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t mp_make_function_var(int n_args_min, mp_fun_var_t fun) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_fun_native_t *o = m_new_obj(mp_obj_fun_native_t);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_fun_native;
|
2014-01-13 11:42:43 -05:00
|
|
|
o->is_kw = false;
|
2013-12-21 13:17:45 -05:00
|
|
|
o->n_args_min = n_args_min;
|
2014-02-26 12:47:05 -05:00
|
|
|
o->n_args_max = MP_OBJ_FUN_ARGS_MAX;
|
2013-12-21 13:17:45 -05:00
|
|
|
o->fun = fun;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
// min and max are inclusive
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t mp_make_function_var_between(int n_args_min, int n_args_max, mp_fun_var_t fun) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_fun_native_t *o = m_new_obj(mp_obj_fun_native_t);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_fun_native;
|
2014-01-13 11:42:43 -05:00
|
|
|
o->is_kw = false;
|
2013-12-21 13:17:45 -05:00
|
|
|
o->n_args_min = n_args_min;
|
|
|
|
o->n_args_max = n_args_max;
|
|
|
|
o->fun = fun;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* byte code functions */
|
|
|
|
|
|
|
|
typedef struct _mp_obj_fun_bc_t {
|
|
|
|
mp_obj_base_t base;
|
2014-04-05 17:36:42 -04:00
|
|
|
mp_obj_dict_t *globals; // the context within which this function was defined
|
2014-02-26 12:40:52 -05:00
|
|
|
machine_uint_t n_args : 15; // number of arguments this function takes
|
|
|
|
machine_uint_t n_def_args : 15; // number of default arguments
|
|
|
|
machine_uint_t takes_var_args : 1; // set if this function takes variable args
|
|
|
|
machine_uint_t takes_kw_args : 1; // set if this function takes keyword args
|
2014-01-03 09:03:48 -05:00
|
|
|
const byte *bytecode; // bytecode for the function
|
2014-02-16 11:30:49 -05:00
|
|
|
qstr *args; // argument names (needed to resolve positional args passed as keywords)
|
2014-02-15 19:17:42 -05:00
|
|
|
mp_obj_t extra_args[]; // values of default args (if any), plus a slot at the end for var args and/or kw args (if it takes them)
|
2013-12-21 13:17:45 -05:00
|
|
|
} mp_obj_fun_bc_t;
|
|
|
|
|
2014-02-16 11:30:49 -05:00
|
|
|
#if DEBUG_PRINT
|
2014-03-31 10:59:25 -04:00
|
|
|
STATIC void dump_args(const mp_obj_t *a, int sz) {
|
2014-02-16 11:30:49 -05:00
|
|
|
DEBUG_printf("%p: ", a);
|
|
|
|
for (int i = 0; i < sz; i++) {
|
|
|
|
DEBUG_printf("%p ", a[i]);
|
|
|
|
}
|
|
|
|
DEBUG_printf("\n");
|
|
|
|
}
|
2014-03-31 10:59:25 -04:00
|
|
|
#else
|
|
|
|
#define dump_args(...) (void)0
|
|
|
|
#endif
|
2014-02-16 11:30:49 -05:00
|
|
|
|
2014-03-30 13:21:28 -04:00
|
|
|
// If it's possible to call a function without allocating new argument array,
|
|
|
|
// this function returns true, together with pointers to 2 subarrays to be used
|
|
|
|
// as arguments. Otherwise, it returns false. It is expected that this fucntion
|
|
|
|
// will be accompanied by another, mp_obj_fun_prepare_full_args(), which will
|
|
|
|
// instead take pointer to full-length out-array, and will fill it in. Rationale
|
|
|
|
// being that a caller can try this function and if it succeeds, the function call
|
|
|
|
// can be made without allocating extra memory. Otherwise, caller can allocate memory
|
|
|
|
// and try "full" function. These functions are expected to be refactoring of
|
|
|
|
// code in fun_bc_call() and evenrually replace it.
|
|
|
|
bool mp_obj_fun_prepare_simple_args(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj_t *args,
|
|
|
|
uint *out_args1_len, const mp_obj_t **out_args1, uint *out_args2_len, const mp_obj_t **out_args2) {
|
|
|
|
mp_obj_fun_bc_t *self = self_in;
|
|
|
|
|
|
|
|
assert(n_kw == 0);
|
|
|
|
assert(self->takes_var_args == 0);
|
|
|
|
assert(self->takes_kw_args == 0);
|
|
|
|
|
|
|
|
mp_obj_t *extra_args = self->extra_args + self->n_def_args;
|
|
|
|
uint n_extra_args = 0;
|
|
|
|
|
|
|
|
if (n_args > self->n_args) {
|
|
|
|
goto arg_error;
|
|
|
|
} else {
|
|
|
|
extra_args -= self->n_args - n_args;
|
|
|
|
n_extra_args += self->n_args - n_args;
|
|
|
|
}
|
|
|
|
*out_args1 = args;
|
|
|
|
*out_args1_len = n_args;
|
|
|
|
*out_args2 = extra_args;
|
|
|
|
*out_args2_len = n_extra_args;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
arg_error:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "function takes %d positional arguments but %d were given", self->n_args, n_args));
|
2014-03-30 13:21:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t fun_bc_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-04-09 22:37:58 -04:00
|
|
|
DEBUG_printf("Input n_args: %d, n_kw: %d\n", n_args, n_kw);
|
|
|
|
DEBUG_printf("Input pos args: ");
|
2014-02-16 11:30:49 -05:00
|
|
|
dump_args(args, n_args);
|
2014-04-09 22:37:58 -04:00
|
|
|
DEBUG_printf("Input kw args: ");
|
|
|
|
dump_args(args + n_args, n_kw * 2);
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_fun_bc_t *self = self_in;
|
2014-04-09 22:37:58 -04:00
|
|
|
DEBUG_printf("Func n_def_args: %d\n", self->n_def_args);
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-02-15 19:17:42 -05:00
|
|
|
const mp_obj_t *kwargs = args + n_args;
|
2014-02-15 19:01:29 -05:00
|
|
|
mp_obj_t *extra_args = self->extra_args + self->n_def_args;
|
|
|
|
uint n_extra_args = 0;
|
|
|
|
|
2014-02-16 11:30:49 -05:00
|
|
|
|
2014-02-15 19:17:42 -05:00
|
|
|
// check positional arguments
|
|
|
|
|
2014-02-15 19:01:29 -05:00
|
|
|
if (n_args > self->n_args) {
|
|
|
|
// given more than enough arguments
|
|
|
|
if (!self->takes_var_args) {
|
|
|
|
goto arg_error;
|
|
|
|
}
|
|
|
|
// put extra arguments in varargs tuple
|
|
|
|
*extra_args = mp_obj_new_tuple(n_args - self->n_args, args + self->n_args);
|
|
|
|
n_extra_args = 1;
|
|
|
|
n_args = self->n_args;
|
2014-02-16 11:30:49 -05:00
|
|
|
} else {
|
2014-02-15 19:01:29 -05:00
|
|
|
if (self->takes_var_args) {
|
2014-02-16 11:30:49 -05:00
|
|
|
DEBUG_printf("passing empty tuple as *args\n");
|
2014-02-15 19:01:29 -05:00
|
|
|
*extra_args = mp_const_empty_tuple;
|
|
|
|
n_extra_args = 1;
|
|
|
|
}
|
2014-02-16 11:30:49 -05:00
|
|
|
// Apply processing and check below only if we don't have kwargs,
|
|
|
|
// otherwise, kw handling code below has own extensive checks.
|
|
|
|
if (n_kw == 0) {
|
|
|
|
if (n_args >= self->n_args - self->n_def_args) {
|
|
|
|
// given enough arguments, but may need to use some default arguments
|
|
|
|
extra_args -= self->n_args - n_args;
|
|
|
|
n_extra_args += self->n_args - n_args;
|
|
|
|
} else {
|
|
|
|
goto arg_error;
|
|
|
|
}
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-02-15 19:01:29 -05:00
|
|
|
|
2014-02-15 19:17:42 -05:00
|
|
|
// check keyword arguments
|
|
|
|
|
2014-01-18 09:10:48 -05:00
|
|
|
if (n_kw != 0) {
|
2014-02-16 11:30:49 -05:00
|
|
|
// We cannot use dynamically-sized array here, because GCC indeed
|
|
|
|
// deallocates it on leaving defining scope (unlike most static stack allocs).
|
|
|
|
// So, we have 2 choices: allocate it unconditionally at the top of function
|
|
|
|
// (wastes stack), or use alloca which is guaranteed to dealloc on func exit.
|
|
|
|
//mp_obj_t flat_args[self->n_args];
|
|
|
|
mp_obj_t *flat_args = alloca(self->n_args * sizeof(mp_obj_t));
|
|
|
|
for (int i = self->n_args - 1; i >= 0; i--) {
|
|
|
|
flat_args[i] = MP_OBJ_NULL;
|
|
|
|
}
|
|
|
|
memcpy(flat_args, args, sizeof(*args) * n_args);
|
|
|
|
DEBUG_printf("Initial args: ");
|
|
|
|
dump_args(flat_args, self->n_args);
|
|
|
|
|
|
|
|
mp_obj_t dict = MP_OBJ_NULL;
|
|
|
|
if (self->takes_kw_args) {
|
|
|
|
dict = mp_obj_new_dict(n_kw); // TODO: better go conservative with 0?
|
2014-02-15 19:17:42 -05:00
|
|
|
}
|
|
|
|
for (uint i = 0; i < n_kw; i++) {
|
2014-02-16 11:30:49 -05:00
|
|
|
qstr arg_name = MP_OBJ_QSTR_VALUE(kwargs[2 * i]);
|
|
|
|
for (uint j = 0; j < self->n_args; j++) {
|
|
|
|
if (arg_name == self->args[j]) {
|
|
|
|
if (flat_args[j] != MP_OBJ_NULL) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
|
2014-02-16 11:30:49 -05:00
|
|
|
"function got multiple values for argument '%s'", qstr_str(arg_name)));
|
|
|
|
}
|
|
|
|
flat_args[j] = kwargs[2 * i + 1];
|
|
|
|
goto continue2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Didn't find name match with positional args
|
|
|
|
if (!self->takes_kw_args) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "function does not take keyword arguments"));
|
2014-02-16 11:30:49 -05:00
|
|
|
}
|
2014-02-15 19:17:42 -05:00
|
|
|
mp_obj_dict_store(dict, kwargs[2 * i], kwargs[2 * i + 1]);
|
2014-02-16 11:30:49 -05:00
|
|
|
continue2:;
|
|
|
|
}
|
|
|
|
DEBUG_printf("Args with kws flattened: ");
|
|
|
|
dump_args(flat_args, self->n_args);
|
|
|
|
|
|
|
|
// Now fill in defaults
|
|
|
|
mp_obj_t *d = &flat_args[self->n_args - 1];
|
|
|
|
mp_obj_t *s = &self->extra_args[self->n_def_args - 1];
|
2014-04-09 22:39:38 -04:00
|
|
|
for (int i = self->n_def_args; i > 0; i--, d--, s--) {
|
2014-03-03 18:25:08 -05:00
|
|
|
if (*d == MP_OBJ_NULL) {
|
2014-04-09 22:39:38 -04:00
|
|
|
*d = *s;
|
2014-02-16 11:30:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
DEBUG_printf("Args after filling defaults: ");
|
|
|
|
dump_args(flat_args, self->n_args);
|
|
|
|
|
|
|
|
// Now check that all mandatory args specified
|
|
|
|
while (d >= flat_args) {
|
|
|
|
if (*d-- == MP_OBJ_NULL) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
|
2014-02-16 11:30:49 -05:00
|
|
|
"function missing required positional argument #%d", d - flat_args));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
args = flat_args;
|
|
|
|
n_args = self->n_args;
|
|
|
|
|
|
|
|
if (self->takes_kw_args) {
|
|
|
|
extra_args[n_extra_args] = dict;
|
|
|
|
n_extra_args += 1;
|
2014-02-15 19:17:42 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// no keyword arguments given
|
|
|
|
if (self->takes_kw_args) {
|
|
|
|
extra_args[n_extra_args] = mp_obj_new_dict(0);
|
|
|
|
n_extra_args += 1;
|
|
|
|
}
|
2014-01-18 09:10:48 -05:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-04-05 17:36:42 -04:00
|
|
|
mp_obj_dict_t *old_globals = mp_globals_get();
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_globals_set(self->globals);
|
2014-02-15 17:55:00 -05:00
|
|
|
mp_obj_t result;
|
2014-02-16 11:30:49 -05:00
|
|
|
DEBUG_printf("Calling: args=%p, n_args=%d, extra_args=%p, n_extra_args=%d\n", args, n_args, extra_args, n_extra_args);
|
|
|
|
dump_args(args, n_args);
|
|
|
|
dump_args(extra_args, n_extra_args);
|
2014-03-27 07:07:04 -04:00
|
|
|
mp_vm_return_kind_t vm_return_kind = mp_execute_byte_code(self->bytecode, args, n_args, extra_args, n_extra_args, &result);
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_globals_set(old_globals);
|
2014-02-01 13:29:40 -05:00
|
|
|
|
2014-02-15 17:55:00 -05:00
|
|
|
if (vm_return_kind == MP_VM_RETURN_NORMAL) {
|
|
|
|
return result;
|
|
|
|
} else { // MP_VM_RETURN_EXCEPTION
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(result);
|
2014-02-15 17:55:00 -05:00
|
|
|
}
|
2014-02-15 19:01:29 -05:00
|
|
|
|
|
|
|
arg_error:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "function takes %d positional arguments but %d were given", self->n_args, n_args));
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
const mp_obj_type_t mp_type_fun_bc = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_function,
|
2014-01-18 09:10:48 -05:00
|
|
|
.call = fun_bc_call,
|
2014-04-05 06:50:06 -04:00
|
|
|
.binary_op = fun_binary_op,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
2014-03-27 07:07:04 -04:00
|
|
|
mp_obj_t mp_obj_new_fun_bc(uint scope_flags, qstr *args, uint n_args, mp_obj_t def_args_in, const byte *code) {
|
2014-02-15 19:01:29 -05:00
|
|
|
uint n_def_args = 0;
|
|
|
|
uint n_extra_args = 0;
|
2014-02-01 08:05:04 -05:00
|
|
|
mp_obj_tuple_t *def_args = def_args_in;
|
|
|
|
if (def_args != MP_OBJ_NULL) {
|
|
|
|
n_def_args = def_args->len;
|
2014-02-15 19:01:29 -05:00
|
|
|
n_extra_args = def_args->len;
|
|
|
|
}
|
|
|
|
if ((scope_flags & MP_SCOPE_FLAG_VARARGS) != 0) {
|
|
|
|
n_extra_args += 1;
|
2014-02-01 08:05:04 -05:00
|
|
|
}
|
2014-02-15 19:17:42 -05:00
|
|
|
if ((scope_flags & MP_SCOPE_FLAG_VARKEYWORDS) != 0) {
|
|
|
|
n_extra_args += 1;
|
|
|
|
}
|
2014-02-15 19:01:29 -05:00
|
|
|
mp_obj_fun_bc_t *o = m_new_obj_var(mp_obj_fun_bc_t, mp_obj_t, n_extra_args);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_fun_bc;
|
2014-03-30 08:35:08 -04:00
|
|
|
o->globals = mp_globals_get();
|
2014-02-16 11:30:49 -05:00
|
|
|
o->args = args;
|
2013-12-21 13:17:45 -05:00
|
|
|
o->n_args = n_args;
|
2014-02-01 08:05:04 -05:00
|
|
|
o->n_def_args = n_def_args;
|
2014-02-15 19:01:29 -05:00
|
|
|
o->takes_var_args = (scope_flags & MP_SCOPE_FLAG_VARARGS) != 0;
|
|
|
|
o->takes_kw_args = (scope_flags & MP_SCOPE_FLAG_VARKEYWORDS) != 0;
|
2014-01-03 09:03:48 -05:00
|
|
|
o->bytecode = code;
|
2014-02-01 08:05:04 -05:00
|
|
|
if (def_args != MP_OBJ_NULL) {
|
2014-02-15 19:01:29 -05:00
|
|
|
memcpy(o->extra_args, def_args->items, n_def_args * sizeof(mp_obj_t));
|
2014-02-01 08:05:04 -05:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-03-27 07:07:04 -04:00
|
|
|
void mp_obj_fun_bc_get(mp_obj_t self_in, int *n_args, const byte **code) {
|
2014-03-29 09:43:38 -04:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &mp_type_fun_bc));
|
2014-01-03 09:03:48 -05:00
|
|
|
mp_obj_fun_bc_t *self = self_in;
|
|
|
|
*n_args = self->n_args;
|
|
|
|
*code = self->bytecode;
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
/******************************************************************************/
|
|
|
|
/* inline assembler functions */
|
|
|
|
|
|
|
|
typedef struct _mp_obj_fun_asm_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
int n_args;
|
|
|
|
void *fun;
|
|
|
|
} mp_obj_fun_asm_t;
|
|
|
|
|
|
|
|
typedef machine_uint_t (*inline_asm_fun_0_t)();
|
|
|
|
typedef machine_uint_t (*inline_asm_fun_1_t)(machine_uint_t);
|
|
|
|
typedef machine_uint_t (*inline_asm_fun_2_t)(machine_uint_t, machine_uint_t);
|
|
|
|
typedef machine_uint_t (*inline_asm_fun_3_t)(machine_uint_t, machine_uint_t, machine_uint_t);
|
|
|
|
|
|
|
|
// convert a Micro Python object to a sensible value for inline asm
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC machine_uint_t convert_obj_for_inline_asm(mp_obj_t obj) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// TODO for byte_array, pass pointer to the array
|
|
|
|
if (MP_OBJ_IS_SMALL_INT(obj)) {
|
|
|
|
return MP_OBJ_SMALL_INT_VALUE(obj);
|
|
|
|
} else if (obj == mp_const_none) {
|
|
|
|
return 0;
|
|
|
|
} else if (obj == mp_const_false) {
|
|
|
|
return 0;
|
|
|
|
} else if (obj == mp_const_true) {
|
|
|
|
return 1;
|
2014-01-22 09:35:10 -05:00
|
|
|
} else if (MP_OBJ_IS_STR(obj)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// pointer to the string (it's probably constant though!)
|
2014-01-22 09:35:10 -05:00
|
|
|
uint l;
|
|
|
|
return (machine_uint_t)mp_obj_str_get_data(obj, &l);
|
2013-12-21 13:17:45 -05:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
2014-03-08 10:24:39 -05:00
|
|
|
} else if (MP_OBJ_IS_TYPE(obj, &mp_type_float)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// convert float to int (could also pass in float registers)
|
|
|
|
return (machine_int_t)mp_obj_float_get(obj);
|
|
|
|
#endif
|
2014-03-29 09:15:08 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(obj, &mp_type_tuple)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// pointer to start of tuple (could pass length, but then could use len(x) for that)
|
|
|
|
uint len;
|
|
|
|
mp_obj_t *items;
|
|
|
|
mp_obj_tuple_get(obj, &len, &items);
|
|
|
|
return (machine_uint_t)items;
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(obj, &mp_type_list)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
// pointer to start of list (could pass length, but then could use len(x) for that)
|
|
|
|
uint len;
|
|
|
|
mp_obj_t *items;
|
|
|
|
mp_obj_list_get(obj, &len, &items);
|
|
|
|
return (machine_uint_t)items;
|
|
|
|
} else {
|
|
|
|
// just pass along a pointer to the object
|
|
|
|
return (machine_uint_t)obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert a return value from inline asm to a sensible Micro Python object
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t convert_val_from_inline_asm(machine_uint_t val) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(val);
|
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t fun_asm_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_fun_asm_t *self = self_in;
|
|
|
|
|
|
|
|
if (n_args != self->n_args) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "function takes %d positional arguments but %d were given", self->n_args, n_args));
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-18 09:10:48 -05:00
|
|
|
if (n_kw != 0) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "function does not take keyword arguments"));
|
2014-01-18 09:10:48 -05:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
|
|
|
|
machine_uint_t ret;
|
|
|
|
if (n_args == 0) {
|
|
|
|
ret = ((inline_asm_fun_0_t)self->fun)();
|
|
|
|
} else if (n_args == 1) {
|
|
|
|
ret = ((inline_asm_fun_1_t)self->fun)(convert_obj_for_inline_asm(args[0]));
|
|
|
|
} else if (n_args == 2) {
|
2014-01-18 09:10:48 -05:00
|
|
|
ret = ((inline_asm_fun_2_t)self->fun)(convert_obj_for_inline_asm(args[0]), convert_obj_for_inline_asm(args[1]));
|
2013-12-21 13:17:45 -05:00
|
|
|
} else if (n_args == 3) {
|
2014-01-18 09:10:48 -05:00
|
|
|
ret = ((inline_asm_fun_3_t)self->fun)(convert_obj_for_inline_asm(args[0]), convert_obj_for_inline_asm(args[1]), convert_obj_for_inline_asm(args[2]));
|
2013-12-21 13:17:45 -05:00
|
|
|
} else {
|
|
|
|
assert(0);
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return convert_val_from_inline_asm(ret);
|
|
|
|
}
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
STATIC const mp_obj_type_t mp_type_fun_asm = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_function,
|
2014-01-18 09:10:48 -05:00
|
|
|
.call = fun_asm_call,
|
2014-04-05 06:50:06 -04:00
|
|
|
.binary_op = fun_binary_op,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_fun_asm(uint n_args, void *fun) {
|
|
|
|
mp_obj_fun_asm_t *o = m_new_obj(mp_obj_fun_asm_t);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_fun_asm;
|
2013-12-21 13:17:45 -05:00
|
|
|
o->n_args = n_args;
|
|
|
|
o->fun = fun;
|
|
|
|
return o;
|
|
|
|
}
|