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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
//! RISC-V Instruction.
//! Currently supports
//! - RV32I Base Instruction Set
//! - RV32/RV64 Zicsr Standard Extension
//! - Partial RISC-V Privileged Instruction Set including:
//!   + Trap-Return Instructions
//!   + Interrupt-Management Instructions

#![allow(missing_docs)]

use super::*;

// =========== Constants =========== //
/// CSR Address is 12-bit.
pub const LEN_CSR_ADDR: usize = 12;

/// Number of registers.
pub const REGS: usize = 32;

/// ALU first operand data selector.
#[derive(Debug, Clone, Copy)]
pub enum Op1Sel {
    Rs1,
    Pc,
    Imm,
}

/// ALU second operand data selector.
#[derive(Debug, Clone, Copy)]
pub enum Op2Sel {
    Four,
    Imm,
    Rs2,
}

/// Decoded instruction.
///
/// It does not contain the resolved register values.
#[derive(Debug, Clone, Copy)]
pub struct Instruction {
    pub is_illegal: bool,
    pub br_type: HOption<BrType>,
    pub rs1_addr: HOption<U<{ clog2(REGS) }>>,
    pub rs2_addr: HOption<U<{ clog2(REGS) }>>,
    pub rd_addr: HOption<U<{ clog2(REGS) }>>,
    pub imm: u32,
    pub alu_op: AluOp,
    pub wb_sel: HOption<WbSel>,
    pub csr_info: HOption<CsrInfo>,
    pub mem_info: HOption<(MemOpFcn, MemOpTyp)>,
    op1_sel: HOption<Op1Sel>,
    op2_sel: HOption<Op2Sel>,
}

/// Extracts immediate for B-type instruction.
#[inline]
pub fn imm_btype(value: U<32>) -> U<32> {
    false
        .repeat::<1>()
        .append(value.clip_const::<4>(8))
        .append(value.clip_const::<6>(25))
        .append(value[7].repeat::<1>())
        .append(value[31].repeat::<1>())
        .append(value[31].repeat::<19>())
}

/// Extracts immediate for J-type instruction.
#[inline]
pub fn imm_jtype(value: U<32>) -> U<32> {
    false
        .repeat::<1>()
        .append(value.clip_const::<10>(21))
        .append(value[20].repeat::<1>())
        .append(value.clip_const::<8>(12))
        .append(value[31].repeat::<12>())
}

impl Instruction {
    pub fn op1_data(self, rs1: HOption<Register>, pc: u32) -> u32 {
        self.op1_sel
            .map(|sel| match sel {
                Op1Sel::Rs1 => rs1.unwrap().data,
                Op1Sel::Pc => pc,
                Op1Sel::Imm => self.imm,
            })
            .unwrap_or(0)
    }

    pub fn op2_data(self, rs2: HOption<Register>) -> u32 {
        self.op2_sel
            .map(|sel| match sel {
                Op2Sel::Rs2 => rs2.unwrap().data,
                Op2Sel::Four => 4,
                Op2Sel::Imm => self.imm,
            })
            .unwrap_or(0)
    }

    pub fn br_info(self, rs1: HOption<Register>, pc: u32) -> HOption<BrInfo> {
        self.br_type.map(|typ| BrInfo {
            typ,
            base: if matches!(typ, BrType::Jalr) { rs1.unwrap().data } else { pc },
            offset: self.imm,
        })
    }
}

impl From<u32> for Instruction {
    fn from(value: u32) -> Self {
        let funct7 = (value & 0xfe000000) >> 25;
        let funct3 = (value & 0x00007000) >> 12;
        let opcode = value & 0x0000007f;

        /* RV32I Base Instruction Set */
        let is_lui = opcode == 0b0110111;
        let is_auipc = opcode == 0b0010111;

        let is_jal = opcode == 0b1101111;
        let is_jalr = funct3 == 0b000 && opcode == 0b1100111;
        let is_beq = funct3 == 0b000 && opcode == 0b1100011;
        let is_bne = funct3 == 0b001 && opcode == 0b1100011;
        let is_blt = funct3 == 0b100 && opcode == 0b1100011;
        let is_bge = funct3 == 0b101 && opcode == 0b1100011;
        let is_bltu = funct3 == 0b110 && opcode == 0b1100011;
        let is_bgeu = funct3 == 0b111 && opcode == 0b1100011;

        let is_lb = funct3 == 0b000 && opcode == 0b0000011;
        let is_lh = funct3 == 0b001 && opcode == 0b0000011;
        let is_lw = funct3 == 0b010 && opcode == 0b0000011;
        let is_lbu = funct3 == 0b100 && opcode == 0b0000011;
        let is_lhu = funct3 == 0b101 && opcode == 0b0000011;
        let is_sb = funct3 == 0b000 && opcode == 0b0100011;
        let is_sh = funct3 == 0b001 && opcode == 0b0100011;
        let is_sw = funct3 == 0b010 && opcode == 0b0100011;

        let is_addi = funct3 == 0b000 && opcode == 0b0010011;
        let is_slti = funct3 == 0b010 && opcode == 0b0010011;
        let is_sltiu = funct3 == 0b011 && opcode == 0b0010011;
        let is_xori = funct3 == 0b100 && opcode == 0b0010011;
        let is_ori = funct3 == 0b110 && opcode == 0b0010011;
        let is_andi = funct3 == 0b111 && opcode == 0b0010011;
        let is_slli = funct7 == 0b0000000 && funct3 == 0b001 && opcode == 0b0010011;
        let is_srli = funct7 == 0b0000000 && funct3 == 0b101 && opcode == 0b0010011;
        let is_srai = funct7 == 0b0100000 && funct3 == 0b101 && opcode == 0b0010011;

        let is_add = funct7 == 0b0000000 && funct3 == 0b000 && opcode == 0b0110011;
        let is_sub = funct7 == 0b0100000 && funct3 == 0b000 && opcode == 0b0110011;
        let is_sll = funct7 == 0b0000000 && funct3 == 0b001 && opcode == 0b0110011;
        let is_slt = funct7 == 0b0000000 && funct3 == 0b010 && opcode == 0b0110011;
        let is_sltu = funct7 == 0b0000000 && funct3 == 0b011 && opcode == 0b0110011;
        let is_xor = funct7 == 0b0000000 && funct3 == 0b100 && opcode == 0b0110011;
        let is_srl = funct7 == 0b0000000 && funct3 == 0b101 && opcode == 0b0110011;
        let is_sra = funct7 == 0b0100000 && funct3 == 0b101 && opcode == 0b0110011;
        let is_or = funct7 == 0b0000000 && funct3 == 0b110 && opcode == 0b0110011;
        let is_and = funct7 == 0b0000000 && funct3 == 0b111 && opcode == 0b0110011;

        let is_fence = funct3 == 0b000 && opcode == 0b0001111;
        let is_ecall = value == 0b00000000000000000000000001110011;
        let is_ebreak = value == 0b00000000000100000000000001110011;

        /* RV32/RV64 Zicsr Standard Extension */
        let is_csrrw = funct3 == 0b001 && opcode == 0b1110011;
        let is_csrrs = funct3 == 0b010 && opcode == 0b1110011;
        let is_csrrc = funct3 == 0b011 && opcode == 0b1110011;
        let is_csrrwi = funct3 == 0b101 && opcode == 0b1110011;
        let is_csrrsi = funct3 == 0b110 && opcode == 0b1110011;
        let is_csrrci = funct3 == 0b111 && opcode == 0b1110011;

        /* RV Priviledged Set */
        let is_mret = value == 0x30200073;
        let is_wfi = value == 0x10500073;

        let l1 = is_lw || is_lb || is_lbu || is_lh || is_lhu || is_sw || is_sb || is_sh;
        let l2 = is_auipc || is_lui;
        let l3 = is_addi || is_andi || is_ori || is_xori || is_slti || is_sltiu || is_slli || is_srai || is_srli;
        let l4 = is_sll || is_add || is_sub || is_slt || is_sltu || is_and || is_or || is_xor || is_sra || is_srl;
        let l5 = is_jal || is_jalr || is_beq || is_bne || is_bge || is_bgeu || is_blt || is_bltu;
        let l6 = is_csrrwi || is_csrrsi || is_csrrw || is_csrrs || is_csrrc || is_csrrci;
        let l7 = is_ecall || is_mret || is_ebreak || is_wfi;
        let l8 = is_fence;

        let is_illegal = !(l1 || l2 || l3 || l4 || l5 || l6 || l7 || l8);
        let is_rtype = l4;
        let is_itype = is_lw || is_lb || is_lbu || is_lh || is_lhu || l3 || is_jalr;
        let is_stype = is_sw || is_sh || is_sb;
        let is_btype = is_beq || is_bne || is_bge || is_bgeu || is_blt || is_bltu;
        let is_utype = l2;
        let is_jtype = is_jal;
        let is_csr = is_csrrw || is_csrrs || is_csrrc;
        let is_csri = is_csrrwi || is_csrrsi || is_csrrci;

        let br_type = if is_beq {
            Some(BrType::Beq)
        } else if is_bne {
            Some(BrType::Bne)
        } else if is_bge {
            Some(BrType::Bge)
        } else if is_bgeu {
            Some(BrType::Bgeu)
        } else if is_blt {
            Some(BrType::Blt)
        } else if is_bltu {
            Some(BrType::Bltu)
        } else if is_jtype {
            Some(BrType::Jal)
        } else if is_jalr {
            Some(BrType::Jalr)
        } else {
            None
        };

        let value = U::<32>::from(value);
        let rs1_addr = value.clip_const::<5>(15);
        let rs2_addr = value.clip_const::<5>(20);
        let rd_addr = value.clip_const::<5>(7);
        let csr_addr = value.clip_const::<12>(20);

        let rs1_addr = if is_rtype || is_itype || is_stype || is_btype || is_csr { Some(rs1_addr) } else { None };
        let rs2_addr = if is_rtype || is_stype || is_btype { Some(rs2_addr) } else { None };

        let rd_addr = if (is_rtype || is_itype || is_utype || is_jtype || is_csr || is_csri) && (rd_addr != U::from(0))
        {
            Some(rd_addr)
        } else {
            None
        };

        let imm_utype = false.repeat::<12>().append(value.clip_const::<20>(12));
        let imm_itype = value.clip_const::<11>(20).append(value[31].repeat::<21>());
        let imm_stype = value.clip_const::<5>(7).append(value.clip_const::<6>(25)).append(value[31].repeat::<21>());

        let imm = if is_itype {
            if is_slli || is_srli || is_srai {
                value.clip_const::<5>(20).append(U::<27>::from(0u32))
            } else {
                imm_itype
            }
        } else if is_stype {
            imm_stype
        } else if is_btype {
            imm_btype(value)
        } else if is_utype {
            imm_utype
        } else if is_jtype {
            imm_jtype(value)
        } else if is_csri {
            value.clip_const::<5>(15).append(false.repeat::<27>())
        } else {
            U::from(0)
        };

        let alu_op = if is_sll || is_slli {
            AluOp::Base(BaseAluOp::Sll)
        } else if is_add || is_addi || is_jalr {
            AluOp::Base(BaseAluOp::Add)
        } else if is_sub {
            AluOp::Base(BaseAluOp::Sub)
        } else if is_slt || is_slti {
            AluOp::Base(BaseAluOp::Slt)
        } else if is_sltu || is_sltiu {
            AluOp::Base(BaseAluOp::Sltu)
        } else if is_and || is_andi {
            AluOp::Base(BaseAluOp::And)
        } else if is_or || is_ori {
            AluOp::Base(BaseAluOp::Or)
        } else if is_xor || is_xori {
            AluOp::Base(BaseAluOp::Xor)
        } else if is_sra || is_srai {
            AluOp::Base(BaseAluOp::Sra)
        } else if is_srl || is_srli {
            AluOp::Base(BaseAluOp::Srl)
        } else if is_lw || is_lh || is_lhu || is_lb || is_lbu || is_jtype || is_stype || is_auipc {
            AluOp::Base(BaseAluOp::Add)
        } else if is_lui {
            AluOp::Base(BaseAluOp::CopyOp2)
        } else if is_beq || is_bne {
            AluOp::Base(BaseAluOp::Xor)
        } else if is_bge {
            AluOp::Base(BaseAluOp::Slt)
        } else if is_bgeu {
            AluOp::Base(BaseAluOp::Sltu)
        } else if is_blt {
            AluOp::Base(BaseAluOp::Slt)
        } else if is_bltu {
            AluOp::Base(BaseAluOp::Sltu)
        } else if is_csr || is_csri {
            AluOp::Base(BaseAluOp::CopyOp1)
        } else {
            AluOp::Base(BaseAluOp::Zero)
        };

        let wb_sel = if is_rtype {
            Some(WbSel::Alu)
        } else if is_itype {
            if is_lw || is_lh || is_lhu || is_lb || is_lbu {
                Some(WbSel::Mem)
            } else {
                Some(WbSel::Alu)
            }
        } else if is_utype || is_jtype {
            Some(WbSel::Alu)
        } else if is_stype || is_btype {
            None
        } else if is_csr || is_csri {
            Some(WbSel::Csr)
        } else {
            None
        };
        let imm = u32::from(imm);

        let csr_info = if is_csrrc || is_csrrci {
            Some(CsrInfo { addr: csr_addr, cmd: if rs1_addr == Some(U::from(0)) { CsrCmd::R } else { CsrCmd::C } })
        } else if is_csrrw || is_csrrwi {
            Some(CsrInfo { addr: csr_addr, cmd: CsrCmd::W })
        } else if is_csrrs || is_csrrsi {
            Some(CsrInfo { addr: csr_addr, cmd: if rs1_addr == Some(U::from(0)) { CsrCmd::R } else { CsrCmd::S } })
        } else if is_ecall || is_ebreak || is_mret {
            Some(CsrInfo { addr: csr_addr, cmd: CsrCmd::I })
        } else {
            None
        };

        let mem_info = if is_lw {
            Some((MemOpFcn::Load, MemOpTyp::W))
        } else if is_lh {
            Some((MemOpFcn::Load, MemOpTyp::H))
        } else if is_lhu {
            Some((MemOpFcn::Load, MemOpTyp::HU))
        } else if is_lb {
            Some((MemOpFcn::Load, MemOpTyp::B))
        } else if is_lbu {
            Some((MemOpFcn::Load, MemOpTyp::BU))
        } else if is_sw {
            Some((MemOpFcn::Store, MemOpTyp::W))
        } else if is_sh {
            Some((MemOpFcn::Store, MemOpTyp::H))
        } else if is_sb {
            Some((MemOpFcn::Store, MemOpTyp::B))
        } else {
            None
        };

        let op1_sel = if is_auipc || is_jtype || is_jalr {
            Some(Op1Sel::Pc)
        } else if is_csri {
            Some(Op1Sel::Imm)
        } else if is_lui || is_ecall || is_ebreak || is_fence || is_mret || is_wfi || is_illegal {
            None
        } else {
            Some(Op1Sel::Rs1)
        };

        let op2_sel = if is_rtype || is_btype {
            Some(Op2Sel::Rs2)
        } else if is_jtype || is_jalr {
            Some(Op2Sel::Four)
        } else if is_itype || is_stype || is_utype {
            Some(Op2Sel::Imm)
        } else {
            None
        };

        Self {
            is_illegal,
            br_type,
            rs1_addr,
            rs2_addr,
            rd_addr,
            imm,
            alu_op,
            wb_sel,
            csr_info,
            mem_info,
            op1_sel,
            op2_sel,
        }
    }
}

/// Branch information.
#[derive(Debug, Clone, Copy)]
pub struct BrInfo {
    /// Branch type.
    pub typ: BrType,

    /// Base address.
    pub base: u32,

    /// Offset.
    pub offset: u32,
}

/// Branch type.
#[derive(Debug, Clone, Copy)]
pub enum BrType {
    /// JAL.
    Jal,

    /// JALR.
    Jalr,

    /// Branch on equal.
    Beq,

    /// Branch on not equal.
    Bne,

    /// Branch on greater or equal.
    Bge,

    /// Branch on less.
    Blt,

    /// Branch on greater or equal (unsigned).
    Bgeu,

    /// Branch on less (unsigned).
    Bltu,
}

/// Writeback selector.
///
/// Indicates which value should be writeback to the regfile.
#[derive(Debug, Clone, Copy)]
pub enum WbSel {
    /// Writeback ALU output (e.g., `add`, `sub`, ...).
    Alu,

    /// Writeback DMEM response (e.g., `lb`, `lh`, ...).
    Mem,

    /// Writeback CSR response (e.g., `csrr`, `csrw`, ...).
    Csr,
}