diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 18:32:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 18:32:04 +0000 |
commit | a3ed97c0db8aced801a7bceb8d336d6203a671ad (patch) | |
tree | 2df15cb63b0e315b9bac9b0b0cc9b6a7f243e7d9 /fpga_interchange/flat_wire_map.h | |
parent | e8d36bf5bdda84503d5c796b933b1c986a277bf5 (diff) | |
parent | 32f2ec86c4b83d1e0f3c0982566ff4de30edebb3 (diff) | |
download | nextpnr-a3ed97c0db8aced801a7bceb8d336d6203a671ad.tar.gz nextpnr-a3ed97c0db8aced801a7bceb8d336d6203a671ad.tar.bz2 nextpnr-a3ed97c0db8aced801a7bceb8d336d6203a671ad.zip |
Merge pull request #637 from litghost/refine_site_router
Refine site router
Diffstat (limited to 'fpga_interchange/flat_wire_map.h')
-rw-r--r-- | fpga_interchange/flat_wire_map.h | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/fpga_interchange/flat_wire_map.h b/fpga_interchange/flat_wire_map.h new file mode 100644 index 00000000..71ecd0b6 --- /dev/null +++ b/fpga_interchange/flat_wire_map.h @@ -0,0 +1,121 @@ +/* + * nextpnr -- Next Generation Place and Route + * + * Copyright (C) 2021 Symbiflow Authors + * + * + * 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. + * + */ + +#ifndef FLAT_WIRE_MAP_H_ +#define FLAT_WIRE_MAP_H_ + +#include "context.h" +#include "dynamic_bitarray.h" +#include "nextpnr_namespaces.h" +#include "nextpnr_types.h" + +NEXTPNR_NAMESPACE_BEGIN + +template <typename Value> class FlatTileWireMap +{ + public: + std::pair<Value *, bool> emplace(const Context *ctx, WireId wire, const Value &value) + { + if (values_.empty()) { + if (wire.tile == -1) { + resize(ctx->chip_info->nodes.size()); + } else { + resize(loc_info(ctx->chip_info, wire).wire_data.size()); + } + } + + if (set_.get(wire.index)) { + return std::make_pair(&values_[wire.index], false); + } else { + values_[wire.index] = value; + set_.set(wire.index, true); + return std::make_pair(&values_[wire.index], true); + } + } + + const Value &at(WireId wire) const + { + NPNR_ASSERT(!values_.empty()); + NPNR_ASSERT(set_.get(wire.index)); + return values_.at(wire.index); + } + + void clear() + { + if (!values_.empty()) { + set_.fill(false); + } + } + + private: + void resize(size_t count) + { + set_.resize(count); + set_.fill(false); + values_.resize(count); + } + + DynamicBitarray<> set_; + std::vector<Value> values_; +}; + +template <typename Value> class FlatWireMap +{ + public: + FlatWireMap(const Context *ctx) : ctx_(ctx) { tiles_.resize(ctx->chip_info->tiles.size() + 1); } + + std::pair<std::pair<WireId, Value *>, bool> emplace(WireId wire, const Value &value) + { + // Tile = -1 is for node wires. + size_t tile_index = wire.tile + 1; + auto &tile = tiles_.at(tile_index); + + auto result = tile.emplace(ctx_, wire, value); + if (result.second) { + size_ += 1; + } + return std::make_pair(std::make_pair(wire, result.first), result.second); + } + + const Value &at(WireId wire) const + { + const auto &tile = tiles_.at(wire.tile + 1); + return tile.at(wire); + } + + size_t size() const { return size_; } + + void clear() + { + for (auto &tile : tiles_) { + tile.clear(); + } + size_ = 0; + } + + private: + const Context *ctx_; + std::vector<FlatTileWireMap<Value>> tiles_; + size_t size_; +}; + +NEXTPNR_NAMESPACE_END + +#endif /* FLAT_WIRE_MAP_H_ */ |