verilog-parser icon indicating copy to clipboard operation
verilog-parser copied to clipboard

A Flex/Bison Parser for the IEEE 1364-2001 Verilog Standard.

Results 8 verilog-parser issues
Sort by recently updated
recently updated
newest added

## Issue Description Many rule warnings (errors) that need addressing ### What should happen: No/Less Warnings ### What actually happens: Warnings ``` verilog-parser/src/verilog_parser.y:165.17-29: warning: symbol binary_number is used, but is...

## Issue Description Parse failed on Verilog file/module ### What should happen: There should be no error ### What actually happens: ``` verilog-parser$ ./build/release/src/parser ../add.v ../add.v line 21 - ERROR:...

Please delete or fill out each section as appropriate: --- ## Issue Description Current version requires BISON 3.0.4 or above (defined in CMakefiles.txt). However, it does not build under BISON...

I'm getting confised by the usage of your parser. After populating yy_verilog_source_tree using the provided functions described on https://codedocs.xyz/ben-marshall/verilog-parser/group__parser-api.html, how can I free all the memory allocated by your library?...

question

## Issue Description Getting following error ``` ../../tests/dff_udp1.v line 11 - ERROR: syntax error, unexpected CLOSE_BRACKET - ')' - Parse failed ``` File ../../tests/dff_udp1.v obtained from https://www.hdlworks.com/hdl_corner/verilog_ref/items/UserDefinedPrimitives.htm ``` cat -n...

## Issue Description When parsing large numbers of files, a `undef directive appearing as the penultimate token in a file will cause a segfault. When running with valgrind however, it...

bug

## Issue Description In the interests of getting something working quickly, the ast_hashtable structure in verilog_ast_common.h/c is implemented over the top of ast_list, and all operations take O(N) time. ###...

enhancement

This is very much a todo item. As of commit 72498fe code coverage for the current test suite is hovering just above 50%. This needs to be 95% at least....

enhancement
help wanted