mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
parent
df519ff16e
commit
5802818b9a
@ -46,6 +46,7 @@ february cozzocrea
|
|||||||
Felix Neumärker
|
Felix Neumärker
|
||||||
Felix Yan
|
Felix Yan
|
||||||
Frans Skarman
|
Frans Skarman
|
||||||
|
Fuad Ismail
|
||||||
G-A. Kamendje
|
G-A. Kamendje
|
||||||
Garrett Smith
|
Garrett Smith
|
||||||
Geza Lore
|
Geza Lore
|
||||||
|
@ -278,6 +278,7 @@ class UndrivenVisitor final : public VNVisitorConst {
|
|||||||
bool m_inBBox = false; // In black box; mark as driven+used
|
bool m_inBBox = false; // In black box; mark as driven+used
|
||||||
bool m_inContAssign = false; // In continuous assignment
|
bool m_inContAssign = false; // In continuous assignment
|
||||||
bool m_inProcAssign = false; // In procedural assignment
|
bool m_inProcAssign = false; // In procedural assignment
|
||||||
|
bool m_inFTaskRef = false; // In function or task call
|
||||||
bool m_inInoutPin = false; // Connected to pin that is inout
|
bool m_inInoutPin = false; // Connected to pin that is inout
|
||||||
const AstNodeFTask* m_taskp = nullptr; // Current task
|
const AstNodeFTask* m_taskp = nullptr; // Current task
|
||||||
const AstAlways* m_alwaysCombp = nullptr; // Current always if combo, otherwise nullptr
|
const AstAlways* m_alwaysCombp = nullptr; // Current always if combo, otherwise nullptr
|
||||||
@ -390,6 +391,13 @@ class UndrivenVisitor final : public VNVisitorConst {
|
|||||||
<< " (IEEE 1364-2005 6.1; Verilog only, legal in SV): "
|
<< " (IEEE 1364-2005 6.1; Verilog only, legal in SV): "
|
||||||
<< nodep->prettyNameQ());
|
<< nodep->prettyNameQ());
|
||||||
}
|
}
|
||||||
|
if (m_inFTaskRef && nodep->varp()->varType().isNet()) {
|
||||||
|
nodep->v3warn(
|
||||||
|
PROCASSWIRE,
|
||||||
|
"Passed wire on output or inout subroutine argument, expected expression that "
|
||||||
|
"is valid on the left hand side of a procedural assignment"
|
||||||
|
<< " (IEEE 1800-2023 13.5): " << nodep->prettyNameQ());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (int usr = 1; usr < (m_alwaysCombp ? 3 : 2); ++usr) {
|
for (int usr = 1; usr < (m_alwaysCombp ? 3 : 2); ++usr) {
|
||||||
UndrivenVarEntry* const entryp = getEntryp(nodep->varp(), usr);
|
UndrivenVarEntry* const entryp = getEntryp(nodep->varp(), usr);
|
||||||
@ -493,6 +501,11 @@ class UndrivenVisitor final : public VNVisitorConst {
|
|||||||
if (nodep->keyword() == VAlwaysKwd::ALWAYS_COMB) UINFO(9, " Done " << nodep << endl);
|
if (nodep->keyword() == VAlwaysKwd::ALWAYS_COMB) UINFO(9, " Done " << nodep << endl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
void visit(AstNodeFTaskRef* nodep) override {
|
||||||
|
VL_RESTORER(m_inFTaskRef);
|
||||||
|
m_inFTaskRef = true;
|
||||||
|
iterateChildrenConst(nodep);
|
||||||
|
}
|
||||||
|
|
||||||
void visit(AstNodeFTask* nodep) override {
|
void visit(AstNodeFTask* nodep) override {
|
||||||
VL_RESTORER(m_taskp);
|
VL_RESTORER(m_taskp);
|
||||||
|
10
test_regress/t/t_lint_ftask_output_assign_bad.out
Normal file
10
test_regress/t/t_lint_ftask_output_assign_bad.out
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
%Error-PROCASSWIRE: t/t_lint_ftask_output_assign_bad.v:21:11: Passed wire on output or inout subroutine argument, expected expression that is valid on the left hand side of a procedural assignment (IEEE 1800-2023 13.5): 'wire_out'
|
||||||
|
: ... note: In instance 't'
|
||||||
|
21 | set_f(wire_out, in);
|
||||||
|
| ^~~~~~~~
|
||||||
|
... For error description see https://verilator.org/warn/PROCASSWIRE?v=latest
|
||||||
|
%Error-PROCASSWIRE: t/t_lint_ftask_output_assign_bad.v:23:14: Passed wire on output or inout subroutine argument, expected expression that is valid on the left hand side of a procedural assignment (IEEE 1800-2023 13.5): 'wire_out'
|
||||||
|
: ... note: In instance 't'
|
||||||
|
23 | set_task(wire_out, in);
|
||||||
|
| ^~~~~~~~
|
||||||
|
%Error: Exiting due to
|
19
test_regress/t/t_lint_ftask_output_assign_bad.pl
Executable file
19
test_regress/t/t_lint_ftask_output_assign_bad.pl
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||||||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||||
|
#
|
||||||
|
# Copyright 2003 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
|
||||||
|
|
||||||
|
scenarios(vlt => 1);
|
||||||
|
|
||||||
|
lint(
|
||||||
|
fails => 1,
|
||||||
|
expect_filename => $Self->{golden_filename},
|
||||||
|
);
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
26
test_regress/t/t_lint_ftask_output_assign_bad.v
Normal file
26
test_regress/t/t_lint_ftask_output_assign_bad.v
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||||||
|
// any use, without warranty, 2017 by Wilson Snyder.
|
||||||
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
module t (
|
||||||
|
input logic in,
|
||||||
|
output wire wire_out,
|
||||||
|
output logic reg_out
|
||||||
|
);
|
||||||
|
function void set_f(output set_out, input set_in);
|
||||||
|
set_out = 1;
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
task set_task(output set_out, input set_in);
|
||||||
|
set_out = 1;
|
||||||
|
endtask
|
||||||
|
|
||||||
|
always_comb begin : setCall
|
||||||
|
set_f(wire_out, in);
|
||||||
|
set_f(reg_out, in);
|
||||||
|
set_task(wire_out, in);
|
||||||
|
set_task(reg_out, in);
|
||||||
|
end
|
||||||
|
endmodule
|
@ -11,8 +11,8 @@ module t (/*AUTOARG*/);
|
|||||||
parameter BANKS = 6;
|
parameter BANKS = 6;
|
||||||
parameter ROWS = 8;
|
parameter ROWS = 8;
|
||||||
|
|
||||||
wire [2:0] bank;
|
reg [2:0] bank;
|
||||||
wire [2:0] row;
|
reg [2:0] row;
|
||||||
|
|
||||||
integer a;
|
integer a;
|
||||||
integer used[BANKS][ROWS];
|
integer used[BANKS][ROWS];
|
||||||
|
Loading…
Reference in New Issue
Block a user