I am working on a project to facilitate verilog programming by using perl scripting language. Now I want to write a script to scan a top verilog file, and then generate the hierarchy list for the moudle, which suggests that I need to extract the module instantiation statement from the verilog file, here is the problem:

How to write a regular expression to match the module instantiation in a verilog file, since we need to know the submodule names of the top module file.

link|improve this question
3  
Have you searched? – TLP Jan 30 at 15:54
feedback

1 Answer

up vote 7 down vote accepted

The SYNOPSYS of Verilog::Netlist shows how to read in a Verilog file and find modules throughout the hierarchy. Although you could use regular expressions in some limited cases, it would be worthwhile to use this CPAN parser module in the long run.

Here is some example code I posted on PerlMonks a while back: verilog perl usage (Verilog::Netlist)

The vhier script which is part of the Verilog-Perl distribution is also handy.

link|improve this answer
Really thanks, I do use the CPAN to find some approprate module for use, but I could not successfully install them (some thing like Verilog::Language) under window environment by using the ActiveState Perl. Thanks! – user1178396 Jan 31 at 2:34
+1 for the link of nice demonstrations of verilog-perl on perlmonks to start off. – e19293001 Jan 31 at 4:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.