diff options
Diffstat (limited to 'generic')
| -rw-r--r-- | generic/arch.cc | 2 | ||||
| -rw-r--r-- | generic/arch.h | 2 | ||||
| -rw-r--r-- | generic/main.cc | 2 | 
3 files changed, 5 insertions, 1 deletions
| diff --git a/generic/arch.cc b/generic/arch.cc index 4439f517..77417d27 100644 --- a/generic/arch.cc +++ b/generic/arch.cc @@ -373,6 +373,8 @@ NetInfo *Arch::getBoundPipNet(PipId pip) const { return pips.at(pip).bound_net;  NetInfo *Arch::getConflictingPipNet(PipId pip) const { return pips.at(pip).bound_net; } +WireId Arch::getConflictingPipWire(PipId pip) const { return pips.at(pip).bound_net ? pips.at(pip).dstWire : WireId(); } +  const std::vector<PipId> &Arch::getPips() const { return pip_ids; }  Loc Arch::getPipLocation(PipId pip) const { return pips.at(pip).loc; } diff --git a/generic/arch.h b/generic/arch.h index 1eca9701..dc4258cc 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -172,6 +172,7 @@ struct Arch : BaseCtx      void unbindWire(WireId wire);      bool checkWireAvail(WireId wire) const;      NetInfo *getBoundWireNet(WireId wire) const; +    WireId getConflictingWireWire(WireId wire) const { return wire; }      NetInfo *getConflictingWireNet(WireId wire) const;      DelayInfo getWireDelay(WireId wire) const { return DelayInfo(); }      const std::vector<WireId> &getWires() const; @@ -186,6 +187,7 @@ struct Arch : BaseCtx      void unbindPip(PipId pip);      bool checkPipAvail(PipId pip) const;      NetInfo *getBoundPipNet(PipId pip) const; +    WireId getConflictingPipWire(PipId pip) const;      NetInfo *getConflictingPipNet(PipId pip) const;      const std::vector<PipId> &getPips() const;      Loc getPipLocation(PipId pip) const; diff --git a/generic/main.cc b/generic/main.cc index 412a28ac..08b0b348 100644 --- a/generic/main.cc +++ b/generic/main.cc @@ -37,7 +37,7 @@ class GenericCommandHandler : public CommandHandler      void customBitstream(Context *ctx) override;    protected: -    po::options_description getArchOptions(); +    po::options_description getArchOptions() override;  };  GenericCommandHandler::GenericCommandHandler(int argc, char **argv) : CommandHandler(argc, argv) {} | 
