-
Notifications
You must be signed in to change notification settings - Fork 1
/
Fetch.h
227 lines (185 loc) · 5.73 KB
/
Fetch.h
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
#pragma once
#include "InterStateBuffers.h"
#include "Functions.h"
#include <bitset>
#include <map>
#include <fstream>
#include <sstream>
#include <vector>
#include <algorithm>
// TODO
#define MEM_SRC "machineCode.txt"
#define HMEM_SRC "machineCode1.txt"
#define REG_WIDTH 32
using namespace std;
/*
Variable hazardType
0 -> OK
1 -> jal
2 -> jalr
3 -> brach
*/
class Fetch {
private:
map <int , bitset <REG_WIDTH> > mem_map;
vector <int > icache;
int cachesize ;
InterStateBuffers * buf;
map <int , int> itype_map;
int hitCount;
int accessCount;
int coldMisses;
int loadCount;
int hazardType;
bitset <REG_WIDTH > branch_address;
bitset <REG_WIDTH > branch_address_def;
int detectControlHazards(InterStateBuffers & buf) { //Return 0 for Ok, 1 jal , jalr 2 , 3 for branch
bitset <REG_WIDTH > temp;
bitset <7> opcode;
temp = mem_map[buf.PC];
for(int i=0;i<7;i++){
opcode[i] = temp[i];
}
if (buf.insType == 3 ) {
return 3;
} else if (buf.insType == 5 ) {
return 1;
} else if (opcode.to_ulong() == 103 ) {
return 2;
} else {
return 0;
}
}
void setBrachAddress (InterStateBuffers & buf , Registry_File reg) {
bitset <20> imm2;
bitset <12> imm;
bitset <12> imm1;
bitset <REG_WIDTH> IR;
bitset <5> rs1;
IR = buf.IR.readInt();
if (hazardType == 1 ) {
// jal instruction
for(int i=0; i<8; i++){
imm2[11+i] = IR[12+i];
}
imm2[10] = IR[20];
for(int i=0; i<10; i++){
imm2[i] = IR[21+i];
}
imm2[19] = IR[31];
branch_address = bitsetRead(imm2) + buf.PC;
branch_address_def = buf.PC + 1;
} else if (hazardType == 2) {
// jalr Instruction
for(int i=0; i<12; i++){
imm[i] = IR[20+i];
}
for(int i=0; i<5; i++){
rs1[i] = IR[15+i];
}
branch_address = bitsetRead(imm) + reg.readInt(bitsetRead(rs1));
branch_address_def = buf.PC + 1;
} else {
// Branch Instructions
imm1[10] = IR[7];
for(int i=0;i<4;i++){
imm1[i] = IR[8+i];
}
for(int i=0;i<6;i++){
imm1[i+4] = IR[25+i];
}
imm1[11] = IR[31]; //imm1 contains offset
branch_address = bitsetRead(imm1) + buf.PC;
branch_address_def = buf.PC + 1; //
}
}
public:
int getHazardType () {
return hazardType;
}
int getBrachAddress () {
return bitsetRead(branch_address);
}
int getDefBrachAddress () {
return bitsetRead(branch_address_def);
}
Fetch(int n = 16) {
ifstream inpFile (MEM_SRC);
string line;
cachesize = n;
icache.resize(cachesize);
loadCount = 4;
hitCount = 0;
accessCount = 0;
coldMisses = 0;
for (int i = 0; i < n; i++ ) {
icache[i] = -1; // value nhi hai
}
while(getline (inpFile , line ) ){
string lineNo, command , type;
stringstream ss (line);
ss >> lineNo >> command >> type;
bitset<REG_WIDTH> bitset(command.c_str());
mem_map[atoi(lineNo.c_str())] = bitset;
itype_map[atoi(lineNo.c_str())] = atoi (type.c_str());
}
}
void updateBuffer(InterStateBuffers & buf) {
buf.hazard_type = hazardType;
buf.branch_address = getBrachAddress();
buf.branch_address_def = getDefBrachAddress();
}
void bufStats (InterStateBuffers & buf) {
buf.hitcount = hitCount;
buf.coldmiss = coldMisses;
buf.accesscount = accessCount;
}
void updateStats (int pc) { // search and load some values
accessCount++;
if (find (icache.begin() ,icache.end(), pc ) != icache.end()) { // mil gaya
hitCount++;
return;
}
if ( find (icache.begin() ,icache.end(), -1 ) != icache.end()) {
coldMisses++; // handlemiss, 8 aur load ke le
}
// handlemiss
sort(icache.begin() , icache.end() ); // Remove First 8 elements
for (int i = 0; i < loadCount;i++ ) {
icache[i] = pc;
pc++;
}
}
void get(InterStateBuffers & buf, Registry_File regs, int i) {
buf.IR.writeBitset ( mem_map[buf.PC]);
buf.insType = itype_map[ buf.PC ]; // Instype and new intructions fetch completed
updateStats(buf.PC);
bufStats(buf);
if (buf.enablePipe) {
hazardType = detectControlHazards(buf);
setBrachAddress(buf, regs);
updateBuffer(buf);
}
ifstream pFile (HMEM_SRC);
string print_file_name = "printsummary.txt";
ofstream oFile(print_file_name.c_str());
string line;
int pp=0;
while(getline (pFile , line ) ){
if(pp==i)
{
string pcNo, hexmc;
stringstream ss (line);
ss >>pcNo>> hexmc;
oFile<<"Fetch Instruction "<<hexmc<<" from address "<<pcNo<<endl;
cout<<"\t\tFetch Instruction "<<hexmc<<" from address "<<pcNo<<endl;
pFile.close();
oFile.close();
pp++;
break;
}
else
pp++;
}
}
};