Jump to content

Scopes in systemc vcd files


thomas.haber

Recommended Posts

Usually simulator put a struture of scopes into the vcd file.


So in the viewer its much easier to get through the signals.


But SystemC does not by default.


Instead they have dots in the name.


 


$scope module SystemC $end


$var wire   32  aaa  top.irx_hsdpa_top.HSI_CLC_REG [31:0]  $end

.....

 

Is it possible to change systemCs mind ?

 

regards,

thomas

 

Link to comment
Share on other sites

Kocha,

 

Manipulate the Hierarchy of VCDs generated by ASI (OSCI) PoC SystemC Simulator

http://thawedoutnow.blogspot.jp/2013/04/manipulate-hierarchy-of-vcds-generated.html

 

this looks like a nice utility and may be useful to the SystemC community in general.
Have you considered to upload/share this in the new SystemC community uploads area?

 

Greetings from Oldenburg,
  Philipp

Link to comment
Share on other sites

Guest ytakatsukasa

Hi Philipp,

 

I wrote the program kocha introduced.

Thanks kocha for informing me.

 

The source code is available at github and it is licensed under GPL2.

I feel happy if the tool helps engineers, so I am OK to unploading it.

 

Should  uploaded data to SystemC community uploads be licensed under some specific license like that of PoC Simulator?

If so, I will consider making it dual-licensed.

 

Regards,

Yutetsu.

Link to comment
Share on other sites

Yutetsu,

 

thanks for considering to upload the tool to the SystemC community uploads.  I didn't check the licensing terms of the upload area before, but when you try to upload files there, you will be asked to confirm the following:

 

All material uploaded to the Accellera Community Uploads Area is licensed under the Apache License, Version 2.0 and may be publicly downloaded. By uploading material, you indicate your acceptance and compliance of the license.

 

As the Apache License less restrictive than the GPLv2 (but still GPLv2 compatible), it's up to you whether you want to your tool available under these terms.  Alternatively, you can eventually upload a short technical report, describing the functionaliy of the tool and add an external link to the GitHub repository.

 

Thanks,
  Philipp

Link to comment
Share on other sites

Philipp,

 

Thanks for the license information.

I will face-lift the source code and upload it under Apache License.

 

thomas,

Sorry for wandering from the original topic.

I hope the PoC simulator emit VCD with the hierarchical structure,

and it seems technically possible with some patches to the PoC simulator.

I will think about it.

 

Regards,

Yutetsu.

Link to comment
Share on other sites

I wrote a patch to achieve this topic.

I only tested with examples/sysc/pkt_switch, but it emits like followings after add some sc_trace()'s in sc_main().

The patch is available at github.

 

 

$scope module SystemC $end
$scope module signal_0 $end
$var wire    1  aac  dest0       $end
$var wire    1  aad  dest1       $end
$var wire    1  aae  dest2       $end
$var wire    1  aaf  dest3       $end
$upscope $end
$scope module signal_1 $end
$var wire    1  aai  dest0       $end
$var wire    1  aaj  dest1       $end
$var wire    1  aak  dest2       $end
$var wire    1  aal  dest3       $end
$upscope $end
$scope module signal_2 $end
$var wire    1  aao  dest0       $end
$var wire    1  aap  dest1       $end
$var wire    1  aaq  dest2       $end
$var wire    1  aar  dest3       $end
$upscope $end
$scope module signal_3 $end
$var wire    1  aau  dest0       $end
$var wire    1  aav  dest1       $end
$var wire    1  aaw  dest2       $end
$var wire    1  aax  dest3       $end
$upscope $end
$scope module signal_4 $end
$var wire    1  aba  dest0       $end
$var wire    1  abb  dest1       $end
$var wire    1  abc  dest2       $end
$var wire    1  abd  dest3       $end
$upscope $end
$scope module signal_5 $end
$var wire    1  abg  dest0       $end
$var wire    1  abh  dest1       $end
$var wire    1  abi  dest2       $end
$var wire    1  abj  dest3       $end
$upscope $end
$scope module signal_6 $end
$var wire    1  abm  dest0       $end
$var wire    1  abn  dest1       $end
$var wire    1  abo  dest2       $end
$var wire    1  abp  dest3       $end
$upscope $end
$scope module signal_7 $end
$var wire    1  abs  dest0       $end
$var wire    1  abt  dest1       $end
$var wire    1  abu  dest2       $end
$var wire    1  abv  dest3       $end
$upscope $end
$upscope $end
$enddefinitions  $end

 

Regards,

Yutetsu.

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