Jump to content

SystemVerilog & SystemC Reporting verbosity


c4brian

Recommended Posts

I have a SV UVM environment with a SystemC model included.

 

I know that SystemC has a UVM style reporting feature, but I don't see any verbosity attached to it.  E.g. SC_REPORT_INFO(MSGID,""); <--- wheres the verbosity?

 

I would like to, from the command line of my simulator, change the UVM verbosity level, and have it filter messages not only in my SV files, but also the SystemC files as well.

 

Thoughts?

 

 

Link to comment
Share on other sites

Have a look to clause 8.3.2 "Class definition" (of sc_report_handler) of IEEE Std 1666-2011 to find the different standardized macros for reporting with different severities:

  • SC_REPORT_INFO(msg_type, msg)
  • SC_REPORT_WARNING(msg_type, msg)
  • SC_REPORT_ERROR(msg_type, msg)
  • SC_REPORT_FATAL(msg_type, msg)

and the by Alain mentioned SC_REPORT_INFO_VERB(msg_type, msg, verbosity). I admit that this information is rather well hidden in the SystemC LRM.

Link to comment
Share on other sites

Scratch what I said about the SystemC automatically picking up the verbosity setting from my UVM environment.

cout << "verbosity=" <<dec<< sc_report_handler::get_verbosity_level() << endl;

reveals the default setting of 200. 

sc_report_handler::set_verbosity_level(SC_DEBUG);

This command successfully changed the verbosity and filtering works.

Now the challenge is talking with tool vendor to learn hopefully how to affect the SC verbosity from SV world.

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...