No need to fetch context
This commit is contained in:
parent
fc591421f9
commit
3aecb3b08c
@ -2972,7 +2972,6 @@ bool Arch::pack()
|
|||||||
|
|
||||||
void Arch::assignArchInfo()
|
void Arch::assignArchInfo()
|
||||||
{
|
{
|
||||||
Context *ctx = getCtx();
|
|
||||||
for (auto cell : sorted(cells)) {
|
for (auto cell : sorted(cells)) {
|
||||||
CellInfo *ci = cell.second;
|
CellInfo *ci = cell.second;
|
||||||
if (ci->type == id_TRELLIS_SLICE) {
|
if (ci->type == id_TRELLIS_SLICE) {
|
||||||
@ -3009,11 +3008,11 @@ void Arch::assignArchInfo()
|
|||||||
// Output register mode (REGMODE_{A,B}). Valid options are 'NOREG' and 'OUTREG'.
|
// Output register mode (REGMODE_{A,B}). Valid options are 'NOREG' and 'OUTREG'.
|
||||||
std::string regmode_a = str_or_default(ci->params, id("REGMODE_A"), "NOREG");
|
std::string regmode_a = str_or_default(ci->params, id("REGMODE_A"), "NOREG");
|
||||||
if (regmode_a != "NOREG" && regmode_a != "OUTREG")
|
if (regmode_a != "NOREG" && regmode_a != "OUTREG")
|
||||||
log_error("DP16KD %s has invalid REGMODE_A configuration '%s'\n", ci->name.c_str(ctx),
|
log_error("DP16KD %s has invalid REGMODE_A configuration '%s'\n", ci->name.c_str(this),
|
||||||
regmode_a.c_str());
|
regmode_a.c_str());
|
||||||
std::string regmode_b = str_or_default(ci->params, id("REGMODE_B"), "NOREG");
|
std::string regmode_b = str_or_default(ci->params, id("REGMODE_B"), "NOREG");
|
||||||
if (regmode_b != "NOREG" && regmode_b != "OUTREG")
|
if (regmode_b != "NOREG" && regmode_b != "OUTREG")
|
||||||
log_error("DP16KD %s has invalid REGMODE_B configuration '%s'\n", ci->name.c_str(ctx),
|
log_error("DP16KD %s has invalid REGMODE_B configuration '%s'\n", ci->name.c_str(this),
|
||||||
regmode_b.c_str());
|
regmode_b.c_str());
|
||||||
ci->ramInfo.is_output_a_registered = regmode_a == "OUTREG";
|
ci->ramInfo.is_output_a_registered = regmode_a == "OUTREG";
|
||||||
ci->ramInfo.is_output_b_registered = regmode_b == "OUTREG";
|
ci->ramInfo.is_output_b_registered = regmode_b == "OUTREG";
|
||||||
|
Loading…
Reference in New Issue
Block a user