张强UVM debug

      这种错误往往就是你的命令输错了,比如你实例化的句柄是tr,你输成了tf,最快的办法就是将给出的提示(一般会用双引号提示出来)进行搜索,你会发现很低级的错误,一般错误报告里面会告诉你哪些行错了

这个错误就是相应的信号找不到了,需要修改 

某个信号找不到了,需要去追这个信号是否存在或者路劲是否更改 

  1.  
    the object at dereference depth 0 is being used before it was constructed allocated.
    please make sure that the object is allocated before using it

    原因是因为对应的某个属性或者objec没有new,在top_tb.sv里面如果存在以下代码需要注释掉

    initial begin
       my_driver drv;
       drv = new("drv", null);
       drv.main_phase(null);
       $finish();
    end

     

  2. cross-module reference resolution error
  3.  

 

你可能感兴趣的:(张强UVM debug)