-
Notifications
You must be signed in to change notification settings - Fork 0
/
mips_shif_fixed.cpp
608 lines (577 loc) · 18.9 KB
/
mips_shif_fixed.cpp
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
#include <iostream>
#include "MIPSsim.h"
#include <fstream>
#include <string>
#include <stdlib.h> // for strtoull
#include <sstream>
#include <math.h>// for power function
#include <vector>
using namespace std;
int registers[32];
vector<int> memory;
vector<Node> nodes;
bool breakLine = false;
int memStart;
stringstream ss;
ofstream outFile2;
//calculate offset
int signExt16(string str) {
long offset = strtoul(str.c_str(), NULL, 2);
if(str.substr(0, 1) == "1") {
offset = offset - pow(2, 16);
}
return offset;
}
int zeroExt16(string str) {
return strtoul(str.c_str(), NULL, 2);
}
/*int signExt5(string str) {
long offset = strtoul(str.c_str(), NULL, 2);
if(str.substr(0, 1) == "1") {
offset = offset - pow(2, 5);
}
return offset;
}*/
int immediate5(string str) {
return strtoul(str.c_str(), NULL, 2);
}
//decode cat1 instructions
string cat1(string line, int PC) {
string instruction;
int opcode = strtoul(line.substr(3,3).c_str(), NULL, 2);
//int cat = 1;
if(opcode == 0) {
//NOP
instruction = "NOP";
int opcode = 0;
Node newNode(1, opcode, 0, 0, 0,PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 1) {
//Jump
string bits26 = line.substr(6, 26);
string bits28 = bits26.append("00");
/*for this specific project, PC is a small number, so we just calculate the 28 bits,
ignoring the four 0s in MSB. But this is not exactly what happens in processor.
To follow the logic in processor, we can let X = 0xF0000000 &(pc+4), Y = offset << 2;
then get newPC = X|Y
*/
int pcPlus4 = PC << 2;
int newPC = pcPlus4 & 0xF0000000 | strtoul(bits28.c_str(), NULL, 2);
int destination = newPC/4;
ss << destination;
instruction = "J #" + ss.str();
ss.str(string());
Node newNode(1, opcode, destination, 0, 0, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 2) {
//BEQ
int rs = strtoul(line.substr(6, 5).c_str(), NULL, 2);
ss << rs;
string RS = ss.str();
ss.str(string());
int rt = strtoul(line.substr(11,5).c_str(), NULL, 2);
ss << rt;
string RT = ss.str();
ss.str(string());
long offset = signExt16(line.substr(16, 16));
ss << offset;
string strOff = ss.str();
ss.str(string());
instruction = "BEQ R" + RS + ", " + "R" + RT + ", " + "#" + strOff;
Node newNode(1, opcode, offset, rs, rt, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 3) {
//BNE
int rs = strtoul(line.substr(6, 5).c_str(), NULL, 2);
ss << rs;
string RS = ss.str();
ss.str(string());
int rt = strtoul(line.substr(11,5).c_str(), NULL, 2);
ss << rt;
string RT = ss.str();
ss.str(string());
long offset = signExt16(line.substr(16, 16));
ss << offset;
string strOff = ss.str();
ss.str(string());
instruction = "BNE R" + RS + ", " + "R" + RT + ", " + "#" + strOff;
Node newNode(1, opcode, offset, rs, rt, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 4) {
//BGTZ
int rs = strtoul(line.substr(6, 5).c_str(), NULL, 2);
ss << rs;
string RS = ss.str();
ss.str(string());
long offset = signExt16(line.substr(16, 16));
ss << offset;
instruction = "BGTZ R" + RS + ", " + "#" + ss.str();
ss.str(string());
//Node newNode(1, opcode, rs, 0, offset, PC, instruction);
Node newNode(1, opcode, offset, rs, 0, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 5) {
//SW
int base = strtoul(line.substr(6, 5).c_str(), NULL, 2);
ss << base;
string Base = ss.str();
ss.str(string());
int rt = strtoul(line.substr(11,5).c_str(), NULL, 2);
ss << rt;
string RT = ss.str();
ss.str(string());
long offset = signExt16(line.substr(16, 16));
ss << offset;
string strOff = ss.str();
ss.str(string());
instruction = "SW R" + RT + ", " + strOff + "(R" + Base + ")";
Node newNode(1, opcode, base, rt, offset, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 6) {
//LW
int base = strtoul(line.substr(6, 5).c_str(), NULL, 2);
ss << base;
string Base = ss.str();
ss.str(string());
int rt = strtoul(line.substr(11,5).c_str(), NULL, 2);
ss << rt;
string RT = ss.str();
ss.str(string());
long offset = signExt16(line.substr(16, 16));
ss << offset;
string strOff = ss.str();
ss.str(string());
instruction = "LW R" + RT + ", " + strOff + "(R" + Base + ")";
Node newNode(1, opcode, base, rt, offset, PC, instruction);
nodes.push_back(newNode);
}
else {
//BREAK
instruction = "BREAK";
Node newNode(1, opcode, 0, 0, 0, PC, instruction);
nodes.push_back(newNode);
breakLine = true;
}
return instruction;
}
string cat2(string line, int PC) {
string instruction;
int opcode = strtoul(line.substr(3,3).c_str(), NULL, 2);
int dest = strtoul(line.substr(6,5).c_str(), NULL, 2);
int src1 = strtoul(line.substr(11,5).c_str(), NULL, 2);
int src2 = strtoul(line.substr(16,5).c_str(), NULL, 2);
//convert int to string
ss << dest;
string Dest = ss.str();
ss.str(string());
ss << src1;
string Src1 = ss.str();
ss.str(string());
ss << src2;
string Src2 = ss.str();
ss.str(string());
if(opcode == 0) {
//XOR
instruction = "XOR R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 1) {
//MUL
instruction = "MUL R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 2) {
//ADD
instruction = "ADD R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 3) {
//SUB
instruction = "SUB R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 4) {
//AND
instruction = "AND R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 5) {
//OR
instruction = "OR R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 6) {
//ADDU
instruction = "ADDU R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else {
//SUBU
instruction = "SUBU R" + Dest + ", " + "R" + Src1 + ", " + + "R" + Src2;
Node newNode(2, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
return instruction;
}
string cat3(string line, int PC) {
string instruction;
int opcode = strtoul(line.substr(3,3).c_str(), NULL, 2);
int dest = strtoul(line.substr(6,5).c_str(), NULL, 2);
int src1 = strtoul(line.substr(11,5).c_str(), NULL, 2);
long src2 = signExt16(line.substr(16, 16));
long src2_0 = zeroExt16(line.substr(16, 16));
//int cat = 3;
//convert int to string
ss << dest;
string Dest = ss.str();
ss.str(string());
ss << src1;
string Src1 = ss.str();
ss.str(string());
ss << src2;
string Src2 = ss.str();
ss.str(string());
ss << src2_0;
string Src2_0 = ss.str();
ss.str(string());
if(opcode == 0 ) {
//ORI
instruction = "ORI R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2_0;
Node newNode(3, opcode, dest, src1, src2_0, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 1) {
//XORI
instruction = "XORI R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2_0;
Node newNode(3, opcode, dest, src1, src2_0, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 2) {
//ADDI
instruction = "ADDI R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2;
Node newNode(3, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 3) {
//SUBI
instruction = "SUBI R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2;
Node newNode(3, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 4) {
//ANDI
instruction = "ANDI R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2_0;
Node newNode(3, opcode, dest, src1, src2_0, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 5) {
//SRL
//src2 = signExt5(line.substr(27, 5));
src2 = immediate5(line.substr(27, 5));
ss << src2;
Src2 = ss.str();
ss.str(string());
instruction = "SRL R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2;
Node newNode(3, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else if(opcode == 6) {
//SRA
//src2 = signExt5(line.substr(27, 5));
src2 = immediate5(line.substr(27, 5));
ss << src2;
Src2 = ss.str();
ss.str(string());
instruction = "SRA R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2;
Node newNode(3, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
else {
//SLL
//src2 = signExt5(line.substr(27, 5));
src2 = immediate5(line.substr(27, 5));
ss << src2;
Src2 = ss.str();
ss.str(string());
instruction = "SLL R" + Dest + ", " + "R" + Src1 + ", " + + "#" + Src2;
Node newNode(3, opcode, dest, src1, src2, PC, instruction);
nodes.push_back(newNode);
}
return instruction;
}
//convert 2's complement to decimal
string cat4(string line) {
int cat = 4;
long data = strtoul(line.c_str(), NULL, 2);
if(line.substr(0,1) == "1") {
data = data - pow(2, 32);
}
ss << data;
string instruction = ss.str();
ss.str(string());
//Node newNode(cat, 0, 0, 0, data);
//nodes.push_back(newNode);
return instruction;
}
//print out data in registers and memory
void printTrace(Node* node, int cycle) {
outFile2 << "--------------------\n";
outFile2 << "Cycle " << cycle << ":\t" << node->getPC() << "\t" << node->getInstruction() << endl;
//print out data in registers
outFile2 << "\nRegisters\n";
for(int i = 0; i < 4; i++) {
if(i <= 1) {
outFile2 << "R0" << 8*i << ":\t";
}
else {
outFile2 << "R" << 8*i << ":\t";
}
for(int j = 0; j < 7; j++) {
outFile2 << registers[8*i + j] << "\t";
}
outFile2 << registers[8*i + 7] << endl;
}
//print out data in memory
outFile2 << "\nData\n";
//cout << memStart << ":\t";
for(int i = 0; i < memory.size()/8; i++) {
outFile2 << memStart + i * 32 << ":\t";
for(int j = 0; j < 8; j++) {
outFile2 << memory[8*i + j] << "\t";
}
outFile2 << endl;
}
}
bool isBreak(Node& node) {
return (node.getCat() == 1 && node.getOpcode() == 7);
}
//int main() {
int main(int argc, char* argv[]) {
ifstream inFile;
if(argc == 2) {
inFile.open(argv[1]);
if(inFile.fail()) {
cerr << "Error when opening file.\n";
exit(1);
}
}
else {
cout << "\nInvalid input, please enter the executable name and the test file name\n";
}
//open output files for storing disassembly
ofstream outFile1;
outFile1.open("disassembly.txt");
outFile2.open("simulation.txt");
//read input and decode it
string line;
int address = 64;
string instruction;
//read input file and decode it then store decoded instructions into output file1
while(inFile >> line) {
if(line.substr(0,3) == "001") {
instruction = cat1(line, address);
outFile1 << line << "\t" << address << "\t" << instruction << "\n";
if(breakLine) {
memStart = address + 4;
}
}
else if(line.substr(0,3) == "010") {
instruction = cat2(line, address);
outFile1 << line << "\t" << address << "\t" << instruction << "\n";
}
else if(line.substr(0,3) == "100"){
instruction = cat3(line, address);
outFile1 << line << "\t" << address << "\t" << instruction << "\n";
}
else {
instruction = cat4(line);
outFile1 << line << "\t" << address << "\t" << instruction << "\n";
//store data decoded after the break line into corresponding memeory address
memory.push_back(strtoul(instruction.c_str(), NULL, 10));
}
address += 4;
}
inFile.close();
outFile1.close();
//initialize registers
for(int i = 0; i < 32; i++) {
registers[i] = 0;
}
//access each element in the vector which stores the decoded instruction
int i = 0;
int c = 1;
//for(int i = 0; i < nodes.size(); ) {
while(!isBreak(nodes[i])) {
if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 0) {
//NOP
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 1) {
//J, not accessing memory or registers
printTrace(&nodes[i], c++);
i = nodes[i].getDest() - 64/4;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 2) {
//BEQ
printTrace(&nodes[i], c++);
if(registers[nodes[i].getSrc1()] == registers[nodes[i].getSrc2()]) {
i += nodes[i].getDest();
}
i++;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 3) {
//BNE
printTrace(&nodes[i], c++);
if(registers[nodes[i].getSrc1()] != registers[nodes[i].getSrc2()]) {
i += nodes[i].getDest();
}
i++;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 4) {
//BGTZ
printTrace(&nodes[i], c++);
if(registers[nodes[i].getSrc1()] > nodes[i].getSrc2()) {
i += nodes[i].getDest();
}
i++;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 5) {
//SW
int mem = registers[nodes[i].getDest()] + nodes[i].getSrc2();
memory[(mem - memStart)/4] = registers[nodes[i].getSrc1()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 6) {
//LW
int mem = registers[nodes[i].getDest()] + nodes[i].getSrc2();
registers[nodes[i].getSrc1()] = memory[(mem -memStart)/4];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 1 && nodes[i].getOpcode() == 7) {
//BREAK
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 0) {
//XOR
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] ^ registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 1) {
//MUL
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] * registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 2) {
//ADD
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] + registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 3) {
//SUB
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] - registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 4) {
//AND
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] & registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 5) {
//OR
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] | registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 6) {
//ADDU
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] + registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 2 && nodes[i].getOpcode() == 7) {
//SUBU
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] - registers[nodes[i].getSrc2()];
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 0) {
//ORI
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] | nodes[i].getSrc2();
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 1) {
//XORI
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] ^ nodes[i].getSrc2();
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 2) {
//ADDI
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] + nodes[i].getSrc2();
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 3) {
//SUBI
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] - nodes[i].getSrc2();
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 4) {
//ANDI
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] & nodes[i].getSrc2();
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 5) {
//SRL
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] / pow(2, nodes[i].getSrc2());
printTrace(&nodes[i], c++);
i++;
}
else if(nodes[i].getCat() == 3 && nodes[i].getOpcode() == 6) {
//SRA
if(registers[nodes[i].getSrc1()] >= 0 ) {
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] / pow(2, nodes[i].getSrc2());
}
else {
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] / pow(2, nodes[i].getSrc2()) - 1;
}
printTrace(&nodes[i], c++);
i++;
}
else {
//SLL
registers[nodes[i].getDest()] = registers[nodes[i].getSrc1()] * pow(2, nodes[i].getSrc2());
printTrace(&nodes[i], c++);
i++;
}
}
//print out the break instruction
printTrace(&nodes[i], c);
outFile2.close();
return 0;
}