diff options
author | gatecat <gatecat@ds0.me> | 2022-12-02 14:20:39 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2022-12-02 14:20:39 +0100 |
commit | c62a947a2804c3027471b20815c7544e0fd698d0 (patch) | |
tree | 2448ccfe4af883e8f8f86a2c7efb0bffa52576e3 /generic | |
parent | f07d9a18356ec8df74d9c42693f7b9307e390a7f (diff) | |
download | nextpnr-c62a947a2804c3027471b20815c7544e0fd698d0.tar.gz nextpnr-c62a947a2804c3027471b20815c7544e0fd698d0.tar.bz2 nextpnr-c62a947a2804c3027471b20815c7544e0fd698d0.zip |
api: Make NetInfo* of checkPipAvailForNet const
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'generic')
-rw-r--r-- | generic/arch.cc | 2 | ||||
-rw-r--r-- | generic/arch.h | 2 | ||||
-rw-r--r-- | generic/viaduct_api.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/generic/arch.cc b/generic/arch.cc index 9992e1cd..a1d98200 100644 --- a/generic/arch.cc +++ b/generic/arch.cc @@ -468,7 +468,7 @@ bool Arch::checkPipAvail(PipId pip) const return (!uarch || uarch->checkPipAvail(pip)) && (pip_info(pip).bound_net == nullptr); } -bool Arch::checkPipAvailForNet(PipId pip, NetInfo *net) const +bool Arch::checkPipAvailForNet(PipId pip, const NetInfo *net) const { if (uarch && !uarch->checkPipAvailForNet(pip, net)) return false; diff --git a/generic/arch.h b/generic/arch.h index 688392da..6b34c289 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -294,7 +294,7 @@ struct Arch : BaseArch<ArchRanges> void bindPip(PipId pip, NetInfo *net, PlaceStrength strength) override; void unbindPip(PipId pip) override; bool checkPipAvail(PipId pip) const override; - bool checkPipAvailForNet(PipId pip, NetInfo *net) const override; + bool checkPipAvailForNet(PipId pip, const NetInfo *net) const override; NetInfo *getBoundPipNet(PipId pip) const override; WireId getConflictingPipWire(PipId pip) const override; NetInfo *getConflictingPipNet(PipId pip) const override; diff --git a/generic/viaduct_api.h b/generic/viaduct_api.h index bc9b4311..6f8adb3e 100644 --- a/generic/viaduct_api.h +++ b/generic/viaduct_api.h @@ -77,7 +77,7 @@ struct ViaductAPI // it's bound (which the base arch will deal with) virtual bool checkWireAvail(WireId wire) const { return true; } virtual bool checkPipAvail(PipId pip) const { return true; } - virtual bool checkPipAvailForNet(PipId pip, NetInfo *net) const { return checkPipAvail(pip); }; + virtual bool checkPipAvailForNet(PipId pip, const NetInfo *net) const { return checkPipAvail(pip); }; // --- Route lookahead --- virtual delay_t estimateDelay(WireId src, WireId dst) const; |