-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulator.cpp
80 lines (71 loc) · 1.98 KB
/
simulator.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
#include "parser.h"
#include <stdio.h>
#include <vector>
using namespace std;
int main(int argc, char *argv[]) {
if (argc != 4) {
printf("Usage: %s input_nel output_trace output_reg\n", argv[0]);
return 1;
}
FILE *input_file = fopen(argv[1], "r");
if (input_file == NULL) {
printf("Unable to open file %s\n", argv[1]);
return 1;
}
FILE *output_trace = fopen(argv[2], "w");
if (output_trace == NULL) {
printf("Unable to create file %s\n", argv[2]);
return 1;
}
FILE *output_reg = fopen(argv[3], "w");
if (output_reg == NULL) {
printf("Unable to create file %s\n", argv[3]);
return 1;
}
char buffer[1024];
vector<Inst> instructions;
while (!feof(input_file)) {
if (fgets(buffer, sizeof(buffer), input_file) == NULL) {
break;
}
instructions.push_back(parse_inst(buffer));
}
printf("Parsed %ld instructions\n", instructions.size());
// simulation without tomasulo
size_t pc = 0;
int32_t reg[32] = {0};
int cycle = 0;
while (pc < instructions.size()) {
cycle += 1;
struct Inst cur = instructions[pc];
if (cur.type == InstType::Jump) {
if (reg[cur.rs1] == cur.imm) {
// jump
pc += cur.offset;
} else {
pc += 1;
}
continue;
} else if (cur.type == InstType::Load) {
reg[cur.rd] = cur.imm;
} else if (cur.type == InstType::Mul) {
reg[cur.rd] = reg[cur.rs1] * reg[cur.rs2];
} else if (cur.type == InstType::Div) {
if (reg[cur.rs2] == 0) {
reg[cur.rd] = reg[cur.rs1];
} else {
reg[cur.rd] = reg[cur.rs1] / reg[cur.rs2];
}
} else if (cur.type == InstType::Add) {
reg[cur.rd] = reg[cur.rs1] + reg[cur.rs2];
} else if (cur.type == InstType::Sub) {
reg[cur.rd] = reg[cur.rs1] - reg[cur.rs2];
}
pc += 1;
fprintf(output_trace, "%02d: R[%02d] = %08x\n", cycle, cur.rd, reg[cur.rd]);
}
for (int i = 0; i < 32; i++) {
fprintf(output_reg, "R[%02d]=%08x\n", i, reg[i]);
}
return 0;
}