作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的验证环境中,我们使用 vr_ad
UVM
包,其中有一个寄存器 vr_ad_reg
的通用结构,它已扩展为环境中每个寄存器的不同类型等:
reg_def TIMER_LOAD_0 TIMER 20'h00010 {
reg_fld timer_load : uint : RW : 0xffff;
}:
vr_ad_reg
具有预定义函数 post_access()
,我想为以单词 'TIMER
开头的每个寄存器类型扩展该函数'.有办法吗?例如:
extend TIMER_* vr_ad_reg { //The intention here to extend the vr_ad_reg for all types that starts with the word TIMER
post_access() is also {
var some_var : uint;
};
}
谢谢你的帮助
最佳答案
没有内置构造来扩展多个子类型。但是,您可以做的是使用基于宏的解决方案。 Specman 团队有一篇关于此主题的博客文章:http://www.cadence.com/Community/blogs/fv/archive/2009/10/20/extending-multiple-when-subtypes-simultaneously.aspx
他们创建了一个 define as computed
宏,它接受多个子类型并扩展它们:
define <multi_when'statement> "extend \[<detr'name>,...\] <base'type> (<MEMBERS {<struct_member>;...})" as computed {
for each in <detr'names> do {
result = appendf("%s extend %s %s %s;",result,it,<base'type>,<MEMBERS>);
};
};
然后你可以像这样使用:
extend [ TIMER_LOAD_0, TIMER_LOAD_1, TIMER_LOAD_2 ] vr_ad_reg {
post_access() is also {
// ...
};
};
关于Specman e : Is there a way to extend multiple kinds of a struct?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25889449/
我是一名优秀的程序员,十分优秀!