Consider this verilog module:
module m;
typedef enum { FALSE, TRUE } u;
//typedef u [0:1] yeah; // "yeah" works
typedef u [0:1] crash; // "crash" segfaults
endmodule
This crashes synlig in systemverilog_plugin::synlig_simplify and this crash seems to depend on the name of the second typedef.
Here is the crash in GDB:
$ gdb /cad/synlig/bin/synlig
GNU gdb (Ubuntu 12.1-0ubuntu1~22.04.2) 12.1
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /cad/synlig/bin/synlig...
(No debugging symbols found in /cad/synlig/bin/synlig)
(gdb) r
Starting program: /cad/synlig/bin/synlig
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
synlig> read_systemverilog -debug check.sv
1. Executing SystemVerilog frontend.
[INF:CM0023] Creating log file "/.../slpp_all/surelog.log".
[INF:CP0300] Compilation...
[INF:CP0303] /.../check.sv:1:1: Compile module "work@m".
[INF:CP0302] Compile class "work@mailbox".
[INF:CP0302] Compile class "work@process".
[INF:CP0302] Compile class "work@semaphore".
[INF:EL0526] Design Elaboration...
[NTE:EL0503] /.../check.sv:1:1: Top level module "work@m".
[NTE:EL0508] Nb Top level modules: 1.
[NTE:EL0509] Max instance depth: 1.
[NTE:EL0510] Nb instances: 1.
[NTE:EL0511] Nb leaf instances: 1.
[INF:UH0706] Creating UHDM Model...
[INF:UH0707] Elaborating UHDM...
[ FATAL] : 0
[ SYNTAX] : 0
[ ERROR] : 0
[WARNING] : 0
[ NOTE] : 5
Object 'work@m' of type 'design'
Object 'builtin' of type 'package'
Object 'work@m' of type 'module_inst'
Object 'crash' of type 'packed_array_typespec'
Object '' of type 'range'
Object '' of type 'constant'
Object '' of type 'constant'
Object 'u' of type 'enum_typespec'
Object 'FALSE' of type 'enum_const'
Object 'TRUE' of type 'enum_const'
Object 'u' of type 'enum_typespec'
Object 'FALSE' of type 'enum_const'
Object 'TRUE' of type 'enum_const'
Program received signal SIGSEGV, Segmentation fault.
0x00005555577b4200 in systemverilog_plugin::synlig_simplify(Yosys::AST::AstNode*, bool, bool, bool, int, int, bool, bool) ()
(gdb)
I didn't manage to build synlig with debug symbols yet.
If you need more info, please let me know.
Consider this verilog module:
This crashes synlig in
systemverilog_plugin::synlig_simplifyand this crash seems to depend on the name of the second typedef.Here is the crash in GDB:
I didn't manage to build synlig with debug symbols yet.
If you need more info, please let me know.