Fix `--top-module` with underscores (#6940).

This commit is contained in:
Wilson Snyder 2026-01-17 20:33:02 -05:00
parent daba5ce27c
commit b7382be0b6
10 changed files with 90 additions and 8 deletions

View File

@ -41,6 +41,7 @@ Verilator 5.045 devel
* Fix error when calling non-static method (#6916). [Artur Bieniek, Antmicro Ltd.]
* Fix memory leak in vpi_put_value and vpi_get_value (#6917). [Christian Hecken]
* Fix segfault after assignment pattern XOR error (#6928) (#6931). [emmettifelts]
* Fix `--top-module` with underscores (#6940). [Christopher Batten]
Verilator 5.044 2026-01-01

View File

@ -164,7 +164,8 @@ VStringList V3HierBlock::commandArgs(bool forMkJson) const {
if (!forMkJson) {
opts.push_back(" --prefix " + prefix);
opts.push_back(" --mod-prefix " + prefix);
opts.push_back(" --top-module " + modp()->name());
// Similar to --top-module but need to use encoded name(), not prettyName()
opts.push_back(" --top-module-encoded " + modp()->name());
}
opts.push_back(" --lib-create " + modp()->name()); // possibly mangled name
if (v3Global.opt.protectKeyProvided())

View File

@ -429,8 +429,19 @@ class LinkCellsVisitor final : public VNVisitor {
}
}
if (v3Global.opt.topModule() != "" && !m_topVertexp) {
v3error("Specified --top-module '" << v3Global.opt.topModule()
<< "' was not found in design.");
VSpellCheck spell;
for (V3GraphVertex& vtx : m_graph.vertices()) {
if (const LinkCellsVertex* const vvertexp = vtx.cast<LinkCellsVertex>()) {
AstNodeModule* const modp = vvertexp->modp();
if (VN_IS(modp, Module)) spell.pushCandidate(modp->prettyName());
}
}
const string suggest
= spell.bestCandidateMsg(AstNode::prettyName(v3Global.opt.topModule()));
v3error("Specified --top-module '"
<< AstNode::prettyName(v3Global.opt.topModule())
<< "' was not found in design.\n"
<< (suggest.empty() ? "" : V3Error::warnMore() + suggest));
}
}
void visit(AstConstPool* nodep) override {}
@ -473,8 +484,9 @@ class LinkCellsVisitor final : public VNVisitor {
UINFO(2, "Link --top-module: " << nodep);
nodep->inLibrary(false); // Safer to make sure it doesn't disappear
}
if (v3Global.opt.topModule() == "" ? nodep->inLibrary() // Library cells are lower
: !topMatch) { // Any non-specified module is lower
if (v3Global.opt.topModule().empty()
? nodep->inLibrary() // Library cells are lower
: !topMatch) { // Any non-specified module is lower
// Put under a fake vertex so that the graph ranking won't indicate
// this is a top level module
if (!m_libVertexp) m_libVertexp = new LibraryVertex{&m_graph};

View File

@ -1789,8 +1789,11 @@ void V3Options::parseOptsList(FileLine* fl, const string& optdir, int argc,
}
});
DECL_OPTION("-timing", OnOff, &m_timing);
DECL_OPTION("-top", Set, &m_topModule);
DECL_OPTION("-top-module", Set, &m_topModule);
DECL_OPTION("-top", CbVal,
[this](const std::string& flag) { m_topModule = AstNode::encodeName(flag); });
DECL_OPTION("-top-module", CbVal,
[this](const std::string& flag) { m_topModule = AstNode::encodeName(flag); });
DECL_OPTION("-top-module-encoded", Set, &m_topModule).undocumented();
DECL_OPTION("-trace", OnOff, &m_trace);
DECL_OPTION("-trace-saif", CbCall, [this]() { m_traceEnabledSaif = true; });
DECL_OPTION("-trace-coverage", OnOff, &m_traceCoverage);

View File

@ -668,7 +668,7 @@ public:
// Not just called protectKey() to avoid bugs of not using protectKeyDefaulted()
bool protectKeyProvided() const { return !m_protectKey.empty(); }
string protectKeyDefaulted() VL_MT_SAFE; // Set default key if not set by user
string topModule() const { return m_topModule; }
string topModule() const { return m_topModule; } // As AstNode::encodeName()
bool noTraceTop() const { return m_noTraceTop; }
string unusedRegexp() const { return m_unusedRegexp; }
string waiverOutput() const { return m_waiverOutput; }

View File

@ -0,0 +1,4 @@
%Error: Specified --top-module 'notfound' was not found in design.
... Suggested alternative: 'notfound1'
... See the manual at https://verilator.org/verilator_doc.html?v=latest for more assistance.
%Error: Exiting due to

View File

@ -0,0 +1,16 @@
#!/usr/bin/env python3
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2024 by Wilson Snyder. This program is free software; you
# can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
import vltest_bootstrap
test.scenarios('vlt')
test.lint(fails=True, v_flags2=["--top-module notfound"], expect_filename=test.golden_filename)
test.passes()

View File

@ -0,0 +1,11 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2026 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module notfound1;
endmodule
module notfound2;
endmodule

View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2024 by Wilson Snyder. This program is free software; you
# can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
import vltest_bootstrap
test.scenarios('simulator')
test.compile(verilator_flags2=["--top-module t_mod_topmodule__underunder"])
test.execute()
test.passes()

View File

@ -0,0 +1,16 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This test verifies that a top-module can be specified which
// is instantiated beneath another module in the compiled source
// code.
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2025 by Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
module t_mod_topmodule__underunder;
initial $finish;
endmodule
module faketop;
endmodule