risc-v-disassembler 0.0.1

Decodes RISC-V instructions into a rust enum.
Documentation
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
#![allow(non_camel_case_types)]

use std::fmt;

#[derive(Debug, PartialEq)]
pub struct add {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct sub {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct xor {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct or {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct and {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct sll {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct srl {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct sra {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct slt {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct sltu {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub rs2: &'static str,
}

#[derive(Debug, PartialEq)]
pub struct addi {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct xori {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct ori {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct andi {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct slli {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub shamt: u8,
}

#[derive(Debug, PartialEq)]
pub struct srli {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub shamt: u8,
}

#[derive(Debug, PartialEq)]
pub struct srai {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub shamt: u8,
}

#[derive(Debug, PartialEq)]
pub struct slti {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct sltiu {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct lb {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct lh {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct lw {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct lbu {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct lhu {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct sb {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct sh {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct sw {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct beq {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct bne {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct blt {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct bge {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct bltu {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct bgeu {
    pub rs1: &'static str,
    pub rs2: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct jal {
    pub rd: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct jalr {
    pub rd: &'static str,
    pub rs1: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct lui {
    pub rd: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct auipc {
    pub rd: &'static str,
    pub imm: i32,
}

#[derive(Debug, PartialEq)]
pub struct ecall {}

#[derive(Debug, PartialEq)]
pub struct ebreak {}

impl fmt::Display for add {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "add {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for sub {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sub {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for xor {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "xor {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for or {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "or {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for and {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "and {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for sll {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sll {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for srl {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "srl {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for sra {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sra {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for slt {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "slt {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for sltu {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sltu {}, {}, {}", self.rd, self.rs1, self.rs2)
    }
}

impl fmt::Display for addi {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "addi {}, {}, {}", self.rd, self.rs1, self.imm)
    }
}

impl fmt::Display for xori {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "xori {}, {}, {}", self.rd, self.rs1, self.imm)
    }
}

impl fmt::Display for ori {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "ori {}, {}, {}", self.rd, self.rs1, self.imm)
    }
}

impl fmt::Display for andi {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "andi {}, {}, {}", self.rd, self.rs1, self.imm)
    }
}

impl fmt::Display for slli {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "slli {}, {}, {}", self.rd, self.rs1, self.shamt)
    }
}

impl fmt::Display for srli {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "srli {}, {}, {}", self.rd, self.rs1, self.shamt)
    }
}

impl fmt::Display for srai {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "srai {}, {}, {}", self.rd, self.rs1, self.shamt)
    }
}

impl fmt::Display for slti {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "slti {}, {}, {}", self.rd, self.rs1, self.imm)
    }
}

impl fmt::Display for sltiu {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sltiu {}, {}, {}", self.rd, self.rs1, self.imm)
    }
}

impl fmt::Display for lb {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "lb {}, {}({})", self.rd, self.imm, self.rs1)
    }
}

impl fmt::Display for lh {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "lh {}, {}({})", self.rd, self.imm, self.rs1)
    }
}

impl fmt::Display for lw {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "lw {}, {}({})", self.rd, self.imm, self.rs1)
    }
}

impl fmt::Display for lbu {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "lbu {}, {}({})", self.rd, self.imm, self.rs1)
    }
}

impl fmt::Display for lhu {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "lhu {}, {}({})", self.rd, self.imm, self.rs1)
    }
}

impl fmt::Display for sb {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sb {}, {}({})", self.rs2, self.imm, self.rs1)
    }
}

impl fmt::Display for sh {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sh {}, {}({})", self.rs2, self.imm, self.rs1)
    }
}

impl fmt::Display for sw {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "sw {}, {}({})", self.rs2, self.imm, self.rs1)
    }
}

impl fmt::Display for beq {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "beq {}, {}, {}", self.rs1, self.rs2, self.imm)
    }
}

impl fmt::Display for bne {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "bne {}, {}, {}", self.rs1, self.rs2, self.imm)
    }
}

impl fmt::Display for blt {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "blt {}, {}, {}", self.rs1, self.rs2, self.imm)
    }
}

impl fmt::Display for bge {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "bge {}, {}, {}", self.rs1, self.rs2, self.imm)
    }
}

impl fmt::Display for bltu {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "bltu {}, {}, {}", self.rs1, self.rs2, self.imm)
    }
}

impl fmt::Display for bgeu {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "bgeu {}, {}, {}", self.rs1, self.rs2, self.imm)
    }
}

impl fmt::Display for jal {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "jal {}, {}", self.rd, self.imm)
    }
}

impl fmt::Display for jalr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "jalr {}, {}({})", self.rd, self.imm, self.rs1)
    }
}

impl fmt::Display for lui {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "lui {}, {}", self.rd, self.imm)
    }
}

impl fmt::Display for auipc {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "auipc {}, {}", self.rd, self.imm)
    }
}

impl fmt::Display for ecall {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "ecall")
    }
}

impl fmt::Display for ebreak {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "ebreak")
    }
}