-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMemoryController.cpp
312 lines (266 loc) · 10.1 KB
/
MemoryController.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
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
#include "MemoryController.h"
#include "BitUtilities.h"
#include "TableEntry.h"
/// <summary>
/// Setup the passed configuration, filling in missing data.
/// </summary>
/// <param name="config">pointer to memory option</param>
void MemoryController::SetupConfigBits(MemoryOptions* config) {
// Internal use
bitCountOffset = (int)log2((double)config->pageSize);
bitCountPFN = (int)log2((double)config->frameCount);
bitCountVPN = (int)log2((double)config->pageCount);
// Configure data cache
config->dcTotalSets = config->dcEntries / config->dcSetSize; // calculate total sets
config->cacheIndexBits = log2(config->dcTotalSets); // calculate index bits
config->cacheOffsetBits = log2(config->dcLineSize); // calculate offset bits
config->cacheTagBits = log2(config->pageSize) + (config->frameCount) - config->cacheIndexBits - config->cacheOffsetBits;
config->cacheEntriesPerSet = config->dcEntries / config->dcTotalSets; // entries per set
// For return
config->vpnBits = bitCountVPN;
config->pfnBits = bitCountPFN;
config->offBits = bitCountOffset;
}
/// <summary>
/// Default constructor
/// </summary>
MemoryController::MemoryController() {
SetupConfigBits(&MemConfig);
}
/// <summary>
/// Parameterized constructor. Give initial config.
/// </summary>
/// <param name="config">initial memoryoptions</param>
MemoryController::MemoryController(MemoryOptions config) {
SetupConfigBits(&config);
// Configure TLB
DTLB = new TLB(config.tlbEntries);
// create data cache
DC = new Cache(config.dcTotalSets, config.cacheEntriesPerSet);
DC->SetPolicy(config.dcPolicy);
// create page table
PT = new PageTable(config.pageCount, config.frameCount, config.pageSize);
// Configure controller
useVirtualMemory = config.useVirt;
if(useVirtualMemory == false) useTLB == false;
else useTLB = config.useTLB;
MemConfig = config;
}
/// <summary>
/// Deconstructor
/// </summary>
MemoryController::~MemoryController() {
}
/// <summary>
/// Get configuration options.
/// </summary>
/// <returns>config options.</returns>
MemoryOptions MemoryController::GetConfigOptions() {
return MemConfig;
}
/// <summary>
/// Run memory simulation
/// </summary>
/// <param name="trace">a trace.</param>
/// <returns>effects on the trace inputted.</returns>
TraceStats MemoryController::RunMemory(Trace trace) {
TraceStats traceW(trace); // track trace events
if(useVirtualMemory) // if we use virtual addresses
TranslateVirtualMemory(&traceW); // transform into physical address
else { // if we don't use virtual address, get PFN and offset
traceW.PFN = (((1 << bitCountPFN) - 1) & (traceW.trace.hexAddress >> bitCountOffset));
traceW.pageOffset = (((1 << bitCountOffset) - 1) & (traceW.trace.hexAddress));
}
// run data cache things
// get physical address
int physicalAddress = CalculatePhysicalAddress(traceW.PFN, traceW.pageOffset);
// get cache index
int index = (physicalAddress & BitUtilities::CreateBitMasking(MemConfig.cacheOffsetBits, MemConfig.cacheOffsetBits + MemConfig.cacheIndexBits -1)) >> MemConfig.cacheOffsetBits;
// get cache tag
int otherTag = (physicalAddress & BitUtilities::CreateBitMasking(MemConfig.cacheOffsetBits + MemConfig.cacheIndexBits, 31)) >> (MemConfig.cacheOffsetBits + MemConfig.cacheIndexBits);
traceW.DCtag = otherTag;
traceW.DCidx = index;
int result = DC->GetEntry(index, otherTag);
// hit
if (result)
{
traceW.DCresult = "HIT"; // set trace output to HIT
// add hit
DC->hits++;
// write through, no write allocate
if (MemConfig.dcPolicy == 0)
{
if (trace.accessType == AccessType::Write)
{
// touched memory, update counter
refCountMainMemory++;
}
}
// write-back, write allocate
else
{
if (trace.accessType == AccessType::Write)
{
// update cache (set dirty bit)
DC->UpdateDirtyEntry(index, otherTag);
}
}
}
else
{
// set trace output to miss
traceW.DCresult = "MISS";
// add DC miss
DC->misses++;
// write through, no write allocate
if (MemConfig.dcPolicy == 0)
{
if (trace.accessType == AccessType::Write)
{
// hit memory + update counter
++refCountMainMemory;
}
else
{
// bring in from "memory", update cache
++refCountMainMemory;
// index, tag, dirtybit, PFN
DC->AddEntry(index, otherTag, 0, traceW.PFN);
}
}
// write-back, write allocate
else
{
if (trace.accessType == AccessType::Write)
{
// Is set dirty?
bool IsDirtyBit = DC->LRU_IsEntryDirtyBit(index);
// UPDATE cache with new entry (it's dirty because this is a write)
DC->AddEntry(index, otherTag, 1, traceW.PFN);
++refCountMainMemory; // "touch/bringin from memory"
// if replaced cache was dirty then we updated memory
if (IsDirtyBit)
{
// so update memory counter
++refCountMainMemory;
}
}
else
{
// bring in from "memory", update cache
++refCountMainMemory;
// index, tag, dirtybit, PFN
DC->AddEntry(index, otherTag, 0, traceW.PFN); // update the cache
}
}
}
return traceW;
}
/// <summary>
/// Get PFN, given a virtual address.
/// </summary>
/// <param name="traceW">pointer to a wrapped trace</param>
void MemoryController::TranslateVirtualMemory(TraceStats* traceW) {
AttachVPNandOffset(traceW); //Add VPN and pageOffset to traceW
int PFN = -1;
if(useTLB) { // if we use DTLB
PFN = CheckDataTLB(traceW); // check DTLB first
} else { // if we don't use DTLB
PFN = CheckPageTable(traceW); // only check page table
}
traceW->PFN = PFN; // assign PFN
}
/// <summary>
/// Generate and attach VPN and offset to a trace
/// </summary>
/// <param name="traceW">pointer to a wrapped trace.</param>
void MemoryController::AttachVPNandOffset(TraceStats* traceW) {
traceW->VPN = BitUtilities::ExtractBits(traceW->trace.hexAddress, bitCountVPN, bitCountOffset);
traceW->pageOffset = BitUtilities::ExtractBits(traceW->trace.hexAddress, bitCountOffset, 0);
}
/// <summary>
/// Check DTLB for PFN of a given VPN.
/// </summary>
/// <param name="traceW">pointer to a wrapped trace.</param>
/// <returns>PFN</returns>
int MemoryController::CheckDataTLB(TraceStats* traceW) {
std::pair<bool, int> res; // first: MISS/HIT(F/T). second: PFN
res = DTLB->LookUp(traceW->VPN); // check TLB
if(res.first == false) { // if TLB MISS
traceW->TLBresult = "MISS"; // | log MISS
res.second = CheckPageTable(traceW);// | return PFN from page table
int dirtyBit = PT->GetEntryDirty(traceW->VPN);
int validBit = PT->GetEntryValidity(traceW->VPN);
int accessOrd= PT->GetEntryAccessOrdinal(traceW->VPN);
TableEntry te(res.second, dirtyBit, validBit, accessOrd);
DTLB->InsertEntry(traceW->VPN, te); // | update TLB
} else { // if TLB HIT
traceW->TLBresult = "HIT"; // | log HIT
}
return res.second; // return PFN from TLB
}
/// <summary>
/// Check page table for PFN of a given VPN
/// </summary>
/// <param name="traceW">pointer to a wrapped trace.</param>
/// <returns>PFN</returns>
int MemoryController::CheckPageTable(TraceStats* traceW) {
refCountPageTable++; // we touch page table...
std::pair<bool, int> res; // first: MISS/HIT(F/T). second: PFN
res = PT->LookUp(traceW->VPN); // check page table
if(res.first == false) { // if PT MISS
refCountDisk++; // | go to disk
traceW->PTresult = "MISS"; // | log MISS
return HandlePageFault(traceW->VPN);// | return PFN from page fault handler
} else { // if PT HIT
traceW->PTresult = "HIT"; // | log HIT
return res.second; // | return PFN from PT
}
}
/// <summary>
/// Handle a page fault.
/// </summary>
/// <param name="">VPN of page that faulted.</param>
/// <returns>PFN</returns>
int MemoryController::HandlePageFault(int VPN) {
return PageFaultHandler::HandleFault(PT, DTLB, DC, VPN);
}
/// <summary>
/// Get stats for page table.
/// </summary>
/// <returns>stats for page table.</returns>
HardwareStats MemoryController::GetPTStats() {
return PT->GetStatistics();
}
/// <summary>
/// Get stats for Data TLB.
/// </summary>
/// <returns>stats for data tlb.</returns>
HardwareStats MemoryController::GetDTLBStats() {
return DTLB->GetStatistics();
}
/// <summary>
/// Get stats for Data Cache.
/// </summary>
/// <returns>Stats for data cache</returns>
HardwareStats MemoryController::GetDCStats()
{
return DC->GetStatistics();
}
/// <summary>
/// Combine PFN and offset to get physical address.
/// </summary>
/// <param name="PFN">bits of PFN</param>
/// <param name="offset">bits of offset</param>
/// <returns>the physical address</returns>
int MemoryController::CalculatePhysicalAddress(int PFN, int offset) {
return (PFN << bitCountOffset) | offset;
}
/// <summary>
/// Get reference counts to various parts of machine.
/// </summary>
/// <returns>struct containing reference counts</returns>
ReferenceStats MemoryController::GetReferenceCounts() {
ReferenceStats refStats(refCountPageTable, refCountMainMemory + PageFaultHandler::memoryReferences, refCountDisk);
return refStats;
}