generated from cc3-ug/proj01-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
part1.c
executable file
·309 lines (273 loc) · 8.6 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
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
#include <stdio.h> // for stderr
#include <stdlib.h> // for exit()
#include "types.h"
#include "utils.h"
// forward declarations
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 write_rtype(Instruction);
void write_itype_except_load(Instruction);
void write_load(Instruction);
void write_store(Instruction);
void write_branch(Instruction);
void write_auipc(Instruction);
void write_lui(Instruction);
void write_jalr(Instruction);
void write_jal(Instruction);
void write_ecall(Instruction);
void decode_instruction(Instruction instruction) {
switch(instruction.opcode) {
case 0b0110011: // R-type
write_rtype(instruction);
break;
case 0b0010011: // I-type except load
write_itype_except_load(instruction);
break;
case 0b0000011: // Load
write_load(instruction);
break;
case 0b0100011: // Store
write_store(instruction);
break;
case 0b1100011: // Branch
write_branch(instruction);
break;
case 0b0010111: // AUIPC
write_auipc(instruction);
break;
case 0b0110111: // LUI
write_lui(instruction);
break;
case 0b1100111: // JALR
write_jalr(instruction);
break;
case 0b1101111: // JAL
write_jal(instruction);
break;
case 0b1110011: // ECALL
write_ecall(instruction);
break;
default:
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 0x01:
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:
switch(instruction.rtype.funct7) {
case 0x0:
print_rtype("slt", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
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:
switch(instruction.rtype.funct7) {
case 0x0:
print_rtype("and", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
void write_itype_except_load(Instruction instruction) {
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 0x6:
print_itype_except_load("ori", instruction, instruction.itype.imm);
break;
case 0x7:
print_itype_except_load("andi", instruction, instruction.itype.imm);
break;
case 0x5:
switch(instruction.itype.imm >> 5){
case 0x20:
print_itype_except_load("srai",instruction,instruction.itype.imm & 31);
break;
case 0x0:
print_itype_except_load("srli",instruction,instruction.itype.imm & 31);
break;
}
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.btype.funct3) {
case 0x0:
print_branch("beq", instruction);
break;
case 0x1:
print_branch("bne", instruction);
break;
default:
handle_invalid_instruction(instruction);
break;
}
}
/* For the writes, probably a good idea to take a look at utils.h */
void write_auipc(Instruction instruction) {
/* YOUR CODE HERE */
printf(AUIPC_FORMAT, instruction.utype.rd, instruction.utype.imm);
}
void write_lui(Instruction instruction) {
/* YOUR CODE HERE */
printf(LUI_FORMAT, instruction.utype.rd, instruction.utype.imm);
}
void write_jalr(Instruction instruction) {
/* YOUR CODE HERE */
printf(JALR_FORMAT, instruction.itype.rd, instruction.itype.rs1, bitExtender(instruction.itype.imm, 12));
}
void write_jal(Instruction instruction) {
/* YOUR CODE HERE */
printf(JAL_FORMAT, instruction.jtype.rd, bitExtender(get_jump_distance(instruction), 21));
}
void write_ecall(Instruction instruction) {
/* YOUR CODE HERE */
printf(ECALL_FORMAT);
}
void print_rtype(char *name, Instruction instruction) {
/* YOUR CODE HERE */
printf(RTYPE_FORMAT, name, instruction.rtype.rd, instruction.rtype.rs1, instruction.rtype.rs2);
}
void print_itype_except_load(char *name, Instruction instruction, int imm) {
/* YOUR CODE HERE */
printf(ITYPE_FORMAT, name, instruction.itype.rd, instruction.itype.rs1, bitExtender(imm, 12));
}
void print_load(char *name, Instruction instruction) {
/* YOUR CODE HERE */
printf(MEM_FORMAT, name, instruction.itype.rd, bitExtender(instruction.itype.imm, 12), instruction.itype.rs1);
}
void print_store(char *name, Instruction instruction) {
/* YOUR CODE HERE */
printf(MEM_FORMAT, name, instruction.stype.rs2, get_memory_offset(instruction), instruction.stype.rs1);
}
void print_branch(char *name, Instruction instruction) {
/* YOUR CODE HERE */
printf(BRANCH_FORMAT, name, instruction.btype.rs1, instruction.btype.rs2, get_branch_distance(instruction));
}