Fix events in observed region (#7546)
This commit is contained in:
parent
1a367a13fc
commit
752b77ea77
|
|
@ -486,6 +486,18 @@ class ActiveVisitor final : public VNVisitor {
|
|||
}
|
||||
}
|
||||
|
||||
static void markEventEdges(AstSenTree* sentreep) {
|
||||
for (AstSenItem* senip = sentreep->sensesp(); senip;
|
||||
senip = VN_AS(senip->nextp(), SenItem)) {
|
||||
if (!senip->sensp()) continue;
|
||||
if (const AstNodeDType* const dtypep = senip->sensp()->dtypep()) {
|
||||
if (const AstBasicDType* const basicp = dtypep->basicp()) {
|
||||
if (basicp->isEvent()) senip->edgeType(VEdgeType::ET_EVENT);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// VISITORS
|
||||
void visit(AstScope* nodep) override {
|
||||
m_namer.main(nodep); // Clear last scope's names, and collect this scope's existing names
|
||||
|
|
@ -528,6 +540,7 @@ class ActiveVisitor final : public VNVisitor {
|
|||
}
|
||||
void visit(AstAlwaysObserved* nodep) override {
|
||||
UASSERT_OBJ(nodep->sentreep(), nodep, "Should have a sentree");
|
||||
markEventEdges(nodep->sentreep());
|
||||
AstSenTree* const sentreep = nodep->sentreep();
|
||||
sentreep->unlinkFrBack();
|
||||
// Make a new active for it, needs to be the only item under the active for V3Sched
|
||||
|
|
@ -536,6 +549,7 @@ class ActiveVisitor final : public VNVisitor {
|
|||
}
|
||||
void visit(AstAlwaysReactive* nodep) override {
|
||||
UASSERT_OBJ(nodep->sentreep(), nodep, "Should have a sentree");
|
||||
markEventEdges(nodep->sentreep());
|
||||
AstSenTree* const sentreep = nodep->sentreep();
|
||||
sentreep->unlinkFrBack();
|
||||
// Make a new active for it, needs to be the only item under the active for V3Sched
|
||||
|
|
|
|||
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python3
|
||||
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||
#
|
||||
# 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-FileCopyrightText: 2026 Wilson Snyder
|
||||
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||||
|
||||
import vltest_bootstrap
|
||||
|
||||
test.scenarios('simulator')
|
||||
|
||||
test.compile(verilator_flags2=["--binary"], make_main=False)
|
||||
|
||||
test.execute()
|
||||
|
||||
test.passes()
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
// DESCRIPTION: Verilator: Verilog Test module
|
||||
//
|
||||
// This file ONLY is placed under the Creative Commons Public Domain
|
||||
// SPDX-FileCopyrightText: 2026 Wilson Snyder
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
`timescale 1ms / 1ns
|
||||
module t;
|
||||
event e;
|
||||
bit data = 0;
|
||||
|
||||
clocking cb @e;
|
||||
input #0 data;
|
||||
endclocking
|
||||
|
||||
initial begin
|
||||
#1;
|
||||
data = 1;
|
||||
-> e;
|
||||
#1;
|
||||
if (cb.data !== 1'b1) $stop;
|
||||
$write("*-* All Finished *-*\n");
|
||||
$finish;
|
||||
end
|
||||
endmodule
|
||||
Loading…
Reference in New Issue