-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaraa-handin.tar
208 lines (193 loc) · 10 KB
/
baraa-handin.tar
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
csim.c 0000664 0001750 0001750 00000006270 14640023776 011073 0 ustar baraa baraa #include "cachelab.h"
#include <getopt.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
static int hits = 0;
static int misses = 0;
static int evictions = 0;
typedef struct {
int validBit;
long long tag;
int LRU;
} CacheLine;
// in order to create cache i need to know
// the number of sets and the number of lines in each set
CacheLine** createCache(int S ,int E) {
CacheLine** cache = (CacheLine**)malloc(S * sizeof(CacheLine*));
for(int i = 0 ; i < S ; i++) {
cache[i] = (CacheLine*)malloc(E * sizeof(CacheLine));
}
return cache;
}
void simulation(CacheLine ** cache, unsigned long int setIndex, unsigned long int tag, unsigned int S, unsigned int E) {
int match = 0; int addIndex = -1;
CacheLine * cacheSet = cache[setIndex];
for (int i = 0; i < E; i++) {
if (cacheSet[i].validBit == 1) {
// hit
if (cacheSet[i].tag == tag) {
match = 1;
hits++;
cache[setIndex][i].LRU = 0;
break;
}
// valid bit - tag doesn't match
else {
cache[setIndex][i].LRU += 1;
}
}
else {
addIndex = i;
}
}
// misses
if (match == 0) {
// miss - no eviction
if (addIndex != -1) {
CacheLine addLine = {1, tag, 0}; // block == line
cache[setIndex][addIndex] = addLine;
misses++;
}
// miss - do evict
else {
int max = 0; int evictIndex = -1;
for (int i = 0; i < E; i++) {
if (cache[setIndex][i].validBit == 1 && cache[setIndex][i].LRU >= max) {
max = cache[setIndex][i].LRU;
evictIndex = i;
}
}
CacheLine replaceLine = {1, tag, 0};
cache[setIndex][evictIndex] = replaceLine;
misses++;
evictions++;
}
}
}
void readContent(char fileContents[], unsigned int b, unsigned int s, unsigned int S, unsigned int E, CacheLine ** cache) {
FILE * file1 = fopen(fileContents, "r");
char operation; unsigned long int address; int size;
while (fscanf(file1, " %c %lx,%d", &operation, &address, &size) != EOF) {
if (operation == 'I') {
continue;
}
if (operation == 'M') {
hits++;
}
unsigned long int tag = address >> s >> b;
unsigned long int setIndex = address >> b & (S - 1);
simulation(cache, setIndex, tag, S, E);
}
fclose(file1);
}
void clearCache(CacheLine ** cache, unsigned int S) {
for (int i = 0; i < S; i++) {
free(cache[i]);
}
free(cache);
}
int main(int argc ,char *argv[])
{
// We need to parse the command arguments to get the values of s , E , b
int s = 0 , E = 0 , b = 0;
char content[1000] = "";
int init = 0;
while ((init = getopt(argc, argv, "s:E:b:t:")) != -1) {
switch (init) {
case 's':
s = atoi(optarg);
break;
case 'E':
E = atoi(optarg);
break;
case 'b':
b = atoi(optarg);
break;
case 't':
strcpy(content, optarg);
break;
default:
break;
}
}
int S = 1 << s; // number of sets is 2^s
CacheLine** cache = createCache(S, E);
readContent(content , b , s , S , E , cache);
clearCache(cache, S);
printSummary(hits, misses, evictions);
return 0;
}