-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcache.c
623 lines (478 loc) · 16.7 KB
/
cache.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
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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
/*
* Author: Akhil
* Date: 19/3/20
*
* Contains the function definiions of the cache ADT.
*/
#include <stdio.h>
#include "dataTypes.h"
#include "configuration.h"
#include "cache.h"
#include "utility.h"
#include "pageTable.h"
#include "frameTable.h"
// L1 Cache is split into two-- data and instruction.
extern CacheL1 l1Cache[2];
extern CacheL2 l2Cache;
extern FILE *outputFile;
// For testing the functions.
/*
int main(int argc, char const *argv[])
{
FILE *outputFile = fopen(OUTPUT_FILE_NAME, "w");
fclose(outputFile);
// L1 test
initL1Cache();
int setIndex, wayIndex;
bool dataCache, write;
setIndex = 3; wayIndex = 4;
dataCache = true; write = true;
printL1Cache(setIndex, dataCache);
updateL1Cache(setIndex, 100, write, 100, dataCache);
updateL1Cache(setIndex, 101, write, 101, dataCache);
updateL1Cache(setIndex, 102, write, 102, dataCache);
updateL1Cache(setIndex, 103, write, 103, dataCache);
updateL1Cache(setIndex, 104, write, 104, dataCache);
updateL1Cache(setIndex, 105, write, 105, dataCache);
updateL1Cache(setIndex, 106, write, 106, dataCache);
updateL1Cache(setIndex, 107, write, 107, dataCache);
searchL1Cache(setIndex, 100, dataCache);
searchL1Cache(setIndex, 107, dataCache);
printL1Cache(setIndex, dataCache);
updateL1Cache(setIndex, 108, write, 108, dataCache);
searchL1Cache(setIndex, 102, dataCache);
printL1Cache(setIndex, dataCache);
writeL1Cache(setIndex, 108, 11, true);
writeL1Cache(setIndex, 103, 10, true);
printL1Cache(setIndex, dataCache);
searchL1Cache(setIndex, 110, dataCache);
printL1Cache(setIndex, dataCache);
// L2 test.
initL2Cache();
setIndex = 3; wayIndex = 4;
printL2Cache(setIndex);
updateL2Cache(setIndex, 100, true, 100);
updateL2Cache(setIndex, 101, true, 101);
updateL2Cache(setIndex, 102, true, 102);
updateL2Cache(setIndex, 103, true, 103);
updateL2Cache(setIndex, 104, true, 104);
updateL2Cache(setIndex, 105, true, 105);
updateL2Cache(setIndex, 106, true, 106);
updateL2Cache(setIndex, 107, true, 107);
searchL2Cache(setIndex, 100);
searchL2Cache(setIndex, 101);
printL2Cache(setIndex);
updateL2Cache(setIndex, 108, false, 108);
searchL2Cache(setIndex, 106);
printL2Cache(setIndex);
writeL2Cache(setIndex, 108, 11);
writeL2Cache(setIndex, 103, 10);
printL2Cache(setIndex);
searchL2Cache(setIndex, 110);
printL2Cache(setIndex);
return 0;
}
*/
// -----------------------------------------------------------------
// L1-Cache
/*
* bool dataCache argument in the functions of L1 Cache corresponds to whether we are accessing the data or instruction cache in L1 as L1 is a split cache.
* This argument is not present in L2 cache functions as L2 is not split.
*/
/*
* Initialises all the sets and ways to invalid entries.
*/
void
initL1Cache()
{
for (int i = 0; i < NUM_SETS_IN_L1_CACHE; ++i) // Iterating through all the sets in the cache.
{
for (int j = 0; j < NUM_WAYS_IN_L1_CACHE; ++j) // Iterating through all the ways in the cache.
{
l1Cache[0].sets[i].ways[j].validInvalidBit = 0;
l1Cache[1].sets[i].ways[j].validInvalidBit = 0;
}
}
}
/*
* Prints the particular set of L1 cache in its current state.
*/
void
printL1Cache(int setIndex, bool dataCache)
{
fprintf(outputFile, "-------------------------\n");
// Finding if its data cache or instr cache.
if (dataCache)
fprintf(outputFile, "L1-Data Cache Info\n");
else
fprintf(outputFile, "L1-Instr Cache Info\n");
int index = (dataCache == true) ? 0 : 1;
fprintf(outputFile, "Set number=%d\n", setIndex);
for (int j = 0; j < NUM_WAYS_IN_L1_CACHE; ++j) // Iterates through all the ways in that set.
{
fprintf(outputFile, "\tWay number=%d, tag=%d, validInvalidBit=%d, readWriteBit=%d\n", j, l1Cache[index].sets[setIndex].ways[j].tag,l1Cache[index].sets[setIndex].ways[j].validInvalidBit, l1Cache[index].sets[setIndex].ways[j].readWriteBit);
}
if (dataCache)
fprintf(outputFile, "L1-Data Cache: LRU Square Matrix for set=%d\n", setIndex);
else
fprintf(outputFile, "L1-Instr Cache: LRU Square Matrix for set=%d\n", setIndex);
// Prints the LRU Square matrix for that set.
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Iterating through all the ways in the cache.
{
for (int j = 0; j < NUM_WAYS_IN_L1_CACHE; ++j)
{
fprintf(outputFile, "%d ", l1Cache[index].sets[setIndex].lruSquareMatrix[i][j]);
}
fprintf(outputFile, "\n");
}
return;
}
/*
* Returns the way number of the LRU way in the given set number.
* In the square matrix implementation the LRU is the one which has its entire row as 0s.
*/
int
getLruIndexL1Cache(int setIndex, bool dataCache)
{
// Finding if its data cache or instr cache.
int index = (dataCache == true) ? 0 : 1;
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Iterates through the rows of the square matrix.
{
bool flag = true;
for (int j = 0; j < NUM_WAYS_IN_L1_CACHE; ++j) // Iterates through the columns of the square matrix.
{
// If a way is LRU, then all the entries in its row will be 0.
if (l1Cache[index].sets[setIndex].lruSquareMatrix[i][j] == 1)
{
flag = false;
break;
}
}
if (flag)
{
return i;
}
}
return -1;
}
/*
* Updates the LRU count of the given setIndex and wayIndex in the data or instruction cache.
*/
void
updateLruL1Cache(int setIndex, int wayIndex, bool dataCache)
{
// Finding if its data cache or instr cache.
int index = (dataCache == true) ? 0 : 1;
// The row values are set to 1.
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Iterating through all the ways in the cache.
{
l1Cache[index].sets[setIndex].lruSquareMatrix[wayIndex][i] = 1;
}
// The column values are set to 0.
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Iterating through all the ways in the cache.
{
l1Cache[index].sets[setIndex].lruSquareMatrix[i][wayIndex] = 0;
}
}
/*
* Searches for data if its present, else updates and searches again.
*/
int
searchL1Cache(int setIndex, int tag, bool dataCache)
{
int index = (dataCache == true) ? 0 : 1;
// Finding if its data cache or instr cache.
if (dataCache)
fprintf(outputFile, "\nL1-Data Cache: Seaching for index=%d and tag=%d\n", setIndex, tag);
else
fprintf(outputFile, "\nL1-Instr Cache: Seaching for index=%d and tag=%d\n", setIndex, tag);
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Going through all the ways in the set.
{
// Checking if the block is valid or not. Also checking to see if the tags match.
if (l1Cache[index].sets[setIndex].ways[i].validInvalidBit && l1Cache[index].sets[setIndex].ways[i].tag == tag)
{
if (dataCache)
fprintf(outputFile, "L1-Data Cache: Found index=%d, tag=%d in way=%d\n", setIndex, tag, i);
else
fprintf(outputFile, "L1-Instr Cache: Found index=%d, tag=%d in way=%d\n", setIndex, tag, i);
// Update the LRU count.
updateLruL1Cache(setIndex, i, dataCache);
// Data is 0.
return 0;
}
}
if (dataCache)
fprintf(outputFile, "L1-Data Cache: Did not find index=%d and tag=%d\n", setIndex, tag);
else
fprintf(outputFile, "L1-Instr Cache: Did not find index=%d and tag=%d\n", setIndex, tag);
// If data is not found.
return -1;
}
/*
* Returns the first invalid entry in that set (in both data and instr cache).
* If no such entry is found, it returns -1.
*/
int
getFirstInvalidWayL1Cache(int setIndex, bool dataCache)
{
// Finding if its data cache or instr cache.
int index = (dataCache == true) ? 0 : 1;
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Going through all the blocks in the set.
{
if (l1Cache[index].sets[setIndex].ways[i].validInvalidBit == 0)
{
return i;
}
}
return -1;
}
/*
* Finds an empty cache way in that set if possible and stores the new data.
* If no empty way is found for that set, then we replace the LRU way.
* Follows placement and only then replacement.
* Returns the way number it is stored in.
*/
int
updateL1Cache(int setIndex, int tag, bool write, int data, bool dataCache)
{
// Finding if its data cache or instr cache.
int index = (dataCache == true) ? 0 : 1;
int way = getFirstInvalidWayL1Cache(setIndex, dataCache);
if (way == -1) // Did not find an invalid entry. Replacement required.
{
way = getLruIndexL1Cache(setIndex, dataCache);
// We do not need to check if the LRU block is empty because this cache follows write-through.
if (dataCache)
fprintf(outputFile, "L1-Data Cache: Replacement in set=%d, way=%d for tag=%d\n", setIndex, way, tag);
else
fprintf(outputFile, "L1-Instr Cache: Replacement in set=%d, way=%d for tag=%d\n", setIndex, way, tag);
}
else
{
if (dataCache)
fprintf(outputFile, "L1-Data Cache: Placement in set=%d, way=%d for tag=%d\n", setIndex, way, tag);
else
fprintf(outputFile, "L1-Instr Cache: Placement in set=%d, way=%d for tag=%d\n", setIndex, way, tag);
}
// Updating the data.
// l1Cache[index].sets[setIndex].ways[way].data = data;
// Initialising the way for this new entry.
l1Cache[index].sets[setIndex].ways[way].tag = tag;
l1Cache[index].sets[setIndex].ways[way].validInvalidBit = 1;
l1Cache[index].sets[setIndex].ways[way].readWriteBit = (write == false) ? 0 : 1;
return way;
}
/*
* Writes some data into the cache.
* Returns 1 on success.
* Returns negative numbers on failure.
*/
int
writeL1Cache(int setIndex, int tag, int data, bool dataCache)
{
// Finding if its data cache or instr cache.
if (dataCache)
fprintf(outputFile, "\nL1-Data Cache: Writing data onto index=%d, tag=%d\n", setIndex, tag);
else
{
fprintf(outputFile, "\nL1-Instr Cache: ERROR. Cannot Write into instruction cache.\n");
return ERROR_CANNOT_WRITE_IN_INSTR_CACHE;
}
int index = (dataCache == true) ? 0 : 1;
for (int i = 0; i < NUM_WAYS_IN_L1_CACHE; ++i) // Iterating through all the ways in the cache.
{
// Checking if the block is valid and if the tags match.
if (l1Cache[index].sets[setIndex].ways[i].validInvalidBit && l1Cache[index].sets[setIndex].ways[i].tag == tag)
{
// Checking if the permission to write into this block is there or not.
if (l1Cache[index].sets[setIndex].ways[i].readWriteBit == 0)
{
fprintf(outputFile, "L1-Data Cache: Write FAILED as there is no permission to write in index=%d, tag=%d.\n", setIndex, tag);
return ERROR_WRITE_FAILED_NO_PERMISSION;
}
// Writing data.
// l1Cache[index].sets[setIndex].ways[i].data = data;
fprintf(outputFile, "L1-Data Cache: Writing data onto index=%d, tag=%d in way=%d\n", setIndex, tag, i);
// Updating LRU.
updateLruL1Cache(setIndex, i, dataCache);
// Since L1 is write-through, we need to write to L2 also.
writeL2Cache(setIndex, tag, data);
return 1;
}
}
fprintf(outputFile, "L1-Data Cache: Write FAILED as none of the valid block's tag matched.\n");
return ERROR_WRITE_FAILED_NO_TAG_MATCH;
// Not calling updateL2Cache() because the L1 cache will only have this data if its there in L2. There is no way one can write without reading. So this last error case should never happen.
}
// -----------------------------------------------------------------
// L2-Cache
/*
* Initialises all the sets and ways to invalid entries.
*/
void
initL2Cache()
{
for (int i = 0; i < NUM_SETS_IN_L2_CACHE; ++i) // Iterating through all sets of the cache.
{
for (int j = 0; j < NUM_WAYS_IN_L2_CACHE; ++j) // Iterating through all the ways in that set of the cache.
{
l2Cache.sets[i].ways[j].validInvalidBit = 0;
}
}
}
/*
* Prints the particular set of L2 cache in its current state.
*/
void
printL2Cache(int setIndex)
{
fprintf(outputFile, "-------------------------\n");
fprintf(outputFile, "L2-Cache Info\n");
fprintf(outputFile, "Set number=%d\n", setIndex);
for (int j = 0; j < NUM_WAYS_IN_L2_CACHE; ++j) // Iterating through all the ways in that set of the cache.
{
fprintf(outputFile, "\tWay number=%d, tag=%d, validInvalidBit=%d, dirtyBit=%d, readWriteBit=%d, lruCount=%d\n", j, l2Cache.sets[setIndex].ways[j].tag, l2Cache.sets[setIndex].ways[j].validInvalidBit, l2Cache.sets[setIndex].ways[j].dirtyBit, l2Cache.sets[setIndex].ways[j].readWriteBit, l2Cache.sets[setIndex].ways[j].lruCount);
}
return;
}
/*
* Returns the way number of the LRU way in the given set number.
* In the counter implementation the LRU is the one which has its LRU count as 0.
*/
int
getLruIndexL2Cache(int setIndex)
{
for (int i = 0; i < NUM_WAYS_IN_L2_CACHE; ++i) // Iterating through all the ways in that set of the cache.
{
if (l2Cache.sets[setIndex].ways[i].lruCount == 0)
{
return i;
}
}
return -1;
}
/*
* Sets the MSB of that way and that set in L2 cache.
* Counter implementation is such that the ways which have a greater count than the current one will be decremented.
*/
void
updateLruL2Cache(int setIndex, int wayIndex)
{
int currentLruCount = l2Cache.sets[setIndex].ways[wayIndex].lruCount;
for (int i = 0; i < NUM_WAYS_IN_L2_CACHE; ++i) // Going through all the blocks in that set.
{
if (l2Cache.sets[setIndex].ways[i].lruCount > currentLruCount)
{
l2Cache.sets[setIndex].ways[i].lruCount--;
}
}
l2Cache.sets[setIndex].ways[wayIndex].lruCount = NUM_WAYS_IN_L2_CACHE - 1;
}
/*
* Returns the data if its present.
*/
int
searchL2Cache(int index, int tag)
{
fprintf(outputFile, "\nL2-Cache: Seaching for index=%d and tag=%d\n", index, tag);
for (int i = 0; i < NUM_WAYS_IN_L2_CACHE; ++i) // Iterating through all the ways in that set of the cache.
{
// Checking if the block is valid and if the tags match
if (l2Cache.sets[index].ways[i].validInvalidBit && l2Cache.sets[index].ways[i].tag == tag)
{
fprintf(outputFile, "L2-Cache: Found index=%d, tag=%d in way=%d\n", index, tag, i);
// Update the LRU count.
updateLruL2Cache(index, i);
// Data is 0.
return 0;
}
}
fprintf(outputFile, "L2-Cache: Did not find index=%d and tag=%d\n", index, tag);
fprintf(outputFile, "L2-Cache: Will update the cache and re-search the required data.\n");
// If data is not found.
return -1;
}
/*
* Writes some data into the cache.
* Returns 1 on success.
* Returns negative numbers on failure.
*/
int
writeL2Cache(int index, int tag, int data)
{
fprintf(outputFile, "\nL2-Cache: Writing data onto index=%d, tag=%d\n", index, tag);
for (int i = 0; i < NUM_WAYS_IN_L2_CACHE; ++i) // Iterating through all the ways in that set of the cache.
{
// Checking if the block is valid or not and if the tags match.
if (l2Cache.sets[index].ways[i].validInvalidBit && l2Cache.sets[index].ways[i].tag == tag)
{
// Checking if the block has write permission.
if (l2Cache.sets[index].ways[i].readWriteBit == 0)
{
fprintf(outputFile, "L2-Cache: Write FAILED as there is no permission to write in index=%d, tag=%d.\n", index, tag);
return ERROR_WRITE_FAILED_NO_PERMISSION;
}
// Writing data.
// l2Cache.sets[index].ways[i].data = data;
fprintf(outputFile, "L2-Cache: Writing data onto index=%d, tag=%d in way=%d\n", index, tag, i);
// Updating the dirty bit.
l2Cache.sets[index].ways[i].dirtyBit = 1;
// Updating LRU.
updateLruL2Cache(index, i);
return 1;
}
}
fprintf(outputFile, "L2-Cache: Write FAILED as none of the valid block's tag matched.\n");
return ERROR_WRITE_FAILED_NO_TAG_MATCH;
// Not calling updateL2Cache() because the L1 cache will only have this data if its there in L2. There is no way one can write without reading. So this last error case should never happen.
}
/*
* Returns the index of the first invalid way, else returns -1
*/
int
getFirstInvalidWayL2Cache(int setIndex)
{
for (int i = 0; i < NUM_WAYS_IN_L2_CACHE; ++i) // Iterating through all the ways in that set of the cache.
{
if (l2Cache.sets[setIndex].ways[i].validInvalidBit == 0) // Checking if the valid bit is set to invalid.
{
return i;
}
}
return -1;
}
/*
* Finds an empty cache way in that set if possible and stores the new data.
* If no empty way is found for that set, then we replace the LRU way.
* Follows placement and only then replacement.
* Returns the way number it is stored in.
*/
int
updateL2Cache(int index, int tag, bool write, int data)
{
// Find the first valid way in the set.
int way = getFirstInvalidWayL2Cache(index);
if (way == -1) // Did not find an invalid entry. Replacement required.
{
way = getLruIndexL2Cache(index);
if(l2Cache.sets[index].ways[way].dirtyBit == 1) // Check if dirty bit has been set.
{
// Writing to memory if it has been set.
int frameNumReplacedBlock = tag << 2 | index >> 4;
writeToMemory(frameNumReplacedBlock);
}
fprintf(outputFile, "L2-Cache: Replacement in set=%d, way=%d for tag=%d\n", index, way, tag);
}
else
{
fprintf(outputFile, "L2-Cache: Placement in set=%d, way=%d for tag=%d\n", index, way, tag);
}
// Updating the data.
// l2Cache.sets[index].ways[way].data = data;
// Initialising the way for this new entry.
l2Cache.sets[index].ways[way].tag = tag;
l2Cache.sets[index].ways[way].validInvalidBit = 1;
l2Cache.sets[index].ways[way].dirtyBit = 0;
l2Cache.sets[index].ways[way].readWriteBit = (write == false) ? 0 : 1;
return way;
}