【发布时间】:2019-05-16 06:08:36
【问题描述】:
我正在尝试在系统 verilog 中学习数组缩减技术。写在模块下面:
module main;
localparam [7:0]PARAM_ARR0[3:0] = '{8'h1,8'h3,8'h4,8'h0};
localparam [3:0]PARAM_ARR1[7:0] = '{4'h3,4'h2,4'h2,4'h2,4'h1,4'h1,4'h1,4'h1};
int s = 0;
logic [7:0]arr0[3:0] = '{8'h1,8'h3,8'h4,8'h0};
logic [3:0]arr1[7:0] = '{4'h3,4'h2,4'h2,4'h2,4'h1,4'h1,4'h1,4'h1};
initial begin
//s = int'(PARAM_ARR0.sum() with (item.index<int'(PARAM_ARR1[0])?item:0));
//$display("sum0 = %0d",s);
//s = int'(PARAM_ARR0.sum() with (item.index<int'(PARAM_ARR1[4])?item:0));
//$display("sum1 = %0d",s);
s = int'(arr0.sum() with (item.index<int'(arr1[0])?item:0));
$display("sum0 = %0d",s);
s = int'(arr0.sum() with (item.index<int'(arr1[4])?item:0));
$display("sum1 = %0d",s);
s = int'(arr0.sum() with (item.index<int'(arr1[7])?item:0));
$display("sum2 = %0d",s);
end
endmodule
- 如果我在初始后取消注释前 4 行(二维参数数组的数组缩减),VCS 会抛出如下编译错误。数组方法是否不适用于参数数组?
Error-[XMRE] Cross-module reference resolution error
../../test_param_array_sum.sv, 10
Error found while trying to resolve cross-module reference.
token 'sum'. Originating module 'main'.
Source info: PARAM_ARR0.sum(item) with (((item.index < int'(4'b1))
? item : 0))
Error-[IND] Identifier not declared
../../test_param_array_sum.sv, 10
Identifier 'item' has not been declared yet. If this error is not expected,
please check if you have set `default_nettype to none.
- 还有一个疑问是,当我按照上面给出的那样在 VCS 中模拟代码时,我得到的结果如下:
sum0 = 1
sum1 = 4
sum2 = 8
我期望结果分别为 0、4 和 7。因为我试图获取 arr0 中索引小于 arr1[0] (1)、arr1[4] (2)、arr1[7] (3) 的所有元素的总和。
谢谢
【问题讨论】:
-
vcs 是正确的。从基本数据类型创建的数组没有任何与之关联的函数。所以,
.sum()在那里是非法的。改用动态数组。
标签: arrays system-verilog