Jump to content

include_coverage not located message


Recommended Posts

I am getting this message:

include_coverage not located
  did you mean recording_detail?

From ral.build(); in this code:

...
  virtual function void build_phase(uvm_phase phase);
    super.build_phase(phase);
    if (ral == null)
    begin
      ral = ral_sys_dut::type_id::create("ral_sys_dut",this);
      ral.build();
      ral.lock_model();
    end
  endfunction

I don't want coverage at this point. How do I disable this message?

I have use the Synopsys ralgen program with the -uvm switch to generate my register model.

Link to comment
Share on other sites

This message comes from the uvm_spell_check and I have to say it's a bug that this uses $display() rather than uvm_*_report.

Most likely some component is trying to lookup "include_coverage" in the resource_db and failing.

You can do set_config_int( "*", "include_coverage", 0 ) and probably get rid of the error.

Link to comment
Share on other sites

  • 10 years later...
On 9/14/2011 at 9:17 AM, loki said:

I am getting this message:

 

include_coverage not located
  did you mean recording_detail?

From ral.build(); in this code:

 

...
  virtual function void build_phase(uvm_phase phase);
    super.build_phase(phase);
    if (ral == null)
    begin
      ral = ral_sys_dut::type_id::create("ral_sys_dut",this);
      ral.build();
      ral.lock_model();
    end
  endfunction

I don't want coverage at this point. How do I disable this message?

I have use the Synopsys ralgen program with the -uvm switch to generate my register model.

Same Issue with one reg model . But the other works fine . 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...