-
Notifications
You must be signed in to change notification settings - Fork 1
/
ANKFullWidth+Multiplication+Digit.swift
114 lines (94 loc) · 5 KB
/
ANKFullWidth+Multiplication+Digit.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//=----------------------------------------------------------------------------=
// This source file is part of the AwesomeNumbersKit open source project.
//
// Copyright (c) 2022 Oscar Byström Ericsson
// Licensed under Apache License, Version 2.0
//
// See http://www.apache.org/licenses/LICENSE-2.0 for license information.
//=----------------------------------------------------------------------------=
import ANKCoreKit
//*============================================================================*
// MARK: * ANK x Full Width x Multiplication x Digit
//*============================================================================*
extension ANKFullWidth {
//=------------------------------------------------------------------------=
// MARK: Transformations
//=------------------------------------------------------------------------=
@_disfavoredOverload @inlinable public mutating func multiplyReportingOverflow(by other: Digit) -> Bool {
let pvo: PVO<Self> = self.multipliedReportingOverflow(by: other)
self = pvo.partialValue
return pvo.overflow as Bool
}
@_disfavoredOverload @inlinable public func multipliedReportingOverflow(by other: Digit) -> PVO<Self> {
let lhsIsLessThanZero: Bool = self .isLessThanZero
let rhsIsLessThanZero: Bool = other.isLessThanZero
let minus = lhsIsLessThanZero != rhsIsLessThanZero
//=--------------------------------------=
var pvo = ANK.bitCast(self.magnitude.multipliedReportingOverflow(by: other.magnitude)) as PVO<Self>
//=--------------------------------------=
var suboverflow = (pvo.partialValue.isLessThanZero)
if minus {
suboverflow = !pvo.partialValue.formTwosComplementSubsequence(true) && suboverflow
}
pvo.overflow = pvo.overflow || suboverflow as Bool
//=--------------------------------------=
return pvo as PVO<Self>
}
//=------------------------------------------------------------------------=
// MARK: Transformations x Full Width
//=------------------------------------------------------------------------=
@_disfavoredOverload @inlinable public mutating func multiplyFullWidth(by other: Digit) -> Digit {
let product = self.multipliedFullWidth(by: other) as HL<Digit, Magnitude>
self = Self(bitPattern: product.low)
return product.high as Digit
}
@_disfavoredOverload @inlinable public func multipliedFullWidth(by other: Digit) -> HL<Digit, Magnitude> {
let lhsIsLessThanZero: Bool = self .isLessThanZero
let rhsIsLessThanZero: Bool = other.isLessThanZero
var minus = lhsIsLessThanZero != rhsIsLessThanZero
//=--------------------------------------=
var product = self.magnitude.multipliedFullWidth(by: other.magnitude) as HL<UInt, Magnitude>
//=--------------------------------------=
if minus {
minus = product.low .formTwosComplementSubsequence(minus)
minus = product.high.formTwosComplementSubsequence(minus)
}
//=--------------------------------------=
return ANK.bitCast(product) as HL<Digit, Magnitude>
}
}
//=----------------------------------------------------------------------------=
// MARK: + Unsigned
//=----------------------------------------------------------------------------=
extension ANKFullWidth where High == High.Magnitude {
//=------------------------------------------------------------------------=
// MARK: Transformations
//=------------------------------------------------------------------------=
@_disfavoredOverload @inlinable mutating func multiplyReportingOverflow(by other: Digit) -> Bool {
!self.multiplyFullWidth(by: other).isZero
}
@_disfavoredOverload @inlinable func multipliedReportingOverflow(by other: Digit) -> PVO<Self> {
var pvo = PVO(self, false)
pvo.overflow = pvo.partialValue.multiplyReportingOverflow(by: other)
return pvo as PVO<Self>
}
//=------------------------------------------------------------------------=
// MARK: Transformations x Full Width
//=------------------------------------------------------------------------=
@_disfavoredOverload @inlinable mutating func multiplyFullWidth(by other: Digit) -> Digit {
var carry = UInt.zero
self.withUnsafeMutableWords { this in
for index in this.indices {
var subproduct = this[index].multipliedFullWidth(by: other)
subproduct.high &+= UInt(bit: subproduct.low.addReportingOverflow(carry))
(carry, this[index]) = subproduct as HL<UInt, UInt>
}
}
return carry as Digit
}
@_disfavoredOverload @inlinable func multipliedFullWidth(by other: Digit) -> HL<Digit, Magnitude> {
var product = HL(UInt.zero, self)
product.high = product.low.multiplyFullWidth(by: other)
return product as HL<Digit, Magnitude>
}
}