-
Notifications
You must be signed in to change notification settings - Fork 2
/
part1.c
279 lines (263 loc) · 7.58 KB
/
part1.c
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
#include <stdio.h> // for stderr
#include <stdlib.h> // for exit()
#include "types.h"
#include "utils.h"
void print_rtype(char *, Instruction);
void print_itype_except_load(char *, Instruction, int);
void print_load(char *, Instruction);
void print_store(char *, Instruction);
void print_branch(char *, Instruction);
void print_lui(Instruction);
void print_jal(Instruction);
void print_ecall(Instruction);
void write_rtype(Instruction);
void write_itype_except_load(Instruction);
void write_load(Instruction);
void write_store(Instruction);
void write_branch(Instruction);
void decode_instruction(uint32_t instruction_bits) {
Instruction instruction = parse_instruction(instruction_bits);
switch(instruction.opcode) {
case 0x33:
write_rtype(instruction);
break;
case 0x13:
write_itype_except_load(instruction);
break;
case 0x3:
write_load(instruction);
break;
case 0x23:
write_store(instruction);
break;
case 0x63:
write_branch(instruction);
break;
case 0x37:
print_lui(instruction);
break;
case 0x6F:
print_jal(instruction);
break;
case 0x73:
print_ecall(instruction);
break;
default: // undefined opcode
handle_invalid_instruction(instruction);
break;
}
}
void write_rtype(Instruction instruction) {
switch (instruction.rtype.funct3) {
case 0x0:
switch (instruction.rtype.funct7) {
case 0x0:
print_rtype("add", instruction);
break;
case 0x1:
print_rtype("mul", instruction);
break;
case 0x20:
print_rtype("sub", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
case 0x1:
switch (instruction.rtype.funct7) {
case 0x0:
print_rtype("sll", instruction);
break;
case 0x1:
print_rtype("mulh", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
case 0x2:
print_rtype("slt", instruction);
break;
case 0x4:
switch (instruction.rtype.funct7) {
case 0x0:
print_rtype("xor", instruction);
break;
case 0x1:
print_rtype("div", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
case 0x5:
switch (instruction.rtype.funct7) {
case 0x0:
print_rtype("srl", instruction);
break;
case 0x20:
print_rtype("sra", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
case 0x6:
switch (instruction.rtype.funct7) {
case 0x0:
print_rtype("or", instruction);
break;
case 0x1:
print_rtype("rem", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
case 0x7:
print_rtype("and", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
void write_itype_except_load(Instruction instruction) {
int shiftOp;
switch (instruction.itype.funct3) {
case 0x0:
print_itype_except_load("addi", instruction, instruction.itype.imm);
break;
case 0x1:
print_itype_except_load("slli", instruction, instruction.itype.imm);
break;
case 0x2:
print_itype_except_load("slti", instruction, instruction.itype.imm);
break;
case 0x4:
print_itype_except_load("xori", instruction, instruction.itype.imm);
break;
case 0x5:
shiftOp = instruction.itype.imm >> 10;
switch(shiftOp) {
case 0x0:
print_itype_except_load("srli", instruction, instruction.itype.imm & 0x1F);
break;
case 0x1:
print_itype_except_load("srai", instruction, instruction.itype.imm & 0x1F);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
case 0x6:
print_itype_except_load("ori", instruction, instruction.itype.imm);
break;
case 0x7:
print_itype_except_load("andi", instruction, instruction.itype.imm);
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
void write_load(Instruction instruction) {
switch (instruction.itype.funct3) {
case 0x0:
print_load("lb", instruction);
break;
case 0x1:
print_load("lh", instruction);
break;
case 0x2:
print_load("lw", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
void write_store(Instruction instruction) {
switch (instruction.stype.funct3) {
case 0x0:
print_store("sb", instruction);
break;
case 0x1:
print_store("sh", instruction);
break;
case 0x2:
print_store("sw", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
void write_branch(Instruction instruction) {
switch (instruction.sbtype.funct3) {
case 0x0:
print_branch("beq", instruction);
break;
case 0x1:
print_branch("bne", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
void print_lui(Instruction instruction) {
printf(LUI_FORMAT,
instruction.utype.rd,
instruction.utype.imm);
}
void print_jal(Instruction instruction) {
printf(JAL_FORMAT,
instruction.ujtype.rd,
get_jump_offset(instruction));
}
void print_ecall(Instruction instruction) {
printf(ECALL_FORMAT);
}
void print_rtype(char *name, Instruction instruction) {
printf(RTYPE_FORMAT,
name,
instruction.rtype.rd,
instruction.rtype.rs1,
instruction.rtype.rs2);
}
void print_itype_except_load(char *name, Instruction instruction, int imm) {
printf(ITYPE_FORMAT,
name,
instruction.itype.rd,
instruction.itype.rs1,
sign_extend_number(imm, 12));
}
void print_load(char *name, Instruction instruction) {
printf(MEM_FORMAT,
name,
instruction.itype.rd,
instruction.itype.imm,
instruction.itype.rs1);
}
void print_store(char *name, Instruction instruction) {
printf(MEM_FORMAT,
name,
instruction.stype.rs2,
get_store_offset(instruction),
instruction.stype.rs1);
}
void print_branch(char *name, Instruction instruction) {
printf(BRANCH_FORMAT,
name,
instruction.sbtype.rs1,
instruction.sbtype.rs2,
get_branch_offset(instruction));
}