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
|
#ifndef STORAGE_H
#define STORAGE_H
#include "definitions.h"
#include "response.h"
#include <algorithm>
#include <array>
#include <deque>
#include <vector>
enum Accessor {
MEM,
FETCH,
L1CACHE,
SIDE,
};
/**
* Wrapper class for std::deque.
*
* Implements a deque that does not push duplicate objects.
*/
template <typename T> class Deque : public std::deque<T>
{
public:
using std::deque<T>::deque;
void push_back(const T &value)
{
if (std::find(this->begin(), this->end(), value) == this->end())
std::deque<T>::push_back(value);
}
};
class Storage
{
public:
/**
* Write `data` into `address`.
* @param the source making the request.
* @param the data (hexadecimal) to write.
* @param the address to write to.
* @return a status code reflecting the state of the request.
*/
virtual Response write(Accessor accessor, signed int data, int address) = 0;
/**
* Get the data at `address`.
* @param the source making the request.
* @param the address being accessed.
* @return a status code reflecting the state of the request, and the
* data being returned.
*/
virtual Response read(Accessor accessor, int address) = 0;
/**
* Sidedoor view of `lines` of memory starting at `base`.
* @param The base line to start getting memory from.
* @param The amount of lines to fetch.
* @return A matrix of data values, where each row is a line and each column
* is a word.
*/
std::vector<std::array<signed int, LINE_SIZE>> view(int base, int lines);
/**
* Advances to the next job if the current job is completed.
*/
void resolve();
protected:
/**
* Helper for `write`.
*/
void do_write(signed int, int);
/**
* The data currently stored in this level of storage.
*/
std::vector<std::array<signed int, LINE_SIZE>> *data;
/**
* A pointer to the next lowest level of storage.
* Used in case of cache misses.
*/
Storage *lower;
/**
* The number of clock cycles this level of storage takes to complete
* requests.
*/
int delay;
/**
* The accessors currently being serviced, in first come first serve order.
*/
Deque<enum Accessor> deque;
/**
* The number of cycles until the current request is completed.
*/
int wait_time;
};
#endif /* STORAGE_H_INCLUDED */
|