forked from nykez/memory-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTraceStats.h
37 lines (34 loc) · 1.13 KB
/
TraceStats.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
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Project: GroupProject
// File Name: TraceStats.h
// Description: A trace that contains extra information!
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef TRACE_STATS_H
#define TRACE_STATS_H
#include <string>
#include "Trace.h"
///<summary>
/// For tracking statistics of a trace.
///</summary>
struct TraceStats
{
Trace trace; // original trace (<accessType>:<hexaddress>)
int VPN = 0; // HEX
int pageOffset = 0; // HEX
std::string TLBresult = " "; // HIT/MISS/NA
std::string PTresult = " "; // HIT/MISS/NA
int PFN = 0; // HEX
int DCtag = 0; // HEX
int DCidx = 0; // HEX
std::string DCresult = "MISS"; // HIT/MISS
/// <summary>
/// Parameterized constructor.
/// </summary>
/// <param name="tr">the initial trace.</param>
TraceStats(Trace tr) {
trace = tr;
}
};
#endif