source: mainline/kernel/genarch/src/softint/multiplication.c

Last change on this file was 6404aca, checked in by Jakub Jermar <jakub@…>, 7 years ago

Disambiguate doxygroup genarch*

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * Copyright (c) 2009 Josef Cejka
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup kernel_genarch
30 * @{
31 */
32/**
33 * @file
34 * SW implementation of 32 and 64 bit multiplication.
35 */
36
37#include <genarch/softint/multiplication.h>
38
39/** Set 1 to return MAX_INT64 or MIN_INT64 on overflow */
40#ifndef SOFTINT_CHECK_OF
41# define SOFTINT_CHECK_OF 0
42#endif
43
44#define MAX_UINT16 (0xFFFFu)
45#define MAX_UINT32 (0xFFFFFFFFu)
46#define MAX_INT64 (0x7FFFFFFFFFFFFFFFll)
47#define MIN_INT64 (0x8000000000000000ll)
48
49/**
50 * Multiply two integers and return long long as result.
51 * This function is overflow safe.
52 * @param a
53 * @param b
54 * @result
55 */
56static unsigned long long mul(unsigned int a, unsigned int b)
57{
58 unsigned int a1, a2, b1, b2;
59 unsigned long long t1, t2, t3;
60
61 a1 = a >> 16;
62 a2 = a & MAX_UINT16;
63 b1 = b >> 16;
64 b2 = b & MAX_UINT16;
65
66 t1 = a1 * b1;
67 t2 = a1 * b2;
68 t2 += a2 * b1;
69 t3 = a2 * b2;
70
71 t3 = (((t1 << 16) + t2) << 16) + t3;
72
73 return t3;
74}
75
76/** Emulate multiplication of two 64-bit long long integers.
77 *
78 */
79long long __muldi3 (long long a, long long b)
80{
81 long long result;
82 unsigned long long t1, t2;
83 unsigned long long a1, a2, b1, b2;
84 char neg = 0;
85
86 if (a < 0) {
87 neg = !neg;
88 a = -a;
89 }
90
91 if (b < 0) {
92 neg = !neg;
93 b = -b;
94 }
95
96 a1 = a >> 32;
97 b1 = b >> 32;
98
99 a2 = a & (MAX_UINT32);
100 b2 = b & (MAX_UINT32);
101
102 if (SOFTINT_CHECK_OF && (a1 != 0) && (b1 != 0)) {
103 // error, overflow
104 return (neg ? MIN_INT64 : MAX_INT64);
105 }
106
107 // (if OF checked) a1 or b1 is zero => result fits in 64 bits, no need to another overflow check
108 t1 = mul(a1, b2) + mul(b1, a2);
109
110 if (SOFTINT_CHECK_OF && t1 > MAX_UINT32) {
111 // error, overflow
112 return (neg ? MIN_INT64 : MAX_INT64);
113 }
114
115 t1 = t1 << 32;
116 t2 = mul(a2, b2);
117 t2 += t1;
118
119 /*
120 * t2 & (1ull << 63) - if this bit is set in unsigned long long,
121 * result does not fit in signed one
122 */
123 if (SOFTINT_CHECK_OF && ((t2 < t1) || (t2 & (1ull << 63)))) {
124 // error, overflow
125 return (neg ? MIN_INT64 : MAX_INT64);
126 }
127
128 result = t2;
129
130 if (neg) {
131 result = -result;
132 }
133
134 return result;
135}
136
137/** @}
138 */
Note: See TracBrowser for help on using the repository browser.