From abf5ea84b9700c72a19327cda1000db0f80b34e0 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Wed, 8 Aug 2018 17:22:05 +0200 Subject: Get rid of BelType and PortPin in generic arch Signed-off-by: Clifford Wolf --- generic/arch.cc | 10 +++++----- generic/arch.h | 14 ++++---------- generic/archdefs.h | 3 --- 3 files changed, 9 insertions(+), 18 deletions(-) (limited to 'generic') diff --git a/generic/arch.cc b/generic/arch.cc index 0fa93da8..a6d41e1e 100644 --- a/generic/arch.cc +++ b/generic/arch.cc @@ -238,15 +238,15 @@ CellInfo *Arch::getConflictingBelCell(BelId bel) const { return bels.at(bel).bou const std::vector &Arch::getBels() const { return bel_ids; } -BelType Arch::getBelType(BelId bel) const { return bels.at(bel).type; } +IdString Arch::getBelType(BelId bel) const { return bels.at(bel).type; } -WireId Arch::getBelPinWire(BelId bel, PortPin pin) const { return bels.at(bel).pins.at(pin).wire; } +WireId Arch::getBelPinWire(BelId bel, IdString pin) const { return bels.at(bel).pins.at(pin).wire; } -PortType Arch::getBelPinType(BelId bel, PortPin pin) const { return bels.at(bel).pins.at(pin).type; } +PortType Arch::getBelPinType(BelId bel, IdString pin) const { return bels.at(bel).pins.at(pin).type; } -std::vector Arch::getBelPins(BelId bel) const +std::vector Arch::getBelPins(BelId bel) const { - std::vector ret; + std::vector ret; for (auto &it : bels.at(bel).pins) ret.push_back(it.first); return ret; diff --git a/generic/arch.h b/generic/arch.h index 59fe8d05..b38d5916 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -128,12 +128,6 @@ struct Arch : BaseCtx IdString archId() const { return id("generic"); } IdString archArgsToId(ArchArgs args) const { return id("none"); } - IdString belTypeToId(BelType type) const { return type; } - IdString portPinToId(PortPin type) const { return type; } - - BelType belTypeFromId(IdString id) const { return id; } - PortPin portPinFromId(IdString id) const { return id; } - int getGridDimX() const { return gridDimX; } int getGridDimY() const { return gridDimY; } int getTileDimZ(int x, int y) const { return tileDimZ[x][y]; } @@ -151,10 +145,10 @@ struct Arch : BaseCtx CellInfo *getBoundBelCell(BelId bel) const; CellInfo *getConflictingBelCell(BelId bel) const; const std::vector &getBels() const; - BelType getBelType(BelId bel) const; - WireId getBelPinWire(BelId bel, PortPin pin) const; - PortType getBelPinType(BelId bel, PortPin pin) const; - std::vector getBelPins(BelId bel) const; + IdString getBelType(BelId bel) const; + WireId getBelPinWire(BelId bel, IdString pin) const; + PortType getBelPinType(BelId bel, IdString pin) const; + std::vector getBelPins(BelId bel) const; WireId getWireByName(IdString name) const; IdString getWireName(WireId wire) const; diff --git a/generic/archdefs.h b/generic/archdefs.h index b318d5af..2452aa17 100644 --- a/generic/archdefs.h +++ b/generic/archdefs.h @@ -46,9 +46,6 @@ struct DelayInfo } }; -typedef IdString BelType; -typedef IdString PortPin; - typedef IdString BelId; typedef IdString WireId; typedef IdString PipId; -- cgit v1.2.3