2014-05-03 22:27:38 +00:00
|
|
|
/*
|
2017-06-30 07:22:17 +00:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 22:27:38 +00:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-02-22 19:25:23 +00:00
|
|
|
#include <string.h>
|
2014-03-22 20:19:24 +00:00
|
|
|
#include <stdio.h>
|
2014-04-08 22:30:46 +00:00
|
|
|
#include <assert.h>
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/parsenumbase.h"
|
|
|
|
#include "py/smallint.h"
|
|
|
|
#include "py/objint.h"
|
|
|
|
#include "py/runtime.h"
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2014-12-29 22:22:10 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
|
|
|
#include <math.h>
|
|
|
|
#endif
|
|
|
|
|
2014-02-22 19:25:23 +00:00
|
|
|
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_MPZ
|
|
|
|
|
2014-07-03 13:50:11 +00:00
|
|
|
#if MICROPY_PY_SYS_MAXSIZE
|
|
|
|
// Export value for sys.maxsize
|
2014-10-30 13:39:22 +00:00
|
|
|
#define DIG_MASK ((MPZ_LONG_1 << MPZ_DIG_SIZE) - 1)
|
2015-09-15 15:15:57 +00:00
|
|
|
STATIC const mpz_dig_t maxsize_dig[] = {
|
|
|
|
#define NUM_DIG 1
|
2014-09-06 16:17:23 +00:00
|
|
|
(MP_SSIZE_MAX >> MPZ_DIG_SIZE * 0) & DIG_MASK,
|
|
|
|
#if (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 0) > DIG_MASK
|
2015-09-15 15:15:57 +00:00
|
|
|
#undef NUM_DIG
|
|
|
|
#define NUM_DIG 2
|
|
|
|
(MP_SSIZE_MAX >> MPZ_DIG_SIZE * 1) & DIG_MASK,
|
|
|
|
#if (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 1) > DIG_MASK
|
|
|
|
#undef NUM_DIG
|
|
|
|
#define NUM_DIG 3
|
|
|
|
(MP_SSIZE_MAX >> MPZ_DIG_SIZE * 2) & DIG_MASK,
|
|
|
|
#if (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 2) > DIG_MASK
|
|
|
|
#undef NUM_DIG
|
|
|
|
#define NUM_DIG 4
|
|
|
|
(MP_SSIZE_MAX >> MPZ_DIG_SIZE * 3) & DIG_MASK,
|
|
|
|
#if (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 3) > DIG_MASK
|
|
|
|
#error cannot encode MP_SSIZE_MAX as mpz
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
2014-09-06 16:37:29 +00:00
|
|
|
#endif
|
2014-07-03 13:50:11 +00:00
|
|
|
};
|
|
|
|
const mp_obj_int_t mp_maxsize_obj = {
|
|
|
|
{&mp_type_int},
|
2015-09-15 15:15:57 +00:00
|
|
|
{.fixed_dig = 1, .len = NUM_DIG, .alloc = NUM_DIG, .dig = (mpz_dig_t*)maxsize_dig}
|
2014-07-03 13:50:11 +00:00
|
|
|
};
|
|
|
|
#undef DIG_MASK
|
2015-09-15 15:15:57 +00:00
|
|
|
#undef NUM_DIG
|
2014-07-03 13:50:11 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-04 06:45:49 +00:00
|
|
|
mp_obj_int_t *mp_obj_int_new_mpz(void) {
|
2014-02-22 19:25:23 +00:00
|
|
|
mp_obj_int_t *o = m_new_obj(mp_obj_int_t);
|
2014-03-29 13:43:38 +00:00
|
|
|
o->base.type = &mp_type_int;
|
2014-02-22 19:25:23 +00:00
|
|
|
mpz_init_zero(&o->mpz);
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-04-07 18:19:51 +00:00
|
|
|
// This routine expects you to pass in a buffer and size (in *buf and buf_size).
|
|
|
|
// If, for some reason, this buffer is too small, then it will allocate a
|
|
|
|
// buffer and return the allocated buffer and size in *buf and *buf_size. It
|
|
|
|
// is the callers responsibility to free this allocated buffer.
|
|
|
|
//
|
|
|
|
// The resulting formatted string will be returned from this function and the
|
|
|
|
// formatted size will be in *fmt_size.
|
2014-04-08 22:30:46 +00:00
|
|
|
//
|
|
|
|
// This particular routine should only be called for the mpz representation of the int.
|
2016-10-11 02:20:11 +00:00
|
|
|
char *mp_obj_int_formatted_impl(char **buf, size_t *buf_size, size_t *fmt_size, mp_const_obj_t self_in,
|
2014-04-08 22:30:46 +00:00
|
|
|
int base, const char *prefix, char base_char, char comma) {
|
2019-01-30 07:49:52 +00:00
|
|
|
assert(mp_obj_is_type(self_in, &mp_type_int));
|
2015-11-27 17:01:44 +00:00
|
|
|
const mp_obj_int_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-04-07 18:19:51 +00:00
|
|
|
|
2016-10-11 02:20:11 +00:00
|
|
|
size_t needed_size = mp_int_format_size(mpz_max_num_bits(&self->mpz), base, prefix, comma);
|
2014-04-07 18:19:51 +00:00
|
|
|
if (needed_size > *buf_size) {
|
|
|
|
*buf = m_new(char, needed_size);
|
|
|
|
*buf_size = needed_size;
|
|
|
|
}
|
|
|
|
char *str = *buf;
|
|
|
|
|
2014-04-08 22:30:46 +00:00
|
|
|
*fmt_size = mpz_as_str_inpl(&self->mpz, base, prefix, base_char, comma, str);
|
2014-04-07 18:19:51 +00:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2017-01-21 17:14:18 +00:00
|
|
|
mp_obj_t mp_obj_int_from_bytes_impl(bool big_endian, size_t len, const byte *buf) {
|
|
|
|
mp_obj_int_t *o = mp_obj_int_new_mpz();
|
|
|
|
mpz_set_from_bytes(&o->mpz, big_endian, len, buf);
|
|
|
|
return MP_OBJ_FROM_PTR(o);
|
|
|
|
}
|
|
|
|
|
2016-10-11 02:20:11 +00:00
|
|
|
void mp_obj_int_to_bytes_impl(mp_obj_t self_in, bool big_endian, size_t len, byte *buf) {
|
2019-01-30 07:49:52 +00:00
|
|
|
assert(mp_obj_is_type(self_in, &mp_type_int));
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(self_in);
|
2017-04-21 13:40:57 +00:00
|
|
|
memset(buf, 0, len);
|
2015-04-25 22:16:39 +00:00
|
|
|
mpz_as_bytes(&self->mpz, big_endian, len, buf);
|
|
|
|
}
|
|
|
|
|
2016-01-07 14:29:12 +00:00
|
|
|
int mp_obj_int_sign(mp_obj_t self_in) {
|
2019-01-30 07:49:52 +00:00
|
|
|
if (mp_obj_is_small_int(self_in)) {
|
2016-01-07 14:29:12 +00:00
|
|
|
mp_int_t val = MP_OBJ_SMALL_INT_VALUE(self_in);
|
|
|
|
if (val < 0) {
|
|
|
|
return -1;
|
|
|
|
} else if (val > 0) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(self_in);
|
2016-01-07 14:29:12 +00:00
|
|
|
if (self->mpz.len == 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (self->mpz.neg == 0) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 03:04:01 +00:00
|
|
|
mp_obj_t mp_obj_int_unary_op(mp_unary_op_t op, mp_obj_t o_in) {
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_int_t *o = MP_OBJ_TO_PTR(o_in);
|
2014-02-22 19:25:23 +00:00
|
|
|
switch (op) {
|
2015-10-11 09:09:43 +00:00
|
|
|
case MP_UNARY_OP_BOOL: return mp_obj_new_bool(!mpz_is_zero(&o->mpz));
|
2015-05-11 12:25:19 +00:00
|
|
|
case MP_UNARY_OP_HASH: return MP_OBJ_NEW_SMALL_INT(mpz_hash(&o->mpz));
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_UNARY_OP_POSITIVE: return o_in;
|
2015-11-27 17:01:44 +00:00
|
|
|
case MP_UNARY_OP_NEGATIVE: { mp_obj_int_t *o2 = mp_obj_int_new_mpz(); mpz_neg_inpl(&o2->mpz, &o->mpz); return MP_OBJ_FROM_PTR(o2); }
|
|
|
|
case MP_UNARY_OP_INVERT: { mp_obj_int_t *o2 = mp_obj_int_new_mpz(); mpz_not_inpl(&o2->mpz, &o->mpz); return MP_OBJ_FROM_PTR(o2); }
|
2017-09-17 21:06:43 +00:00
|
|
|
case MP_UNARY_OP_ABS: {
|
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(o_in);
|
|
|
|
if (self->mpz.neg == 0) {
|
|
|
|
return o_in;
|
|
|
|
}
|
|
|
|
mp_obj_int_t *self2 = mp_obj_int_new_mpz();
|
|
|
|
mpz_abs_inpl(&self2->mpz, &self->mpz);
|
|
|
|
return MP_OBJ_FROM_PTR(self2);
|
|
|
|
}
|
2014-05-21 18:42:43 +00:00
|
|
|
default: return MP_OBJ_NULL; // op not supported
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 03:04:01 +00:00
|
|
|
mp_obj_t mp_obj_int_binary_op(mp_binary_op_t op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
2014-03-19 23:15:25 +00:00
|
|
|
const mpz_t *zlhs;
|
2014-03-01 19:50:50 +00:00
|
|
|
const mpz_t *zrhs;
|
|
|
|
mpz_t z_int;
|
|
|
|
mpz_dig_t z_int_dig[MPZ_NUM_DIG_FOR_INT];
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2014-03-19 23:15:25 +00:00
|
|
|
// lhs could be a small int (eg small-int + mpz)
|
2019-01-30 07:49:52 +00:00
|
|
|
if (mp_obj_is_small_int(lhs_in)) {
|
2014-03-19 23:15:25 +00:00
|
|
|
mpz_init_fixed_from_int(&z_int, z_int_dig, MPZ_NUM_DIG_FOR_INT, MP_OBJ_SMALL_INT_VALUE(lhs_in));
|
|
|
|
zlhs = &z_int;
|
|
|
|
} else {
|
2019-01-30 07:49:52 +00:00
|
|
|
assert(mp_obj_is_type(lhs_in, &mp_type_int));
|
2018-04-04 15:11:26 +00:00
|
|
|
zlhs = &((mp_obj_int_t*)MP_OBJ_TO_PTR(lhs_in))->mpz;
|
2014-03-19 23:15:25 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 12:35:08 +00:00
|
|
|
// if rhs is small int, then lhs was not (otherwise mp_binary_op handles it)
|
2019-01-30 07:49:52 +00:00
|
|
|
if (mp_obj_is_small_int(rhs_in)) {
|
2014-03-01 19:50:50 +00:00
|
|
|
mpz_init_fixed_from_int(&z_int, z_int_dig, MPZ_NUM_DIG_FOR_INT, MP_OBJ_SMALL_INT_VALUE(rhs_in));
|
|
|
|
zrhs = &z_int;
|
2019-01-30 07:49:52 +00:00
|
|
|
} else if (mp_obj_is_type(rhs_in, &mp_type_int)) {
|
2015-11-27 17:01:44 +00:00
|
|
|
zrhs = &((mp_obj_int_t*)MP_OBJ_TO_PTR(rhs_in))->mpz;
|
2014-06-01 12:32:54 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2015-08-20 22:30:12 +00:00
|
|
|
} else if (mp_obj_is_float(rhs_in)) {
|
2014-03-29 17:28:20 +00:00
|
|
|
return mp_obj_float_binary_op(op, mpz_as_float(zlhs), rhs_in);
|
2014-06-19 22:48:35 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_COMPLEX
|
2019-01-30 07:49:52 +00:00
|
|
|
} else if (mp_obj_is_type(rhs_in, &mp_type_complex)) {
|
2014-03-29 17:28:20 +00:00
|
|
|
return mp_obj_complex_binary_op(op, mpz_as_float(zlhs), 0, rhs_in);
|
2014-06-19 22:48:35 +00:00
|
|
|
#endif
|
2014-03-29 17:28:20 +00:00
|
|
|
#endif
|
2014-02-22 19:25:23 +00:00
|
|
|
} else {
|
2014-04-04 14:08:23 +00:00
|
|
|
// delegate to generic function to check for extra cases
|
|
|
|
return mp_obj_int_binary_op_extra_cases(op, lhs_in, rhs_in);
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2014-06-01 12:32:54 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2019-05-05 03:29:43 +00:00
|
|
|
if (op == MP_BINARY_OP_TRUE_DIVIDE || op == MP_BINARY_OP_INPLACE_TRUE_DIVIDE) {
|
2015-10-01 21:48:48 +00:00
|
|
|
if (mpz_is_zero(zrhs)) {
|
|
|
|
goto zero_division_error;
|
|
|
|
}
|
2014-03-08 15:04:54 +00:00
|
|
|
mp_float_t flhs = mpz_as_float(zlhs);
|
|
|
|
mp_float_t frhs = mpz_as_float(zrhs);
|
2014-02-22 19:25:23 +00:00
|
|
|
return mp_obj_new_float(flhs / frhs);
|
2019-05-05 03:29:43 +00:00
|
|
|
} else
|
2014-03-08 15:04:54 +00:00
|
|
|
#endif
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2019-05-05 03:29:43 +00:00
|
|
|
if (op >= MP_BINARY_OP_INPLACE_OR && op < MP_BINARY_OP_CONTAINS) {
|
2014-02-22 19:25:23 +00:00
|
|
|
mp_obj_int_t *res = mp_obj_int_new_mpz();
|
|
|
|
|
|
|
|
switch (op) {
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_ADD:
|
|
|
|
case MP_BINARY_OP_INPLACE_ADD:
|
2014-02-22 19:25:23 +00:00
|
|
|
mpz_add_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_SUBTRACT:
|
|
|
|
case MP_BINARY_OP_INPLACE_SUBTRACT:
|
2014-02-22 19:25:23 +00:00
|
|
|
mpz_sub_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_MULTIPLY:
|
|
|
|
case MP_BINARY_OP_INPLACE_MULTIPLY:
|
2014-02-22 19:25:23 +00:00
|
|
|
mpz_mul_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_FLOOR_DIVIDE:
|
|
|
|
case MP_BINARY_OP_INPLACE_FLOOR_DIVIDE: {
|
2015-10-01 21:48:48 +00:00
|
|
|
if (mpz_is_zero(zrhs)) {
|
|
|
|
zero_division_error:
|
2018-06-20 11:02:11 +00:00
|
|
|
mp_raise_msg(&mp_type_ZeroDivisionError, "divide by zero");
|
2015-10-01 21:48:48 +00:00
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
mpz_t rem; mpz_init_zero(&rem);
|
|
|
|
mpz_divmod_inpl(&res->mpz, &rem, zlhs, zrhs);
|
|
|
|
mpz_deinit(&rem);
|
|
|
|
break;
|
|
|
|
}
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_MODULO:
|
|
|
|
case MP_BINARY_OP_INPLACE_MODULO: {
|
2015-10-01 21:48:48 +00:00
|
|
|
if (mpz_is_zero(zrhs)) {
|
|
|
|
goto zero_division_error;
|
|
|
|
}
|
2014-03-20 16:28:41 +00:00
|
|
|
mpz_t quo; mpz_init_zero(&quo);
|
|
|
|
mpz_divmod_inpl(&quo, &res->mpz, zlhs, zrhs);
|
|
|
|
mpz_deinit(&quo);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_AND:
|
|
|
|
case MP_BINARY_OP_INPLACE_AND:
|
2014-03-22 23:52:36 +00:00
|
|
|
mpz_and_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_OR:
|
|
|
|
case MP_BINARY_OP_INPLACE_OR:
|
2014-03-22 23:52:36 +00:00
|
|
|
mpz_or_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_XOR:
|
|
|
|
case MP_BINARY_OP_INPLACE_XOR:
|
2014-03-22 23:52:36 +00:00
|
|
|
mpz_xor_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_LSHIFT:
|
|
|
|
case MP_BINARY_OP_INPLACE_LSHIFT:
|
|
|
|
case MP_BINARY_OP_RSHIFT:
|
|
|
|
case MP_BINARY_OP_INPLACE_RSHIFT: {
|
2014-07-31 13:41:43 +00:00
|
|
|
mp_int_t irhs = mp_obj_int_get_checked(rhs_in);
|
2014-03-01 19:50:50 +00:00
|
|
|
if (irhs < 0) {
|
2017-03-28 11:37:26 +00:00
|
|
|
mp_raise_ValueError("negative shift count");
|
2014-03-01 19:50:50 +00:00
|
|
|
}
|
2014-03-30 12:35:08 +00:00
|
|
|
if (op == MP_BINARY_OP_LSHIFT || op == MP_BINARY_OP_INPLACE_LSHIFT) {
|
2014-03-01 19:50:50 +00:00
|
|
|
mpz_shl_inpl(&res->mpz, zlhs, irhs);
|
|
|
|
} else {
|
|
|
|
mpz_shr_inpl(&res->mpz, zlhs, irhs);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_POWER:
|
|
|
|
case MP_BINARY_OP_INPLACE_POWER:
|
2017-07-25 01:49:22 +00:00
|
|
|
if (mpz_is_neg(zrhs)) {
|
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
|
|
|
return mp_obj_float_binary_op(op, mpz_as_float(zlhs), rhs_in);
|
|
|
|
#else
|
|
|
|
mp_raise_ValueError("negative power with no float support");
|
|
|
|
#endif
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
mpz_pow_inpl(&res->mpz, zlhs, zrhs);
|
|
|
|
break;
|
|
|
|
|
2017-01-19 12:35:45 +00:00
|
|
|
default: {
|
|
|
|
assert(op == MP_BINARY_OP_DIVMOD);
|
2015-10-01 21:48:48 +00:00
|
|
|
if (mpz_is_zero(zrhs)) {
|
|
|
|
goto zero_division_error;
|
|
|
|
}
|
2015-06-13 21:40:50 +00:00
|
|
|
mp_obj_int_t *quo = mp_obj_int_new_mpz();
|
|
|
|
mpz_divmod_inpl(&quo->mpz, &res->mpz, zlhs, zrhs);
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_t tuple[2] = {MP_OBJ_FROM_PTR(quo), MP_OBJ_FROM_PTR(res)};
|
2015-06-13 21:40:50 +00:00
|
|
|
return mp_obj_new_tuple(2, tuple);
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(res);
|
2014-02-22 19:25:23 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
int cmp = mpz_cmp(zlhs, zrhs);
|
|
|
|
switch (op) {
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_LESS:
|
2015-10-11 09:09:43 +00:00
|
|
|
return mp_obj_new_bool(cmp < 0);
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_MORE:
|
2015-10-11 09:09:43 +00:00
|
|
|
return mp_obj_new_bool(cmp > 0);
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_LESS_EQUAL:
|
2015-10-11 09:09:43 +00:00
|
|
|
return mp_obj_new_bool(cmp <= 0);
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_MORE_EQUAL:
|
2015-10-11 09:09:43 +00:00
|
|
|
return mp_obj_new_bool(cmp >= 0);
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_BINARY_OP_EQUAL:
|
2015-10-11 09:09:43 +00:00
|
|
|
return mp_obj_new_bool(cmp == 0);
|
2014-02-22 19:25:23 +00:00
|
|
|
|
|
|
|
default:
|
2014-05-21 18:42:43 +00:00
|
|
|
return MP_OBJ_NULL; // op not supported
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-01 23:41:22 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_POW3
|
|
|
|
STATIC mpz_t *mp_mpz_for_int(mp_obj_t arg, mpz_t *temp) {
|
2019-01-30 07:49:52 +00:00
|
|
|
if (mp_obj_is_small_int(arg)) {
|
2017-02-01 23:41:22 +00:00
|
|
|
mpz_init_from_int(temp, MP_OBJ_SMALL_INT_VALUE(arg));
|
|
|
|
return temp;
|
|
|
|
} else {
|
|
|
|
mp_obj_int_t *arp_p = MP_OBJ_TO_PTR(arg);
|
|
|
|
return &(arp_p->mpz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_int_pow3(mp_obj_t base, mp_obj_t exponent, mp_obj_t modulus) {
|
2019-01-30 07:49:52 +00:00
|
|
|
if (!mp_obj_is_int(base) || !mp_obj_is_int(exponent) || !mp_obj_is_int(modulus)) {
|
2017-02-01 23:41:22 +00:00
|
|
|
mp_raise_TypeError("pow() with 3 arguments requires integers");
|
|
|
|
} else {
|
|
|
|
mp_obj_t result = mp_obj_new_int_from_ull(0); // Use the _from_ull version as this forces an mpz int
|
|
|
|
mp_obj_int_t *res_p = (mp_obj_int_t *) MP_OBJ_TO_PTR(result);
|
|
|
|
|
|
|
|
mpz_t l_temp, r_temp, m_temp;
|
|
|
|
mpz_t *lhs = mp_mpz_for_int(base, &l_temp);
|
|
|
|
mpz_t *rhs = mp_mpz_for_int(exponent, &r_temp);
|
|
|
|
mpz_t *mod = mp_mpz_for_int(modulus, &m_temp);
|
|
|
|
|
|
|
|
mpz_pow3_inpl(&(res_p->mpz), lhs, rhs, mod);
|
|
|
|
|
|
|
|
if (lhs == &l_temp) { mpz_deinit(lhs); }
|
|
|
|
if (rhs == &r_temp) { mpz_deinit(rhs); }
|
|
|
|
if (mod == &m_temp) { mpz_deinit(mod); }
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_obj_t mp_obj_new_int(mp_int_t value) {
|
2014-05-28 13:51:12 +00:00
|
|
|
if (MP_SMALL_INT_FITS(value)) {
|
2014-02-22 19:25:23 +00:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(value);
|
|
|
|
}
|
|
|
|
return mp_obj_new_int_from_ll(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_int_from_ll(long long val) {
|
|
|
|
mp_obj_int_t *o = mp_obj_int_new_mpz();
|
2014-09-10 21:10:33 +00:00
|
|
|
mpz_set_from_ll(&o->mpz, val, true);
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-09-10 21:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_int_from_ull(unsigned long long val) {
|
|
|
|
mp_obj_int_t *o = mp_obj_int_new_mpz();
|
|
|
|
mpz_set_from_ll(&o->mpz, val, false);
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_obj_t mp_obj_new_int_from_uint(mp_uint_t value) {
|
2016-03-10 21:52:56 +00:00
|
|
|
// SMALL_INT accepts only signed numbers, so make sure the input
|
|
|
|
// value fits completely in the small-int positive range.
|
|
|
|
if ((value & ~MP_SMALL_INT_POSITIVE_MASK) == 0) {
|
2014-02-22 19:25:23 +00:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(value);
|
|
|
|
}
|
2015-04-22 22:17:34 +00:00
|
|
|
return mp_obj_new_int_from_ull(value);
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 05:41:43 +00:00
|
|
|
mp_obj_t mp_obj_new_int_from_str_len(const char **str, size_t len, bool neg, unsigned int base) {
|
2014-02-22 19:25:23 +00:00
|
|
|
mp_obj_int_t *o = mp_obj_int_new_mpz();
|
2017-02-16 05:41:43 +00:00
|
|
|
size_t n = mpz_set_from_str(&o->mpz, *str, len, neg, base);
|
2014-05-28 13:07:21 +00:00
|
|
|
*str += n;
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2014-12-05 23:13:52 +00:00
|
|
|
mp_int_t mp_obj_int_get_truncated(mp_const_obj_t self_in) {
|
2019-01-30 07:49:52 +00:00
|
|
|
if (mp_obj_is_small_int(self_in)) {
|
2014-02-22 19:25:23 +00:00
|
|
|
return MP_OBJ_SMALL_INT_VALUE(self_in);
|
2014-03-22 20:54:01 +00:00
|
|
|
} else {
|
2015-11-27 17:01:44 +00:00
|
|
|
const mp_obj_int_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-12-05 23:13:52 +00:00
|
|
|
// hash returns actual int value if it fits in mp_int_t
|
2014-07-31 13:41:43 +00:00
|
|
|
return mpz_hash(&self->mpz);
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_int_t mp_obj_int_get_checked(mp_const_obj_t self_in) {
|
2019-01-30 07:49:52 +00:00
|
|
|
if (mp_obj_is_small_int(self_in)) {
|
2014-04-03 11:00:54 +00:00
|
|
|
return MP_OBJ_SMALL_INT_VALUE(self_in);
|
|
|
|
} else {
|
2015-11-27 17:01:44 +00:00
|
|
|
const mp_obj_int_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_int_t value;
|
2014-04-03 11:00:54 +00:00
|
|
|
if (mpz_as_int_checked(&self->mpz, &value)) {
|
|
|
|
return value;
|
|
|
|
} else {
|
|
|
|
// overflow
|
2016-10-17 01:17:37 +00:00
|
|
|
mp_raise_msg(&mp_type_OverflowError, "overflow converting long int to machine word");
|
2014-04-03 11:00:54 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-22 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2014-06-01 12:32:54 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2016-12-21 00:46:27 +00:00
|
|
|
mp_float_t mp_obj_int_as_float_impl(mp_obj_t self_in) {
|
2019-01-30 07:49:52 +00:00
|
|
|
assert(mp_obj_is_type(self_in, &mp_type_int));
|
2016-12-21 00:46:27 +00:00
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
return mpz_as_float(&self->mpz);
|
2014-03-22 20:54:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-22 19:25:23 +00:00
|
|
|
#endif
|