【发布时间】:2020-07-27 21:20:48
【问题描述】:
在我们的模型中,UVM 工厂内部覆盖了一个类,我如何找到它在哪里完成的? 我正在使用 vcs DVE / VERDI 进行调试。
谢谢,
【问题讨论】:
标签: system-verilog uvm
在我们的模型中,UVM 工厂内部覆盖了一个类,我如何找到它在哪里完成的? 我正在使用 vcs DVE / VERDI 进行调试。
谢谢,
【问题讨论】:
标签: system-verilog uvm
怎么样:
// variable to store a reference to the factory
uvm_factory factory;
// get a reference to the factory
factory = uvm_factory::get();
// print the contents of the factory
factory.print();
或全部在一行中:
uvm_factory::get().print();
【讨论】: