gpt4 book ai didi

Specman e : Is there a way to extend multiple kinds of a struct?

转载 作者:行者123 更新时间:2023-12-01 12:39:55 28 4
gpt4 key购买 nike

在我的验证环境中,我们使用 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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com