aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/archdefs.h
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-03-22 09:30:38 +0000
committerGitHub <noreply@github.com>2021-03-22 09:30:38 +0000
commit68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5 (patch)
treebad29dce65cf448e36704e6d7b1773d8dfd573a2 /fpga_interchange/archdefs.h
parentf52b5229642cdb54d61b54f5ab9a7478a119298e (diff)
parent22c6754bcd08f66b6f8e87a58dc09ed260c72c25 (diff)
downloadnextpnr-68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5.tar.gz
nextpnr-68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5.tar.bz2
nextpnr-68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5.zip
Merge pull request #635 from litghost/refactor_headers
Refactor header structures in FPGA interchange Arch.
Diffstat (limited to 'fpga_interchange/archdefs.h')
-rw-r--r--fpga_interchange/archdefs.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/fpga_interchange/archdefs.h b/fpga_interchange/archdefs.h
index c9c0bc4f..d20c5ea4 100644
--- a/fpga_interchange/archdefs.h
+++ b/fpga_interchange/archdefs.h
@@ -24,6 +24,7 @@
#include <boost/functional/hash.hpp>
#include <cstdint>
+#include "hash_table.h"
#include "luts.h"
#include "nextpnr_namespaces.h"
@@ -108,8 +109,8 @@ struct ArchCellInfo
ArchCellInfo() : cell_mapping(-1) {}
int32_t cell_mapping;
- std::unordered_map<IdString, std::vector<IdString>> cell_bel_pins;
- std::unordered_set<IdString> const_ports;
+ HashTables::HashMap<IdString, std::vector<IdString>> cell_bel_pins;
+ HashTables::HashSet<IdString> const_ports;
LutCell lut_cell;
};