如何在specman中声明固定长度的列表?
在 E (specman) 中,我想声明列表变量,并且我想修复它们的长度。
对于结构体的成员来说很容易做到:
thread[2] : list of thread_t;
而对于函数中的“常规”变量,上面的方法不起作用,我必须做类似的事情:
var warned : list of bool;
gen warned keeping {
it.size() == 5;
};
是否有更好的方法来声明固定大小的列表?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像您这样的硬保留只会在初始化时修复大小,但稍后仍然可以添加或删除元素,您是否试图防止这种情况? 我能想到的保证以后不会添加或删除元素的唯一方法是发出一个与大小同步的事件!=预定的数量:
我可以提供的唯一的另一件事是为硬保留提供一些语法糖:
A hard keep like you have is only going to fix the size at initialization but elements could still be added or dropped later, are you trying to guard against this condition? The only way I can think of to guarantee that elements aren't added or dropped later is emitting an event synced on the size != the predetermined amount:
The only other thing that I can offer is a bit of syntactic sugar for the hard keep:
我对specman一无所知,但固定大小的列表是一个数组,所以这可能会指向你的某个地方。
I know nothing of specman, but a fixed sized list is an array, so that might point you somewhere.