Fixed -v with [I]nstructions
This commit is contained in:
30
src/csim.c
30
src/csim.c
@@ -26,8 +26,8 @@ int hit = 0, miss = 0, eviction = 0;
|
||||
|
||||
struct cache_line {
|
||||
unsigned char v;
|
||||
unsigned int tag;
|
||||
unsigned int time;
|
||||
unsigned long tag;
|
||||
unsigned long time;
|
||||
};
|
||||
|
||||
void print_help() {
|
||||
@@ -43,7 +43,7 @@ void print_help() {
|
||||
void init() {
|
||||
cache = (struct cache_line **) malloc(S*sizeof(struct cache_line *));
|
||||
for (int i = 0; i < S; i++) {
|
||||
struct cache_line* cache_set = (struct cache_line *) malloc(E*sizeof(struct cache_line));
|
||||
struct cache_line* cache_set = (struct cache_line *) malloc(E*sizeof(struct cache_line));
|
||||
cache[i] = cache_set;
|
||||
for (int j = 0; j < E; j++) {
|
||||
cache_set[j].v = 0;
|
||||
@@ -64,10 +64,9 @@ void clean() {
|
||||
void accessMem (int addr) {
|
||||
unsigned int set = ((addr >> b) & ((1LL << s) - 1));
|
||||
unsigned int tag = addr >> (b + s);
|
||||
printf("addr %x, set %x, tag %x ", addr, set, tag);
|
||||
struct cache_line *cache_set = cache[set];
|
||||
long evic_time = 0xffffffffffffffff;
|
||||
int evic_line = 0;
|
||||
unsigned long evic_time = 0;
|
||||
unsigned int evic_line = 0;
|
||||
for (int i = 0; i < E; i++) {
|
||||
if (cache_set[i].tag == tag && cache_set[i].v != 0){
|
||||
if (v) { printf("hit "); }
|
||||
@@ -89,41 +88,42 @@ void accessMem (int addr) {
|
||||
}
|
||||
|
||||
if (cache_set[evic_line].v == 1) {
|
||||
eviction++;
|
||||
if (v) { printf("eviction "); }
|
||||
eviction++;
|
||||
}
|
||||
|
||||
cache_set[evic_line].v = 1;
|
||||
cache_set[evic_line].tag = tag;
|
||||
cache_set[evic_line].time = time;
|
||||
time++;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
void trace() {
|
||||
char op;
|
||||
unsigned address;
|
||||
char op[2];
|
||||
unsigned long address;
|
||||
int size;
|
||||
|
||||
while (fscanf(tracefile, " %c %x,%d", &op, &address, &size) > 0 ) {
|
||||
switch (op) {
|
||||
while (fscanf(tracefile, "%s %lx,%d", op, &address, &size) > 0 ) {
|
||||
switch (op[0]) {
|
||||
case 'M':
|
||||
if (v) { printf("%c %x,%d ", op, address, size); }
|
||||
if (v) { printf("%c %lx,%d ", op[0], address, size); }
|
||||
accessMem(address);
|
||||
accessMem(address);
|
||||
printf("\n");
|
||||
break;
|
||||
case 'L':
|
||||
if (v) { printf("%c %x,%d ", op, address, size); }
|
||||
if (v) { printf("%c %lx,%d ", op[0], address, size); }
|
||||
accessMem(address);
|
||||
printf("\n");
|
||||
break;
|
||||
case 'S':
|
||||
if (v) { printf("%c %x,%d ", op, address, size); }
|
||||
if (v) { printf("%c %lx,%d ", op[0], address, size); }
|
||||
accessMem(address);
|
||||
printf("\n");
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
219
src/ref_trans
Normal file
219
src/ref_trans
Normal file
@@ -0,0 +1,219 @@
|
||||
S 600aa0,1 miss
|
||||
S 7ff000398,8 miss
|
||||
S 7ff000390,8 hit
|
||||
S 7ff000378,8 miss
|
||||
S 7ff000370,8 hit
|
||||
S 7ff000384,4 hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a20,4 miss
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a60,4 miss
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a24,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a70,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a28,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a80,4 miss
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a2c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a90,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a30,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a64,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a34,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a74,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a38,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a84,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a3c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a94,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a40,4 miss
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a68,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a44,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a78,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a48,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a88,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a4c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a98,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a50,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a6c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a54,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a7c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a58,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a8c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a5c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a9c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000390,8 hit
|
||||
L 7ff000398,8 hit
|
||||
L 600aa0,1 hit
|
||||
hits:231 misses:7 evictions:0
|
||||
219
src/ref_trans.txt
Normal file
219
src/ref_trans.txt
Normal file
@@ -0,0 +1,219 @@
|
||||
S 600aa0,1 miss
|
||||
S 7ff000398,8 miss
|
||||
S 7ff000390,8 hit
|
||||
S 7ff000378,8 miss
|
||||
S 7ff000370,8 hit
|
||||
S 7ff000384,4 hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a20,4 miss
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a60,4 miss
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a24,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a70,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a28,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a80,4 miss
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a2c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a90,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a30,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a64,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a34,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a74,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a38,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a84,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a3c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a94,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a40,4 miss
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a68,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a44,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a78,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a48,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a88,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a4c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a98,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
S 7ff000388,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a50,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a6c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a54,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a7c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a58,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a8c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000378,8 hit
|
||||
L 7ff000388,4 hit
|
||||
L 600a5c,4 hit
|
||||
S 7ff00038c,4 hit
|
||||
L 7ff000388,4 hit
|
||||
L 7ff000370,8 hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff00038c,4 hit
|
||||
S 600a9c,4 hit
|
||||
M 7ff000388,4 hit hit
|
||||
L 7ff000388,4 hit
|
||||
M 7ff000384,4 hit hit
|
||||
L 7ff000384,4 hit
|
||||
L 7ff000390,8 hit
|
||||
L 7ff000398,8 hit
|
||||
L 600aa0,1 hit
|
||||
hits:231 misses:7 evictions:0
|
||||
219
src/trans.txt
Normal file
219
src/trans.txt
Normal file
@@ -0,0 +1,219 @@
|
||||
S 600aa0,1 miss
|
||||
I 4005b6,5 I 4005bb,5 I 4005c0,5 S 7ff000398,8 miss
|
||||
I 40051e,1 S 7ff000390,8 hit
|
||||
I 40051f,3 I 400522,4 S 7ff000378,8 miss
|
||||
I 400526,4 S 7ff000370,8 hit
|
||||
I 40052a,7 S 7ff000384,4 hit
|
||||
I 400531,2 I 400581,4 L 7ff000384,4 hit
|
||||
I 400585,2 I 400533,7 S 7ff000388,4 hit
|
||||
I 40053a,2 I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a20,4 miss
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a60,4 miss
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a24,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a70,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a28,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a80,4 miss
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a2c,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a90,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40057d,4 M 7ff000384,4 hit
|
||||
I 400581,4 L 7ff000384,4 hit
|
||||
I 400585,2 I 400533,7 S 7ff000388,4 hit
|
||||
I 40053a,2 I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a30,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a64,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a34,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a74,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a38,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a84,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a3c,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a94,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40057d,4 M 7ff000384,4 hit
|
||||
I 400581,4 L 7ff000384,4 hit
|
||||
I 400585,2 I 400533,7 S 7ff000388,4 hit
|
||||
I 40053a,2 I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a40,4 miss
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a68,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a44,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a78,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a48,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a88,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a4c,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a98,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40057d,4 M 7ff000384,4 hit
|
||||
I 400581,4 L 7ff000384,4 hit
|
||||
I 400585,2 I 400533,7 S 7ff000388,4 hit
|
||||
I 40053a,2 I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a50,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a6c,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a54,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a7c,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a58,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a8c,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40053c,3 L 7ff000384,4 hit
|
||||
I 40053f,2 I 400541,4 I 400545,3 I 400548,4 L 7ff000378,8 hit
|
||||
I 40054c,3 L 7ff000388,4 hit
|
||||
I 40054f,2 I 400551,3 L 600a5c,4 hit
|
||||
I 400554,3 S 7ff00038c,4 hit
|
||||
I 400557,3 L 7ff000388,4 hit
|
||||
I 40055a,2 I 40055c,4 I 400560,3 I 400563,4 L 7ff000370,8 hit
|
||||
I 400567,3 L 7ff000384,4 hit
|
||||
I 40056a,3 I 40056d,3 L 7ff00038c,4 hit
|
||||
I 400570,3 S 600a9c,4 hit
|
||||
I 400573,4 M 7ff000388,4 hit
|
||||
I 400577,4 L 7ff000388,4 hit
|
||||
I 40057b,2 I 40057d,4 M 7ff000384,4 hit
|
||||
I 400581,4 L 7ff000384,4 hit
|
||||
I 400585,2 I 400587,1 L 7ff000390,8 hit
|
||||
I 400588,1 L 7ff000398,8 hit
|
||||
I 4005c5,7 L 600aa0,1 hit
|
||||
hits:211 misses:7 evictions:0
|
||||
Reference in New Issue
Block a user