aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/arch.h
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-03-22 18:32:04 +0000
committerGitHub <noreply@github.com>2021-03-22 18:32:04 +0000
commita3ed97c0db8aced801a7bceb8d336d6203a671ad (patch)
tree2df15cb63b0e315b9bac9b0b0cc9b6a7f243e7d9 /fpga_interchange/arch.h
parente8d36bf5bdda84503d5c796b933b1c986a277bf5 (diff)
parent32f2ec86c4b83d1e0f3c0982566ff4de30edebb3 (diff)
downloadnextpnr-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/arch.h')
-rw-r--r--fpga_interchange/arch.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h
index 3185eb5d..217e3508 100644
--- a/fpga_interchange/arch.h
+++ b/fpga_interchange/arch.h
@@ -37,6 +37,7 @@
#include "chipdb.h"
#include "dedicated_interconnect.h"
#include "site_router.h"
+#include "site_routing_cache.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -1037,6 +1038,8 @@ struct Arch : ArchAPI<ArchRanges>
std::regex verilog_hex_constant;
void read_lut_equation(DynamicBitarray<> *equation, const Property &equation_parameter) const;
bool route_vcc_to_unused_lut_pins();
+ mutable RouteNodeStorage node_storage;
+ mutable SiteRoutingCache site_routing_cache;
};
NEXTPNR_NAMESPACE_END