Merge pull request #856 from larsclausen/ps-method-call

Support method calls on package scoped signals
This commit is contained in:
Stephen Williams 2023-01-15 22:17:49 -08:00 committed by GitHub
commit d25af1451c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 150 additions and 20 deletions

View File

@ -238,8 +238,8 @@ static pform_name_t pn_from_ps(perm_string n)
return tmp; return tmp;
} }
PECallFunction::PECallFunction(PPackage*pkg, perm_string n, const list<PExpr *> &parms) PECallFunction::PECallFunction(PPackage*pkg, const pform_name_t&n, const list<PExpr *> &parms)
: package_(pkg), path_(pn_from_ps(n)), parms_(parms.size()), is_overridden_(false) : package_(pkg), path_(n), parms_(parms.size()), is_overridden_(false)
{ {
int tmp_idx = 0; int tmp_idx = 0;
assert(parms_.size() == parms.size()); assert(parms_.size() == parms.size());

View File

@ -521,7 +521,8 @@ class PEIdent : public PExpr {
unsigned expr_wid, unsigned expr_wid,
unsigned flags) const; unsigned flags) const;
unsigned test_width_method_(Design*des, NetScope*scope, width_mode_t&mode); unsigned test_width_method_(const symbol_search_results &sr);
unsigned test_width_parameter_(const NetExpr *par, width_mode_t&mode); unsigned test_width_parameter_(const NetExpr *par, width_mode_t&mode);
@ -886,8 +887,7 @@ class PECallFunction : public PExpr {
public: public:
explicit PECallFunction(const pform_name_t&n, const std::vector<PExpr *> &parms); explicit PECallFunction(const pform_name_t&n, const std::vector<PExpr *> &parms);
// Call function defined in package. // Call function defined in package.
explicit PECallFunction(PPackage*pkg, perm_string n, const std::vector<PExpr *> &parms); explicit PECallFunction(PPackage*pkg, const pform_name_t&n, const std::list<PExpr *> &parms);
explicit PECallFunction(PPackage*pkg, perm_string n, const std::list<PExpr *> &parms);
// Used to convert a user function called as a task // Used to convert a user function called as a task
explicit PECallFunction(PPackage*pkg, const pform_name_t&n, const std::vector<PExpr *> &parms); explicit PECallFunction(PPackage*pkg, const pform_name_t&n, const std::vector<PExpr *> &parms);

View File

@ -3981,7 +3981,7 @@ NetExpr* PEIdent::calculate_up_do_base_(Design*des, NetScope*scope,
return tmp; return tmp;
} }
unsigned PEIdent::test_width_method_(Design*des, NetScope*scope, width_mode_t&) unsigned PEIdent::test_width_method_(const symbol_search_results &sr)
{ {
if (!gn_system_verilog()) if (!gn_system_verilog())
return 0; return 0;
@ -3998,12 +3998,7 @@ unsigned PEIdent::test_width_method_(Design*des, NetScope*scope, width_mode_t&)
<< " of signal " << use_path << endl; << " of signal " << use_path << endl;
} }
NetNet*net = 0; NetNet *net = sr.net;
ivl_type_t cls_val = 0;
const NetExpr*par = 0;
ivl_type_t par_type = 0;
NetEvent*eve = 0;
symbol_search(this, des, scope, use_path, net, par, eve, par_type, cls_val);
if (net == 0) { if (net == 0) {
if (debug_elaborate) if (debug_elaborate)
cerr << get_fileline() << ": PEIdent::test_width_method_: " cerr << get_fileline() << ": PEIdent::test_width_method_: "
@ -4088,13 +4083,13 @@ unsigned PEIdent::test_width(Design*des, NetScope*scope, width_mode_t&mode)
ivl_assert(*this, use_scope); ivl_assert(*this, use_scope);
} }
if (unsigned tmp = test_width_method_(des, scope, mode)) {
return tmp;
}
symbol_search_results sr; symbol_search_results sr;
symbol_search(this, des, use_scope, path_, &sr); symbol_search(this, des, use_scope, path_, &sr);
if (unsigned tmp = test_width_method_(sr)) {
return tmp;
}
// If there is a part/bit select expression, then process it // If there is a part/bit select expression, then process it
// here. This constrains the results no matter what kind the // here. This constrains the results no matter what kind the
// name is. // name is.

View File

@ -0,0 +1,39 @@
// Check that it is possible to perform method call on a package scoped
// identifier of an enum.
package P;
enum integer {
A, B
} e = A;
endpackage
module test;
bit failed = 1'b0;
`define check(expr, val) \
if (val !== expr) begin \
$display("FAILED(%0d). `%s` got %b, expected %b.", `__LINE__, `"expr`", expr, val); \
failed = 1'b1; \
end
initial begin
// Calling without a parameter. Both variants are allowed
`check(P::e.first, P::A)
`check(P::e.first(), P::A)
// Is the width reported correctly for both variants?
`check($bits(P::e.first), $bits(integer))
`check($bits(P::e.first()), $bits(integer))
// Calling with a parameter
`check(P::e.next(1), P::B)
`check($bits(P::e.next(1)), $bits(integer))
if (!failed) begin
$display("PASSED");
end
end
endmodule

View File

@ -0,0 +1,40 @@
// Check that it is possible to perform method call on a package scoped
// identifier of a class object.
package P;
class C;
function int f1(int x);
return x + 1;
endfunction
function int f2();
return 10;
endfunction
endclass
C c = new;
endpackage
module test;
bit failed = 1'b0;
`define check(expr, val) \
if (val !== expr) begin \
$display("FAILED(%0d). `%s` got %b, expected %b.", `__LINE__, `"expr`", expr, val); \
failed = 1'b1; \
end
initial begin
`check(P::c.f1(10), 11)
`check(P::c.f2(), 10)
`check($bits(P::c.f1(10)), $bits(int))
`check($bits(P::c.f2()), $bits(int))
if (!failed) begin
$display("PASSED");
end
end
endmodule

View File

@ -0,0 +1,22 @@
// Check that the parameter to a method on a package scoped identifier is
// evaluated in the scope where the method is called, not where the identifier
// is declared.
package P;
localparam N = 1;
enum {
A, B, C
} e = A;
endpackage
module test;
localparam N = 2;
initial begin
if (P::e.next(N) === P::C) begin
$display("PASSED");
end else begin
$display("FAILED");
end
end
endmodule

View File

@ -0,0 +1,27 @@
// Check that the parameter to a class method on a package scoped identifier is
// evaluated in the scope where the method is called, not where the identifier
// is declared.
package P;
localparam N = 1;
class C;
function int f(int x);
return x;
endfunction
endclass
C c = new;
endpackage
module test;
localparam N = 2;
initial begin
if (P::c.f(N) === 2) begin
$display("PASSED");
end else begin
$display("FAILED");
end
end
endmodule

View File

@ -700,6 +700,10 @@ sv_ps_function_fail3 CE,-g2009 ivltests
sv_ps_member_sel1 normal,-g2009 ivltests sv_ps_member_sel1 normal,-g2009 ivltests
sv_ps_member_sel2 normal,-g2009 ivltests sv_ps_member_sel2 normal,-g2009 ivltests
sv_ps_member_sel3 normal,-g2009 ivltests sv_ps_member_sel3 normal,-g2009 ivltests
sv_ps_method1 normal,-g2009 ivltests
sv_ps_method2 normal,-g2009 ivltests
sv_ps_method3 normal,-g2009 ivltests
sv_ps_method4 normal,-g2009 ivltests
sv_ps_type1 normal,-g2009 ivltests sv_ps_type1 normal,-g2009 ivltests
sv_ps_type_cast1 normal,-g2009 ivltests sv_ps_type_cast1 normal,-g2009 ivltests
sv_ps_type_cast2 normal,-g2009 ivltests sv_ps_type_cast2 normal,-g2009 ivltests

View File

@ -463,6 +463,8 @@ sv_port_default7 CE,-g2009,-pallowsigned=1 ivltests
sv_port_default8 CE,-g2009,-pallowsigned=1 ivltests sv_port_default8 CE,-g2009,-pallowsigned=1 ivltests
sv_port_default9 CE,-g2009 ivltests sv_port_default9 CE,-g2009 ivltests
sv_ps_member_sel3 CE,-g2009 ivltests sv_ps_member_sel3 CE,-g2009 ivltests
sv_ps_method2 CE,-g2009 ivltests
sv_ps_method4 CE,-g2009 ivltests
sv_ps_type_class1 CE,-g2009 ivltests sv_ps_type_class1 CE,-g2009 ivltests
sv_ps_type_class_prop CE,-g2009 ivltests sv_ps_type_class_prop CE,-g2009 ivltests
sv_root_class CE,-g2009 ivltests sv_root_class CE,-g2009 ivltests
@ -521,6 +523,8 @@ pr3390385b CE,-g2009 ivltests # ++
pr3390385c CE,-g2009 ivltests # ++ pr3390385c CE,-g2009 ivltests # ++
pr3390385d CE,-g2009 ivltests # ++ pr3390385d CE,-g2009 ivltests # ++
pr3462145 CE,-g2009 ivltests # ++ pr3462145 CE,-g2009 ivltests # ++
sv_ps_method1 CE,-g2009 ivltests # enum
sv_ps_method3 CE,-g2009 ivltests # enum
sv_queue_assign1 CE,-g2009 ivltests # queue sv_queue_assign1 CE,-g2009 ivltests # queue
sv_queue_assign2 CE,-g2009 ivltests # queue sv_queue_assign2 CE,-g2009 ivltests # queue
sv_queue_copy_empty1 CE,-g2009 ivltests # queue sv_queue_copy_empty1 CE,-g2009 ivltests # queue

View File

@ -3776,11 +3776,10 @@ expr_primary
delete $3; delete $3;
$$ = tmp; $$ = tmp;
} }
| package_scope IDENTIFIER { lex_in_package_scope(0); } '(' expression_list_with_nuls ')' | package_scope hierarchy_identifier { lex_in_package_scope(0); } '(' expression_list_with_nuls ')'
{ perm_string use_name = lex_strings.make($2); { PECallFunction*tmp = new PECallFunction($1, *$2, *$5);
PECallFunction*tmp = new PECallFunction($1, use_name, *$5);
FILE_NAME(tmp, @2); FILE_NAME(tmp, @2);
delete[]$2; delete $2;
delete $5; delete $5;
$$ = tmp; $$ = tmp;
} }