aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/flat_wire_map.h
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-03-19 18:26:00 -0700
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-03-22 09:54:49 -0700
commit32f2ec86c4b83d1e0f3c0982566ff4de30edebb3 (patch)
treef2d1a08d93cd9e9106b984cabfae23e768868b4b /fpga_interchange/flat_wire_map.h
parent0f4014615cf9059332a75244a0ef5a9df4886ed0 (diff)
downloadnextpnr-32f2ec86c4b83d1e0f3c0982566ff4de30edebb3.tar.gz
nextpnr-32f2ec86c4b83d1e0f3c0982566ff4de30edebb3.tar.bz2
nextpnr-32f2ec86c4b83d1e0f3c0982566ff4de30edebb3.zip
Rework FPGA interchange site router.
The new site router should be robust to most situations, and isn't significantly slower with the use of caching. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange/flat_wire_map.h')
-rw-r--r--fpga_interchange/flat_wire_map.h121
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_ */