mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix exponential ConcatN (#5488)
Signed-off-by: Arkadiusz Kozdra <akozdra@antmicro.com> Co-authored-by: Szymon Gizler <sgizler@internships.antmicro.com>
This commit is contained in:
parent
798bbe98e8
commit
91c8866ac3
@ -609,13 +609,14 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
if (vdtypep && vdtypep->isString()) {
|
if (vdtypep && vdtypep->isString()) {
|
||||||
iterateCheckString(nodep, "LHS", nodep->lhsp(), BOTH);
|
iterateCheckString(nodep, "LHS", nodep->lhsp(), BOTH);
|
||||||
iterateCheckString(nodep, "RHS", nodep->rhsp(), BOTH);
|
iterateCheckString(nodep, "RHS", nodep->rhsp(), BOTH);
|
||||||
|
nodep->dtypeSetString();
|
||||||
} else {
|
} else {
|
||||||
iterateCheckSizedSelf(nodep, "LHS", nodep->lhsp(), SELF, BOTH);
|
iterateCheckSizedSelf(nodep, "LHS", nodep->lhsp(), SELF, BOTH);
|
||||||
iterateCheckSizedSelf(nodep, "RHS", nodep->rhsp(), SELF, BOTH);
|
iterateCheckSizedSelf(nodep, "RHS", nodep->rhsp(), SELF, BOTH);
|
||||||
|
nodep->dtypeSetLogicUnsized(nodep->lhsp()->width() + nodep->rhsp()->width(),
|
||||||
|
nodep->lhsp()->widthMin() + nodep->rhsp()->widthMin(),
|
||||||
|
VSigning::UNSIGNED);
|
||||||
}
|
}
|
||||||
nodep->dtypeSetLogicUnsized(nodep->lhsp()->width() + nodep->rhsp()->width(),
|
|
||||||
nodep->lhsp()->widthMin() + nodep->rhsp()->widthMin(),
|
|
||||||
VSigning::UNSIGNED);
|
|
||||||
// Cleanup zero width Verilog2001 {x,{0{foo}}} now,
|
// Cleanup zero width Verilog2001 {x,{0{foo}}} now,
|
||||||
// otherwise having width(0) will cause later assertions to fire
|
// otherwise having width(0) will cause later assertions to fire
|
||||||
if (const AstReplicate* const repp = VN_CAST(nodep->lhsp(), Replicate)) {
|
if (const AstReplicate* const repp = VN_CAST(nodep->lhsp(), Replicate)) {
|
||||||
@ -652,6 +653,7 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstConcatN* nodep) override {
|
void visit(AstConcatN* nodep) override {
|
||||||
|
if (nodep->didWidth()) return;
|
||||||
// String concatenate.
|
// String concatenate.
|
||||||
// Already did AstConcat simplifications
|
// Already did AstConcat simplifications
|
||||||
if (m_vup->prelim()) {
|
if (m_vup->prelim()) {
|
||||||
@ -660,6 +662,7 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
nodep->dtypeSetString();
|
nodep->dtypeSetString();
|
||||||
}
|
}
|
||||||
if (m_vup->final()) {
|
if (m_vup->final()) {
|
||||||
|
nodep->didWidth(true);
|
||||||
if (!nodep->dtypep()->widthSized()) {
|
if (!nodep->dtypep()->widthSized()) {
|
||||||
// See also error in V3Number
|
// See also error in V3Number
|
||||||
nodeForUnsizedWarning(nodep)->v3warn(
|
nodeForUnsizedWarning(nodep)->v3warn(
|
||||||
@ -1495,6 +1498,7 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstCvtPackString* nodep) override {
|
void visit(AstCvtPackString* nodep) override {
|
||||||
|
if (nodep->didWidthAndSet()) return;
|
||||||
// Opaque returns, so arbitrary
|
// Opaque returns, so arbitrary
|
||||||
userIterateAndNext(nodep->lhsp(), WidthVP{SELF, BOTH}.p());
|
userIterateAndNext(nodep->lhsp(), WidthVP{SELF, BOTH}.p());
|
||||||
// Type set in constructor
|
// Type set in constructor
|
||||||
|
@ -7,10 +7,13 @@
|
|||||||
# Version 2.0.
|
# Version 2.0.
|
||||||
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||||||
|
|
||||||
|
import signal
|
||||||
import vltest_bootstrap
|
import vltest_bootstrap
|
||||||
|
|
||||||
test.scenarios('simulator')
|
test.scenarios('simulator')
|
||||||
|
|
||||||
|
signal.alarm(5) # 5s timeout
|
||||||
|
|
||||||
test.compile()
|
test.compile()
|
||||||
|
|
||||||
test.execute()
|
test.execute()
|
||||||
|
@ -18,6 +18,13 @@ module t (/*AUTOARG*/);
|
|||||||
s = {"abcd", e.name(), "ijkl"};
|
s = {"abcd", e.name(), "ijkl"};
|
||||||
if (s != "abcdefghijkl") $stop;
|
if (s != "abcdefghijkl") $stop;
|
||||||
|
|
||||||
|
// hang V3Width if complexity grows exponential (2**52 should suffice)
|
||||||
|
s = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m",
|
||||||
|
"n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
|
||||||
|
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m",
|
||||||
|
"n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"};
|
||||||
|
if (s != "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz") $stop;
|
||||||
|
|
||||||
$write("*-* All Finished *-*\n");
|
$write("*-* All Finished *-*\n");
|
||||||
$finish;
|
$finish;
|
||||||
end
|
end
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -541,22 +541,20 @@
|
|||||||
</begin>
|
</begin>
|
||||||
<begin>
|
<begin>
|
||||||
<assign loc="d,53,14,53,15" dtype_id="10">
|
<assign loc="d,53,14,53,15" dtype_id="10">
|
||||||
<cvtpackstring loc="d,53,20,53,21" dtype_id="10">
|
<concatn loc="d,53,20,53,21" dtype_id="10">
|
||||||
<concatn loc="d,53,20,53,21" dtype_id="10">
|
<varref loc="d,53,17,53,20" name="t.all" dtype_id="10"/>
|
||||||
<varref loc="d,53,17,53,20" name="t.all" dtype_id="10"/>
|
<cvtpackstring loc="d,53,24,53,28" dtype_id="10">
|
||||||
<cvtpackstring loc="d,53,24,53,28" dtype_id="10">
|
<arraysel loc="d,53,24,53,28" dtype_id="10">
|
||||||
<arraysel loc="d,53,24,53,28" dtype_id="10">
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<and loc="d,53,24,53,28" dtype_id="13">
|
||||||
<and loc="d,53,24,53,28" dtype_id="13">
|
<const loc="d,53,24,53,28" name="32'h7" dtype_id="14"/>
|
||||||
<const loc="d,53,24,53,28" name="32'h7" dtype_id="14"/>
|
<ccast loc="d,53,22,53,23" dtype_id="13">
|
||||||
<ccast loc="d,53,22,53,23" dtype_id="13">
|
<varref loc="d,53,22,53,23" name="t.unnamedblk1.e" dtype_id="13"/>
|
||||||
<varref loc="d,53,22,53,23" name="t.unnamedblk1.e" dtype_id="13"/>
|
</ccast>
|
||||||
</ccast>
|
</and>
|
||||||
</and>
|
</arraysel>
|
||||||
</arraysel>
|
</cvtpackstring>
|
||||||
</cvtpackstring>
|
</concatn>
|
||||||
</concatn>
|
|
||||||
</cvtpackstring>
|
|
||||||
<varref loc="d,53,10,53,13" name="t.all" dtype_id="10"/>
|
<varref loc="d,53,10,53,13" name="t.all" dtype_id="10"/>
|
||||||
</assign>
|
</assign>
|
||||||
</begin>
|
</begin>
|
||||||
@ -580,12 +578,10 @@
|
|||||||
<varref loc="d,55,7,55,8" name="t.e" dtype_id="11"/>
|
<varref loc="d,55,7,55,8" name="t.e" dtype_id="11"/>
|
||||||
</assign>
|
</assign>
|
||||||
<assign loc="d,56,11,56,12" dtype_id="10">
|
<assign loc="d,56,11,56,12" dtype_id="10">
|
||||||
<cvtpackstring loc="d,56,17,56,18" dtype_id="10">
|
<concatn loc="d,56,17,56,18" dtype_id="10">
|
||||||
<concatn loc="d,56,17,56,18" dtype_id="10">
|
<varref loc="d,56,14,56,17" name="t.all" dtype_id="10"/>
|
||||||
<varref loc="d,56,14,56,17" name="t.all" dtype_id="10"/>
|
<const loc="d,56,21,56,25" name=""E04"" dtype_id="10"/>
|
||||||
<const loc="d,56,21,56,25" name=""E04"" dtype_id="10"/>
|
</concatn>
|
||||||
</concatn>
|
|
||||||
</cvtpackstring>
|
|
||||||
<varref loc="d,56,7,56,10" name="t.all" dtype_id="10"/>
|
<varref loc="d,56,7,56,10" name="t.all" dtype_id="10"/>
|
||||||
</assign>
|
</assign>
|
||||||
<if loc="d,57,10,57,12">
|
<if loc="d,57,10,57,12">
|
||||||
|
Loading…
Reference in New Issue
Block a user