• 设计模式在芯片验证中的应用——备忘录


    1. 前言

    软件设计模式定义了一组类和它们之间的关系,它们相互作用用以解决软件开发过程中面临的常见问题。由于验证工程师所做工作的重要部分包括使用面向对象语言(如SystemVerilog)进行编码,因此许多遇到的挑战都适合应用特定的设计模式来解决。将它们应用到代码中,有助于代码的可重用性和可维护性,从而提高了整体代码质量。本文介绍备忘录(亦称: 快照、Snapshot、Memento)在验证环境中的使用,来对设计逻辑中实现的特性进行建模。

    2. 备忘录

    备忘录模式是一种行为设计模式, 允许在不暴露对象实现细节的情况下保存和恢复对象之前的状态。在软件开发环境中,它在应用程序中提供了撤销机制,促进了数据的隐藏,并且不违背封装原则。在验证环境中,它可以用来对需要“恢复的场景”进行建模。举个例子,如下图所示,比如Arm CPU运行在状态pstate1下,这时候突然来了个中断导致它切换到状态pstate2,中断可能嵌套,继续切换到状态pstate3、pstate4、pstate5等等,中断处理结束后,需要返回到之前的运行状态。因此在中断切换状态时需要保存当前的CPU状态信息,这样才能在中断处理完成后,根据历史保存的CPU状态信息切换回来。备忘录模式提供了很好的建模方式。

    备忘录模式提供了三个主要组件:

    Memento:表示要保存和恢复的内容的容器类,在上图示例中Memento类包含pstate的状态和相应的get/set方法。

    Originator:使用Memento类来保存当前的状态。它类似于这里CPU的角色。

    Caretaker:请求Originator保存状态,且它直到所有保存的状态,并且可以请求恢复到历史的某个状态。

    下图使用UML类图提供了上述三者之间的图形化关系,如何看懂UML类图大家可以自行搜索下资料。

    3. 参考代码

    CPU处理中断进入和返回状态的参考代码如下:

    1. typedef struct packed {
    2. bit [3:0] nzcv;
    3. bit [1:0] currentel;
    4. bit tco;
    5. } pstate_t;
    6. class memento extends uvm_object;
    7. `uvm_object_utils (memento)
    8. local pstate_t pstate;
    9. function new (string name = "memento");
    10. super.new(name);
    11. endfunction : new
    12. function void set_pstate(pstate_t _pstate);
    13. this.pstate = _pstate;
    14. endfunction : set_pstate
    15. function pstate_t get_pstate();
    16. return pstate;
    17. endfunction : get_pstate
    18. endclass : memento
    19. class originator extends uvm_object;
    20. `uvm_object_utils (originator)
    21. local pstate_t pstate;
    22. function new (string name = "originator");
    23. super.new(name);
    24. endfunction : new
    25. function void change();
    26. pstate = $random();
    27. endfunction : change
    28. function memento create_snapshot();
    29. memento m_memento = memento::type_id::create("m_memento");
    30. m_memento.set_pstate(pstate);
    31. `uvm_info("[snapshot pstate:]", $psprintf("nzcv:'b%b, currentel:'b%b, tco:'b%b", pstate.nzcv, pstate.currentel, pstate.tco), UVM_LOW)
    32. return m_memento;
    33. endfunction
    34. function void restore (memento _snapshot);
    35. pstate = _snapshot.get_pstate();
    36. `uvm_info("[restore pstate:]", $psprintf("nzcv:'b%b, currentel:'b%b, tco:'b%b", pstate.nzcv, pstate.currentel, pstate.tco), UVM_LOW)
    37. endfunction : restore
    38. endclass : originator
    39. class caretaker extends uvm_object;
    40. `uvm_object_utils (caretaker)
    41. local memento memento_q[$];
    42. local originator m_orig;
    43. function new (string name = "caretaker");
    44. super.new(name);
    45. endfunction : new
    46. function void set_originator(originator _m_orig);
    47. m_orig = _m_orig;
    48. endfunction : set_originator
    49. function void dosomething();
    50. memento_q.push_back(m_orig.create_snapshot);
    51. m_orig.change();
    52. endfunction : dosomething
    53. function void undo(int unsigned _index);
    54. if (_index > memento_q.size() || memento_q.size() == 0 ) $fatal;
    55. m_orig.restore(memento_q[_index]);
    56. endfunction : undo
    57. endclass : caretaker

    模拟测试代码如下:

    1. class monitor;
    2. function void test();
    3. caretaker m_caretaker = caretaker::type_id::create("m_caretaker");
    4. originator m_originator = originator::type_id::create("m_originator");
    5. m_caretaker.set_originator(m_originator);
    6. m_caretaker.dosomething(); // snapshot0
    7. m_caretaker.dosomething(); // snapshot1
    8. m_caretaker.dosomething(); // snapshot2
    9. m_caretaker.dosomething(); // snapshot3
    10. m_caretaker.undo(1);
    11. m_caretaker.dosomething(); // snapshot4
    12. m_caretaker.undo(3);
    13. endfunction : test
    14. endclass : monitor

    输出仿真结果如下:

    1. [[snapshot pstate:]] nzcv:'b0000, currentel:'b00, tco:'b0
    2. [[snapshot pstate:]] nzcv:'b0100, currentel:'b10, tco:'b0
    3. [[snapshot pstate:]] nzcv:'b0000, currentel:'b00, tco:'b1
    4. [[snapshot pstate:]] nzcv:'b0001, currentel:'b00, tco:'b1
    5. [[restore pstate:]] nzcv:'b0100, currentel:'b10, tco:'b0
    6. [[snapshot pstate:]] nzcv:'b0100, currentel:'b10, tco:'b0
    7. [[restore pstate:]] nzcv:'b0001, currentel:'b00, tco:'b1

    在提供的示例中,保存和恢复动作是由中断进入和中断退出事件触发的。在UVM中,事件由监视器(monitor)发出的,该监视器观察中断接口并使用Memento设计模式。该例子支持保存和恢复多个CPU状态。遇到中断时,caretaker的do_something()函数在开始时就把当前的pstate存储到memento里,然后进行其它的中断处理动作,相当于备份了历史状态。如果中断结束了,caretaker的undo()函数可以指定返回到哪个历史状态。

    下次给大家分享下设计模式中责任链模式(Chain of Responsibility)在芯片验证中的应用。

  • 相关阅读:
    大数据:Hive简介及核心概念
    中国石油大学(北京)-《 油气田开发方案设计》第二阶段在线作业
    git使用小结
    持续交付-Pipeline入门
    《痞子衡嵌入式半月刊》 第 56 期
    赋值b=a、浅拷贝copy.copy()、深拷贝copy.deepcopy(a)
    多实例tomcat+nginx实现负载均衡
    基于Python的招聘岗位数据分析系统的设计与实现
    django开源电子文档管理系统_Django简介、ORM、核心模块
    Python爬虫实战-批量爬取美女图片网下载图片
  • 原文地址:https://blog.csdn.net/W1Z1Q/article/details/136545030