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
|
#include "dram.h"
#include "definitions.h"
#include "response.h"
#include <algorithm>
#include <bits/stdc++.h>
#include <bitset>
#include <iostream>
#include <iterator>
Dram::Dram(int lines, int delay)
{
this->data = new std::vector<std::array<signed int, LINE_SIZE>>;
this->data->resize(lines);
this->delay = delay;
this->is_waiting = false;
this->lower = nullptr;
this->requester = IDLE;
this->wait_time = this->delay;
}
Dram::~Dram() { delete this->data; }
void Dram::do_write(signed int data, int address)
{
int line = address / LINE_SIZE;
int word = address % LINE_SIZE;
this->data->at(line).at(word) = data;
}
void Dram::do_write_line(std::array<signed int, LINE_SIZE> data_line, int address){
int line = address / LINE_SIZE;
this->data->at(line) = data_line;
}
void Dram::do_read(std::array<signed int, LINE_SIZE> &data_line, int address)
{
int line = address / LINE_SIZE;
data_line = this->data->at(line);
}
void Dram::do_read_word(signed int &data, int address)
{
int line = address / LINE_SIZE;
int word = address % LINE_SIZE;
data = this->data->at(line).at(word);
}
Response Dram::write_line(Accessor accessor, std::array<signed int, LINE_SIZE> data_line, int address)
{
Response r = WAIT;
if (accessor == SIDE) {
this->do_write_line(data_line, address);
r = OK;
} else {
/* Do this first--then process the first cycle immediately. */
if (this->requester == IDLE)
this->requester = accessor;
if (this->requester == accessor) {
if (this->wait_time == 0) {
this->do_write_line(data_line, address);
r = OK;
}
}
}
return r;
}
Response Dram::write(Accessor accessor, signed int data, int address)
{
Response r = WAIT;
if (accessor == SIDE) {
this->do_write(data, address);
r = OK;
} else {
/* Do this first--then process the first cycle immediately. */
if (this->requester == IDLE)
this->requester = accessor;
if (this->requester == accessor) {
if (this->wait_time == 0) {
this->do_write(data, address);
r = OK;
}
}
}
return r;
}
Response Dram::read(Accessor accessor, int address, std::array<signed int, LINE_SIZE>& data_line) {
Response r = WAIT;
if (this->requester == IDLE)
this->requester = accessor;
if (this->requester == accessor) {
if (this->wait_time == 0) {
this->do_read(data_line, address);
r = OK;
}
}
return r;
}
Response Dram::read_word(Accessor accessor, int address, signed int& data) {
Response r = WAIT;
if (this->requester == IDLE)
this->requester = accessor;
if (this->requester == accessor) {
if (this->wait_time == 0) {
this->do_read_word(data, address);
r = OK;
}
}
return r;
}
std::ostream &operator<<(std::ostream &os, const Dram &d)
{
const auto default_flags = std::cout.flags();
const auto default_fill = std::cout.fill();
std::vector<std::array<signed int, LINE_SIZE>> data = d.view(0, MEM_SIZE);
os << " " << std::setfill(' ') << std::setw(MEM_SPEC + 2) << "INDEX"
<< " | " << std::setfill(' ') << std::setw((8 + 3) * 4 - 1) << "DATA"
<< std::endl;
for (int i = 0; i < MEM_SIZE; ++i) {
os << " 0b" << std::setw(MEM_SPEC) << std::bitset<MEM_SPEC>(i) << " | ";
for (int j = 0; j < LINE_SIZE; ++j) {
os << "0x" << std::setfill('0') << std::setw(8) << std::hex
<< data.at(i).at(j) << ' ';
}
os << std::endl;
}
std::cout.flags(default_flags);
std::cout.fill(default_fill);
return os;
}
|