aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.cc4
-rw-r--r--ecp5/arch.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index 18fae1e2..51ba9311 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -105,8 +105,8 @@ Arch::Arch(ArchArgs args) : args(args)
bel_to_cell.resize(chip_info->height * chip_info->width * max_loc_bels, nullptr);
- ArchBase::init_cell_types();
- ArchBase::init_bel_buckets();
+ BaseArch::init_cell_types();
+ BaseArch::init_bel_buckets();
for (int i = 0; i < chip_info->width; i++)
x_ids.push_back(id(stringf("X%d", i)));
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 0d93a7a0..15520c18 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -465,7 +465,7 @@ struct ArchRanges
using BucketBelRange = const std::vector<BelId> &;
};
-struct Arch : ArchBase<ArchRanges>
+struct Arch : BaseArch<ArchRanges>
{
const ChipInfoPOD *chip_info;
const PackageInfoPOD *package_info;
@@ -654,7 +654,7 @@ struct Arch : ArchBase<ArchRanges>
if (pip != PipId()) {
wire_fanout[getPipSrcWire(pip)]--;
}
- ArchBase::unbindWire(wire);
+ BaseArch::unbindWire(wire);
}
DelayInfo getWireDelay(WireId wire) const override
@@ -703,13 +703,13 @@ struct Arch : ArchBase<ArchRanges>
void bindPip(PipId pip, NetInfo *net, PlaceStrength strength) override
{
wire_fanout[getPipSrcWire(pip)]++;
- ArchBase::bindPip(pip, net, strength);
+ BaseArch::bindPip(pip, net, strength);
}
void unbindPip(PipId pip) override
{
wire_fanout[getPipSrcWire(pip)]--;
- ArchBase::unbindPip(pip);
+ BaseArch::unbindPip(pip);
}
AllPipRange getPips() const override