diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-14 12:02:28 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-14 12:02:28 +0100 |
commit | 18b4b316782035daa259d65d26ea733ca4d16bea (patch) | |
tree | 79fe9930721285a05a1fab21bad01f4590dc2ee9 /ice40/arch.cc | |
parent | df5d7923ec00d18aa832ae5f8859a1120365cb27 (diff) | |
download | nextpnr-18b4b316782035daa259d65d26ea733ca4d16bea.tar.gz nextpnr-18b4b316782035daa259d65d26ea733ca4d16bea.tar.bz2 nextpnr-18b4b316782035daa259d65d26ea733ca4d16bea.zip |
Remove legacy access to state via Arch
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r-- | ice40/arch.cc | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc index 8f2731c6..4727597b 100644 --- a/ice40/arch.cc +++ b/ice40/arch.cc @@ -257,47 +257,6 @@ BelRange Arch::getBelsAtSameTile(BelId bel) const } // ----------------------------------------------------------------------- -// Shorthands to ArchProxy - -BelId Arch::getBelByName(IdString name) const { return rproxy().getBelByName(name); } - -void Arch::bindWire(WireId wire, IdString net, PlaceStrength strength) { rwproxy().bindWire(wire, net, strength); } - -void Arch::unbindWire(WireId wire) { rwproxy().unbindWire(wire); } - -void Arch::bindBel(BelId bel, IdString cell, PlaceStrength strength) { rwproxy().bindBel(bel, cell, strength); } - -void Arch::unbindBel(BelId bel) { rwproxy().unbindBel(bel); } - -bool Arch::checkBelAvail(BelId bel) const { return rproxy().checkBelAvail(bel); } - -IdString Arch::getBoundBelCell(BelId bel) const { return rproxy().getBoundBelCell(bel); } - -IdString Arch::getConflictingBelCell(BelId bel) const { return rproxy().getConflictingBelCell(bel); } - -WireId Arch::getWireByName(IdString name) const { return rproxy().getWireByName(name); } - -WireId Arch::getWireBelPin(BelId bel, PortPin pin) const { return rproxy().getWireBelPin(bel, pin); } - -bool Arch::checkWireAvail(WireId wire) const { return rproxy().checkWireAvail(wire); } - -IdString Arch::getBoundWireNet(WireId wire) const { return rproxy().getBoundWireNet(wire); } - -IdString Arch::getConflictingWireNet(WireId wire) const { return rproxy().getConflictingWireNet(wire); } - -PipId Arch::getPipByName(IdString name) const { return rproxy().getPipByName(name); } - -void Arch::bindPip(PipId pip, IdString net, PlaceStrength strength) { return rwproxy().bindPip(pip, net, strength); } - -void Arch::unbindPip(PipId pip) { return rwproxy().unbindPip(pip); } - -bool Arch::checkPipAvail(PipId pip) const { return rproxy().checkPipAvail(pip); } - -IdString Arch::getBoundPipNet(PipId pip) const { return rproxy().getBoundPipNet(pip); } - -IdString Arch::getConflictingPipNet(PipId pip) const { return rproxy().getConflictingPipNet(pip); } - -// ----------------------------------------------------------------------- IdString Arch::getPipName(PipId pip) const { |