kernel/mem: Add sub_addr helpers.

This commit is contained in:
Marcelina Kościelnicka 2021-05-26 02:49:50 +02:00
parent 57ca51be76
commit 83a218141c
3 changed files with 32 additions and 26 deletions

View File

@ -136,10 +136,8 @@ void Mem::emit() {
rd_transparent.bits.push_back(State(port.transparent)); rd_transparent.bits.push_back(State(port.transparent));
rd_clk.append(port.clk); rd_clk.append(port.clk);
rd_en.append(port.en); rd_en.append(port.en);
SigSpec addr = port.addr; SigSpec addr = port.sub_addr(sub);
addr.extend_u0(abits, false); addr.extend_u0(abits, false);
for (int i = 0; i < port.wide_log2; i++)
addr[i] = State(sub >> i & 1);
rd_addr.append(addr); rd_addr.append(addr);
log_assert(GetSize(addr) == abits); log_assert(GetSize(addr) == abits);
} }
@ -170,10 +168,8 @@ void Mem::emit() {
wr_clk_enable.bits.push_back(State(port.clk_enable)); wr_clk_enable.bits.push_back(State(port.clk_enable));
wr_clk_polarity.bits.push_back(State(port.clk_polarity)); wr_clk_polarity.bits.push_back(State(port.clk_polarity));
wr_clk.append(port.clk); wr_clk.append(port.clk);
SigSpec addr = port.addr; SigSpec addr = port.sub_addr(sub);
addr.extend_u0(abits, false); addr.extend_u0(abits, false);
for (int i = 0; i < port.wide_log2; i++)
addr[i] = State(sub >> i & 1);
wr_addr.append(addr); wr_addr.append(addr);
log_assert(GetSize(addr) == abits); log_assert(GetSize(addr) == abits);
} }
@ -615,11 +611,10 @@ Cell *Mem::extract_rdff(int idx, FfInitVals *initvals) {
for (int sub = 0; sub < (1 << max_wide_log2); sub += (1 << min_wide_log2)) { for (int sub = 0; sub < (1 << max_wide_log2); sub += (1 << min_wide_log2)) {
SigSpec raddr = port.addr; SigSpec raddr = port.addr;
SigSpec waddr = wport.addr; SigSpec waddr = wport.addr;
for (int j = min_wide_log2; j < max_wide_log2; j++) if (wide_write)
if (wide_write) waddr = wport.sub_addr(sub);
waddr[j] = State(sub >> j & 1); else
else raddr = port.sub_addr(sub);
raddr[j] = State(sub >> j & 1);
SigSpec addr_eq; SigSpec addr_eq;
if (raddr != waddr) if (raddr != waddr)
addr_eq = module->Eq(stringf("$%s$rdtransen[%d][%d][%d]$d", memid.c_str(), idx, i, sub), raddr, waddr); addr_eq = module->Eq(stringf("$%s$rdtransen[%d][%d][%d]$d", memid.c_str(), idx, i, sub), raddr, waddr);
@ -722,8 +717,7 @@ void Mem::narrow() {
port.init_value = port.init_value.extract(it.second * width, width); port.init_value = port.init_value.extract(it.second * width, width);
port.arst_value = port.arst_value.extract(it.second * width, width); port.arst_value = port.arst_value.extract(it.second * width, width);
port.srst_value = port.srst_value.extract(it.second * width, width); port.srst_value = port.srst_value.extract(it.second * width, width);
for (int i = 0; i < port.wide_log2; i++) port.addr = port.sub_addr(it.second);
port.addr[i] = State(it.second >> i & 1);
port.wide_log2 = 0; port.wide_log2 = 0;
} }
new_rd_ports.push_back(port); new_rd_ports.push_back(port);
@ -736,8 +730,7 @@ void Mem::narrow() {
if (port.wide_log2) { if (port.wide_log2) {
port.data = port.data.extract(it.second * width, width); port.data = port.data.extract(it.second * width, width);
port.en = port.en.extract(it.second * width, width); port.en = port.en.extract(it.second * width, width);
for (int i = 0; i < port.wide_log2; i++) port.addr = port.sub_addr(it.second);
port.addr[i] = State(it.second >> i & 1);
port.wide_log2 = 0; port.wide_log2 = 0;
} }
port.priority_mask.clear(); port.priority_mask.clear();
@ -761,11 +754,10 @@ void Mem::emulate_priority(int idx1, int idx2)
for (int sub = 0; sub < (1 << max_wide_log2); sub += (1 << min_wide_log2)) { for (int sub = 0; sub < (1 << max_wide_log2); sub += (1 << min_wide_log2)) {
SigSpec addr1 = port1.addr; SigSpec addr1 = port1.addr;
SigSpec addr2 = port2.addr; SigSpec addr2 = port2.addr;
for (int j = min_wide_log2; j < max_wide_log2; j++) if (wide1)
if (wide1) addr1 = port1.sub_addr(sub);
addr1[j] = State(sub >> j & 1); else
else addr2 = port2.sub_addr(sub);
addr2[j] = State(sub >> j & 1);
SigSpec addr_eq = module->Eq(NEW_ID, addr1, addr2); SigSpec addr_eq = module->Eq(NEW_ID, addr1, addr2);
int ewidth = width << min_wide_log2; int ewidth = width << min_wide_log2;
int sub1 = wide1 ? sub : 0; int sub1 = wide1 ? sub : 0;

View File

@ -34,7 +34,16 @@ struct MemRd {
Const arst_value, srst_value, init_value; Const arst_value, srst_value, init_value;
bool transparent; bool transparent;
SigSpec clk, en, arst, srst, addr, data; SigSpec clk, en, arst, srst, addr, data;
MemRd() : removed(false), cell(nullptr) {} MemRd() : removed(false), cell(nullptr) {}
// Returns the address of given subword index accessed by this port.
SigSpec sub_addr(int sub) {
SigSpec res = addr;
for (int i = 0; i < wide_log2; i++)
res[i] = State(sub >> i & 1);
return res;
}
}; };
struct MemWr { struct MemWr {
@ -45,7 +54,16 @@ struct MemWr {
bool clk_enable, clk_polarity; bool clk_enable, clk_polarity;
std::vector<bool> priority_mask; std::vector<bool> priority_mask;
SigSpec clk, en, addr, data; SigSpec clk, en, addr, data;
MemWr() : removed(false), cell(nullptr) {} MemWr() : removed(false), cell(nullptr) {}
// Returns the address of given subword index accessed by this port.
SigSpec sub_addr(int sub) {
SigSpec res = addr;
for (int i = 0; i < wide_log2; i++)
res[i] = State(sub >> i & 1);
return res;
}
}; };
struct MemInit { struct MemInit {

View File

@ -145,9 +145,7 @@ struct OptMemFeedbackWorker
continue; continue;
for (int sub = 0; sub < (1 << port.wide_log2); sub++) { for (int sub = 0; sub < (1 << port.wide_log2); sub++) {
SigSpec addr = sigmap_xmux(port.addr); SigSpec addr = sigmap_xmux(port.sub_addr(sub));
for (int i = 0; i < port.wide_log2; i++)
addr[i] = State(sub >> i & 1);
async_rd_bits[addr].resize(mem.width); async_rd_bits[addr].resize(mem.width);
for (int i = 0; i < mem.width; i++) for (int i = 0; i < mem.width; i++)
async_rd_bits[addr][i].insert(sigmap(port.data[i + sub * mem.width])); async_rd_bits[addr][i].insert(sigmap(port.data[i + sub * mem.width]));
@ -168,9 +166,7 @@ struct OptMemFeedbackWorker
for (int sub = 0; sub < (1 << port.wide_log2); sub++) for (int sub = 0; sub < (1 << port.wide_log2); sub++)
{ {
SigSpec addr = sigmap_xmux(port.addr); SigSpec addr = sigmap_xmux(port.sub_addr(sub));
for (int k = 0; k < port.wide_log2; k++)
addr[k] = State(sub >> k & 1);
if (!async_rd_bits.count(addr)) if (!async_rd_bits.count(addr))
continue; continue;