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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
//! Multiplier.

use super::*;

/// Multiplier function.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum MulOp {
    /// MUL operation.
    Mul,
    /// MULH operation.
    Mulh,
    /// MULHU operation.
    Mulhu,
    /// MULHSU operation.
    Mulhsu,
    /// DIV operation.
    Div,
    /// REM operation.
    Rem,
    /// DIVU operation.
    Divu,
    /// REMU operation.
    Remu,
}

impl MulOp {
    /// Decodes multiplier operation.
    ///
    /// It returns `cmd_mul`, `cmd_hi`, `lhs_signed`, and `rhs_signed` respectively.
    pub fn decode(self) -> (bool, bool, bool, bool) {
        let cmd_mul = matches!(self, MulOp::Mul | MulOp::Mulh | MulOp::Mulhu | MulOp::Mulhsu);
        let cmd_hi = matches!(self, MulOp::Mulh | MulOp::Mulhu | MulOp::Mulhsu | MulOp::Rem | MulOp::Remu);
        let lhs_signed = matches!(self, MulOp::Mulh | MulOp::Mulhsu | MulOp::Div | MulOp::Rem);
        let rhs_signed = matches!(self, MulOp::Mulh | MulOp::Div | MulOp::Rem);

        (cmd_mul, cmd_hi, lhs_signed, rhs_signed)
    }
}

/// Multiplier request.
#[derive(Debug, Clone, Copy)]
pub struct MulReq {
    /// Operation type.
    pub op: MulOp,
    /// First operand.
    pub in1: U<32>,
    /// Second operand.
    pub in2: U<32>,
}

#[derive(Debug, Default, Clone, Copy)]
enum Status {
    #[default]
    Ready,
    NegInputs,
    Mul,
    Div,
    NegOutput,
    DoneMul,
    DoneDiv,
}

/// Multiplier state.
#[allow(unused)]
#[derive(Debug, Clone, Copy)]
pub struct MulS<P: Copy> {
    status: Status,
    req: (P, MulReq),
    count: U<33>,
    neg_out: bool,
    is_hi: bool,
    res_hi: bool,
    divisor: U<33>,
    remainder: U<{ 2 * 32 + 2 }>,
}

impl<P: Copy> Default for MulS<P> {
    fn default() -> Self {
        Self {
            status: Status::default(),
            req: unsafe { x() },
            count: 0.into_u(),
            neg_out: false,
            is_hi: false,
            res_hi: false,
            divisor: 0.into_u(),
            remainder: 0.into_u(),
        }
    }
}

/// Multiplier.
pub fn muldiv<P: Copy, R: Copy>(
    i: I<VrH<(P, MulReq), R>, { Dep::Helpful }>,
) -> I<VrH<(P, U<32>), (R, bool)>, { Dep::Helpful }> {
    unsafe {
        i.fsm::<MulS<P>, { Dep::Helpful }, VrH<(P, U<32>), (R, bool)>>(MulS::default(), |ip, er, s| {
            let kill = er.inner.1;

            if kill {
                // If kill happens, return some garbage value.
                let ep = Some((s.req.0, 0.into_u()));
                let ir = Ready::new(matches!(s.status, Status::Ready), er.inner.0);
                let s_next = MulS::default();

                return (ep, ir, s_next);
            }

            let subtractor = s.remainder.clip_const::<33>(32) - s.divisor;
            let result = if s.res_hi { s.remainder.clip_const::<32>(32 + 1) } else { s.remainder.clip_const::<32>(0) };
            let negated_remainder = 0.into_u() - result;

            let ep = if matches!(s.status, Status::DoneMul | Status::DoneDiv) { Some((s.req.0, result)) } else { None };
            let ir = Ready::new(matches!(s.status, Status::Ready), er.inner.0);

            let s_next = match s.status {
                Status::Ready => {
                    if let Some((p, req)) = ip {
                        let (cmd_mul, cmd_hi, lhs_signed, rhs_signed) = req.op.decode();
                        let lhs_sign = lhs_signed && req.in1[32 - 1];
                        let rhs_sign = rhs_signed && req.in2[32 - 1];

                        MulS {
                            status: if cmd_mul {
                                Status::Mul
                            } else if lhs_sign || rhs_sign {
                                Status::NegInputs
                            } else {
                                Status::Div
                            },
                            is_hi: cmd_hi,
                            res_hi: false,
                            count: 0.into_u(),
                            neg_out: if cmd_hi { lhs_sign } else { lhs_sign ^ rhs_sign },
                            divisor: req.in2.append(rhs_sign.repeat::<1>()),
                            remainder: req.in1.resize(),
                            req: (p, req),
                        }
                    } else {
                        s
                    }
                }
                Status::NegInputs => MulS {
                    remainder: if s.remainder[32 - 1] { negated_remainder.resize() } else { s.remainder },
                    divisor: if s.divisor[32 - 1] { subtractor } else { s.divisor },
                    status: Status::Div,
                    ..s
                },
                Status::NegOutput => {
                    MulS { remainder: negated_remainder.resize(), status: Status::DoneDiv, res_hi: false, ..s }
                }
                Status::Mul => {
                    let mplier_sign = s.remainder[32];
                    let mplier = s.remainder.clip_const::<32>(0);
                    let accum = s.remainder.clip_const::<33>(32 + 1);
                    let mpcand = s.divisor;

                    let prod = {
                        let mpcand = U::from(S::from(mpcand).sext::<34>());
                        let accum = U::from(S::from(accum).sext::<34>());

                        if !mplier[0] {
                            accum
                        } else if mplier_sign {
                            accum - mpcand
                        } else {
                            (accum + mpcand).resize()
                        }
                    };

                    let next_mul_reg = mplier.clip_const::<31>(1).append(prod);
                    let next_mplier_sign = s.count == 30.into_u() && s.neg_out;

                    MulS {
                        count: (s.count + 1.into_u()).resize(),
                        status: if s.count == (32 - 1).into_u() { Status::DoneMul } else { s.status },
                        res_hi: if s.count == (32 - 1).into_u() { s.is_hi } else { s.res_hi },
                        remainder: next_mul_reg
                            .clip_const::<32>(0)
                            .append(next_mplier_sign.repeat::<1>())
                            .append(next_mul_reg.clip_const::<33>(32)),
                        ..s
                    }
                }
                Status::Div => {
                    let remainder = {
                        let difference = subtractor;
                        let less = difference[32];
                        (!less).repeat::<1>().append(s.remainder.clip_const::<32>(0)).append(if less {
                            s.remainder.clip_const::<32>(32)
                        } else {
                            difference.clip_const::<32>(0)
                        })
                    };

                    let divby0 = s.count == 0.into_u() && !subtractor[32];

                    MulS {
                        remainder: remainder.resize(),
                        status: if s.count == 32.into_u() {
                            if s.neg_out {
                                Status::NegOutput
                            } else {
                                Status::DoneDiv
                            }
                        } else {
                            s.status
                        },
                        res_hi: if s.count == 32.into_u() { s.is_hi } else { s.res_hi },
                        count: (s.count + 1.into_u()).resize(),
                        neg_out: if divby0 && !s.is_hi { false } else { s.neg_out },
                        ..s
                    }
                }
                Status::DoneMul | Status::DoneDiv => {
                    if er.ready {
                        MulS::default()
                    } else {
                        s
                    }
                }
            };

            (ep, ir, s_next)
        })
    }
}