当前位置: 首页 > news >正文

设计模式在芯片验证中的应用——迭代器

一、迭代器设计模式

迭代器设计模式(iterator)是一种行为设计模式, 让你能在不暴露集合底层表现形式 (列表、 栈和树等数据结构) 的情况下遍历集合中所有的元素。

在验证环境中的checker会收集各个monitor上送过来的transactions,如果有一个专用配置寄存器用于开启或关闭ECC计算,那么在其发生更改时,需要遍历checker中的transactions并修改所预测的数据值,以实现正确的预测。任何在对象集合上执行遍历的场景,无论其内部结构如何,都适合使用iterator设计模式进行建模。该解决方案的主要优点是存储数据的内部结构不需要对外可见,因此可以在不影响环境其余部分的情况下进行修改。Iterator设计模式的使用增加了环境的灵活性,且通常没有任何主要缺点,还是比较推荐大家有机会可以试试。

迭代器设计模式主要包含以下几个组件:

  • 抽象迭代器(Abstract Iterator接口:声明了遍历集合所需的操作: 获取下一个元素、 获取当前位置和重新开始迭代等。
  • 具体迭代器 (Concrete Iterators :继承自抽象迭代器,实现遍历集合的一种特定算法。 迭代器对象必须跟踪自身遍历的进度。 这使得多个迭代器可以相互独立地遍历同一集合。
  • 抽象集合 (Abstract Container接口:声明一个或多个方法来获取与集合兼容的迭代器。 请注意, 返回方法的类型必须被声明为迭代器接口, 因此具体集合可以返回各种不同种类的迭代器。
  • 具体集合 (Concrete Container:继承自抽象集合, 会在客户端请求迭代器时返回一个特定的具体迭代器类实体。

下图为迭代器设计模式在ECC中应用的UML类图。

二、参考代码

迭代器设计模式的参考代码如下:

class base_item extends uvm_object;`uvm_object_utils (base_item)function new (string name = "base_item");super.new(name);endfunction : newfunction void re_generate(bit ecc_en);if ( ecc_en ) $display("%s No ECC", get_name());else $display("%s Has ECC", get_name());    endfunction : re_generateendclass : base_itemvirtual class iterator extends uvm_object;function new (string name = "iterator");super.new(name);endfunction : newpure virtual function bit has_next();pure virtual function base_item next();endclass : iteratorvirtual class container extends uvm_object;function new (string name = "container");super.new(name);endfunction : newpure virtual function iterator get_iterator();endclass : containerclass data_container extends container;`uvm_object_utils (data_container)static base_item item_q[$];class queue_iterator extends iterator;`uvm_object_utils (queue_iterator)int index;function new (string name = "queue_iterator");super.new(name);endfunction : newvirtual function bit has_next();if ( index < item_q.size() ) beginreturn 1;endreturn 0;endfunction : has_nextvirtual function base_item next();if ( this.has_next() ) beginreturn item_q[index++];endreturn null;endfunction : nextendclass : queue_iteratorfunction new (string name = "data_container");super.new(name);endfunction : newvirtual function iterator get_iterator();queue_iterator it_q = queue_iterator::type_id::create("iteratora");return it_q;endfunction : get_iteratorfunction void add(base_item _item);item_q.push_back(_item);endfunction : addendclass : data_container

模拟测试代码如下:

data_container data_cont;
base_item      item;
base_item      item1 = base_item::type_id::create("item1");
base_item      item2 = base_item::type_id::create("item2");
base_item      item3 = base_item::type_id::create("item3");data_cont = data_container::type_id::create("data_cont");
data_cont.add(item1);
data_cont.add(item2);
data_cont.add(item3);for (iterator it = data_cont.get_iterator(); it.has_next(); ) beginitem = it.next();item.re_generate(1);
endfor (iterator it = data_cont.get_iterator(); it.has_next(); ) beginitem = it.next();item.re_generate(0);
end

输出仿真日志如下:

 | item1 No ECC| item2 No ECC| item3 No ECC| item1 Has ECC| item2 Has ECC| item3 Has ECC

从仿真结果可以看出,添加到container中的三个base_item,在第一次迭代中没有打开ECC,所以都打印出“No ECC”字符串,在第二次迭代中打开了ECC,所以都打印出“Has ECC”字符串。

http://www.lryc.cn/news/362859.html

相关文章:

  • imx6ull - 制作烧录SD卡
  • 使用chatgpt api快速分析pdf
  • Vue:状态管理pinia
  • 【Android Studio】导入import android.support.v7.app.AppcompatActivity;时报错
  • 汽车区域控制器技术分析
  • myEclipse新手使用教程
  • 【WPF编程宝典】第6讲:资源
  • 容器化部署Pig微服务快速开发框架
  • Windows编程:图标资源、光标资源、字符串资源、加速键资源、WM_PAINT消息、绘图
  • 【2024 短剧0元轻资产创业风口】做自己的老板,做新媒体的领路人
  • Docker安装Bitbucket
  • FlyMcu串口下载STLINK Utility
  • CSS(盒子模型,定位,浮动,扩展)
  • AIGC如何改变人类生活20240529
  • 【python】成功解决“TypeError: ‘method’ object is not subscriptable”错误的全面指南
  • 若依 Spring Security 短信,扫码登录
  • Web 网页性能优化
  • JDBC-MySQL
  • MySQL经典练习50题(上)(解析版)
  • 每日一题33:数据统计之广告效果
  • 52、有边数限制的最短路
  • Spring boot实现基于注解的aop面向切面编程
  • MySQL之查询性能优化(四)
  • 定时任务详解
  • OnlyOffice DocumentServer 8.0.1编译破解版本(¥100)
  • Android 应用权限
  • MATLAB 匿名函数
  • Java 新手入门:基础知识点一览
  • 三维模型轻量化工具:手工模型、BIM、倾斜摄影等皆可用!
  • 小程序CI/CD之自动化打包预览并钉钉通知发布进程