From bcf71dea85598fb29345cf5e800bb5b6b682e958 Mon Sep 17 00:00:00 2001 From: Stan Lee Date: Fri, 13 Mar 2026 11:15:46 -0700 Subject: [PATCH 1/2] dump the number of scopes/signals in the search space --- kernel/fstdata.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/fstdata.cc b/kernel/fstdata.cc index c1d56e353..69745bc61 100644 --- a/kernel/fstdata.cc +++ b/kernel/fstdata.cc @@ -399,7 +399,7 @@ int FstData::getWidth(fstHandle signal) // Auto-discover scope from FST by finding the top module std::string FstData::autoScope(Module *topmod) { - log("Auto-discovering scopes from file...\n"); + log("Auto-discovering scopes from %d candidates...\n", GetSize(handle_to_var)); std::string top = RTLIL::unescape_id(topmod->name); std::string scope = ""; From e5d3bb954efed672cda39569c795c356a12936da Mon Sep 17 00:00:00 2001 From: Stan Lee Date: Mon, 16 Mar 2026 12:05:27 -0700 Subject: [PATCH 2/2] correction --- kernel/fstdata.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/fstdata.cc b/kernel/fstdata.cc index 69745bc61..2e3c429a5 100644 --- a/kernel/fstdata.cc +++ b/kernel/fstdata.cc @@ -399,7 +399,7 @@ int FstData::getWidth(fstHandle signal) // Auto-discover scope from FST by finding the top module std::string FstData::autoScope(Module *topmod) { - log("Auto-discovering scopes from %d candidates...\n", GetSize(handle_to_var)); + log("Auto-discovering scopes from %d candidates...\n", GetSize(name_to_handle)); std::string top = RTLIL::unescape_id(topmod->name); std::string scope = "";