blob: 3a06c40a9f7e812e05f377bc380ab60dfb20e640 [file] [log] [blame]
Damien George04b91472014-05-03 23:27:38 +01001/*
2 * This file is part of the Micro Python project, http://micropython.org/
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (c) 2013, 2014 Damien P. George
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 * THE SOFTWARE.
25 */
26
Damien Georgeecf5b772014-04-04 11:13:51 +000027#include "mpconfig.h"
Paul Sokolovsky59c675a2014-06-21 22:43:22 +030028#include "misc.h"
Damien Georgeecf5b772014-04-04 11:13:51 +000029#include "qstr.h"
30#include "obj.h"
Damien Georged1e355e2014-05-28 14:51:12 +010031#include "smallint.h"
Damien Georgeecf5b772014-04-04 11:13:51 +000032
Damien George40f3c022014-07-03 13:25:24 +010033bool mp_small_int_mul_overflow(mp_int_t x, mp_int_t y) {
Damien Georgeecf5b772014-04-04 11:13:51 +000034 // Check for multiply overflow; see CERT INT32-C
35 if (x > 0) { // x is positive
36 if (y > 0) { // x and y are positive
37 if (x > (MP_SMALL_INT_MAX / y)) {
38 return true;
39 }
40 } else { // x positive, y nonpositive
41 if (y < (MP_SMALL_INT_MIN / x)) {
42 return true;
43 }
44 } // x positive, y nonpositive
45 } else { // x is nonpositive
46 if (y > 0) { // x is nonpositive, y is positive
47 if (x < (MP_SMALL_INT_MIN / y)) {
48 return true;
49 }
50 } else { // x and y are nonpositive
51 if (x != 0 && y < (MP_SMALL_INT_MAX / x)) {
52 return true;
53 }
54 } // End if x and y are nonpositive
55 } // End if x is nonpositive
56 return false;
57}
58
Damien George40f3c022014-07-03 13:25:24 +010059mp_int_t mp_small_int_modulo(mp_int_t dividend, mp_int_t divisor) {
Damien Georgee72be1b2014-10-22 23:05:50 +010060 // Python specs require that mod has same sign as second operand
Damien Georgeecf5b772014-04-04 11:13:51 +000061 dividend %= divisor;
Damien Georgee72be1b2014-10-22 23:05:50 +010062 if ((dividend < 0 && divisor > 0) || (dividend > 0 && divisor < 0)) {
Damien Georgeecf5b772014-04-04 11:13:51 +000063 dividend += divisor;
64 }
Damien George40f3c022014-07-03 13:25:24 +010065 return dividend;
Damien Georgeecf5b772014-04-04 11:13:51 +000066}
67
Damien George40f3c022014-07-03 13:25:24 +010068mp_int_t mp_small_int_floor_divide(mp_int_t num, mp_int_t denom) {
Damien Georgee72be1b2014-10-22 23:05:50 +010069 if (num >= 0) {
70 if (denom < 0) {
71 num += -denom - 1;
72 }
Damien Georgeecf5b772014-04-04 11:13:51 +000073 } else {
Damien Georgee72be1b2014-10-22 23:05:50 +010074 if (denom >= 0) {
75 num += -denom + 1;
76 }
Damien Georgeecf5b772014-04-04 11:13:51 +000077 }
Damien Georgee72be1b2014-10-22 23:05:50 +010078 return num / denom;
Damien Georgeecf5b772014-04-04 11:13:51 +000079}