From cbcd2ea3acaf257bf39b25a38d9f591e82a66f37 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 18 Jun 2018 14:12:39 +0200 Subject: Rename chip.h to arch.h Signed-off-by: Clifford Wolf --- dummy/arch.cc | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 179 insertions(+) create mode 100644 dummy/arch.cc (limited to 'dummy/arch.cc') diff --git a/dummy/arch.cc b/dummy/arch.cc new file mode 100644 index 00000000..5bbf36e3 --- /dev/null +++ b/dummy/arch.cc @@ -0,0 +1,179 @@ +/* + * nextpnr -- Next Generation Place and Route + * + * Copyright (C) 2018 Clifford Wolf + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + */ + +#include +#include "nextpnr.h" + +NEXTPNR_NAMESPACE_BEGIN + +Arch::Arch(ArchArgs) {} + +std::string Arch::getChipName() { return "Dummy"; } + +void IdString::initialize_chip() {} + +// --------------------------------------------------------------- + +BelId Arch::getBelByName(IdString name) const { return BelId(); } + +IdString Arch::getBelName(BelId bel) const { return IdString(); } + +void Arch::bindBel(BelId bel, IdString cell) {} + +void Arch::unbindBel(BelId bel) {} + +bool Arch::checkBelAvail(BelId bel) const { return false; } + +IdString Arch::getBelCell(BelId bel, bool conflicting) const +{ + return IdString(); +} + +const std::vector &Arch::getBels() const +{ + static std::vector ret; + return ret; +} + +const std::vector &Arch::getBelsByType(BelType type) const +{ + static std::vector ret; + return ret; +} + +BelType Arch::getBelType(BelId bel) const { return BelType(); } + +WireId Arch::getWireBelPin(BelId bel, PortPin pin) const { return WireId(); } + +BelPin Arch::getBelPinUphill(WireId wire) const { return BelPin(); } + +const std::vector &Arch::getBelPinsDownhill(WireId wire) const +{ + static std::vector ret; + return ret; +} + +// --------------------------------------------------------------- + +WireId Arch::getWireByName(IdString name) const { return WireId(); } + +IdString Arch::getWireName(WireId wire) const { return IdString(); } + +void Arch::bindWire(WireId wire, IdString net) {} + +void Arch::unbindWire(WireId wire) {} + +bool Arch::checkWireAvail(WireId wire) const { return false; } + +IdString Arch::getWireNet(WireId wire, bool conflicting) const +{ + return IdString(); +} + +const std::vector &Arch::getWires() const +{ + static std::vector ret; + return ret; +} + +// --------------------------------------------------------------- + +PipId Arch::getPipByName(IdString name) const { return PipId(); } + +IdString Arch::getPipName(PipId pip) const { return IdString(); } + +void Arch::bindPip(PipId pip, IdString net) {} + +void Arch::unbindPip(PipId pip) {} + +bool Arch::checkPipAvail(PipId pip) const { return false; } + +IdString Arch::getPipNet(PipId pip, bool conflicting) const +{ + return IdString(); +} + +const std::vector &Arch::getPips() const +{ + static std::vector ret; + return ret; +} + +WireId Arch::getPipSrcWire(PipId pip) const { return WireId(); } + +WireId Arch::getPipDstWire(PipId pip) const { return WireId(); } + +DelayInfo Arch::getPipDelay(PipId pip) const { return DelayInfo(); } + +const std::vector &Arch::getPipsDownhill(WireId wire) const +{ + static std::vector ret; + return ret; +} + +const std::vector &Arch::getPipsUphill(WireId wire) const +{ + static std::vector ret; + return ret; +} + +const std::vector &Arch::getWireAliases(WireId wire) const +{ + static std::vector ret; + return ret; +} + +// --------------------------------------------------------------- + +bool Arch::estimatePosition(BelId bel, int &x, int &y) const +{ + x = 0.0; + y = 0.0; + return false; +} + +delay_t Arch::estimateDelay(WireId src, WireId dst) const { return 0.0; } + +// --------------------------------------------------------------- + +std::vector Arch::getFrameGraphics() const +{ + static std::vector ret; + return ret; +} + +std::vector Arch::getBelGraphics(BelId bel) const +{ + static std::vector ret; + return ret; +} + +std::vector Arch::getWireGraphics(WireId wire) const +{ + static std::vector ret; + return ret; +} + +std::vector Arch::getPipGraphics(PipId pip) const +{ + static std::vector ret; + return ret; +} + +NEXTPNR_NAMESPACE_END -- cgit v1.2.3