-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmp.cpp
91 lines (69 loc) · 2.11 KB
/
tmp.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
#include <iostream>
#include <stdio.h>
#include <math.h>
#include <list>
#include <vector>
#include <cstring>
#include <iomanip>
using namespace std;
struct cache_content
{
//bool v=false;
unsigned int tag;
// unsigned int data[16];
};
const int K = 1024;
double log2(double n)
{
// log(n) / log(2) is log2.
return log(n) / log(double(2));
}
void simulate(int cache_size, int block_size, const char * file_name)
{
//set number is i
unsigned int tag, index, x;
int i=1;
int offset_bit = (int)log2(block_size);
int index_bit = (int)log2(cache_size / (block_size*i));
int line = cache_size >> (offset_bit);
line=line>>(int)log2(i);
list <cache_content> cache[line];
int size_of_set= i;
//cout << "cache line: " << line << endl;
cout << "cache size: " << cache_size/K << "K " << i <<"-way" << " Miss Rate:";
double count=0,miss=0;
while(cin>>x){
cout<<x<<endl;
index = (x >> offset_bit) & (line - 1);
tag = x >> (index_bit + offset_bit);
bool flag=false;
for(auto it=cache[index].begin();it!=cache[index].end();it++){
if(it->tag == tag){
cache[index].insert(cache[index].begin(),*it);
it=cache[index].erase(it);
flag=true;
break;
}
}
if(!flag){
miss++;
cache_content temp;
temp.tag=tag;
cache[index].push_front(temp);
if(cache[index].size()>size_of_set)cache[index].pop_back();
}
++count;
}
cout<<setprecision(10)<<miss*100/count<<"%"<<endl;
// cout << "offset_bit: "<<offset_bit<<" index_bit: "<<index_bit<<endl;
//cout<<miss<<" "<<count<<endl;
}
int main()
{
// Let us simulate 4KB cache with 16B blocks
cout<<"radix"<<endl;
simulate(4 * K, 64,"RADIX.txt");
cout<<endl;
cout<<endl;
cout<<"lu"<<endl;
}