semify-eda / fstdumper

Verilog VPI module to dump FST (Fast Signal Trace) databases
GNU General Public License v3.0
15 stars 2 forks source link

Check support for Synopsys VCS #2

Open mole99 opened 3 years ago

mole99 commented 3 years ago

Try out the fstdumper on Synopsys VCS.

oscargus commented 1 year ago

I have limited knowledge of what I am doing, but was trying this out on VCS (which I am not really used to). Anyway, for what it is worth, this is as far as I got (full traceback hidden below, but I think this is the relevant part):

Warning-[VPI-CT-NS] VPI function is not supported
  The VPI function 'vpi_get_vlog_info' is not supported in the compiler.
  Please fix the code being referred to by the '-load' compile option.

Command line: vcs -sverilog -full64 +vpi testbench/div_int.sv testbench/div_int_tb.sv -load fstdumper.so

Full traceback ``` Warning-[VPI-CT-NS] VPI function is not supported The VPI function 'vpi_get_vlog_info' is not supported in the compiler. Please fix the code being referred to by the '-load' compile option. Got SIGSEGV An unexpected termination has occurred in /sw/synopsys/VCS/S-2021.09/linux64/bin/vcs1 due to a signal: Segmentation fault Hostname lnx00073.ad.liu.se During Argument processing Argument="-load" During setup for compilation Command line: /sw/synopsys/VCS/S-2021.09/linux64/bin/vcs1 -Mcc=gcc -Mcplusplus=g++ -Masflags= "-Mcfl= -pipe -fPIC -O -I/sw/synopsys/VCS/S-2021.09/include " -Mxllcflags= "-Mxcflags= -pipe -fPIC -I/sw/synopsys/VCS/S-2021.09/include" "-Mldflags= -rdynamic " -Mout=simv -Mamsrun= -Mvcsaceobjs= "-Mobjects= /sw/synopsys/VCS/S-2021.09/linux64/lib/libvirsim.so /sw/synopsys/VCS/S-2021.09/linux64/lib/liberrorinf.so /sw/synopsys/VCS/S-2021.09/linux64/lib/libsnpsmalloc.so /sw/synopsys/VCS/S-2021.09/linux64/lib/libvfs.so " -Mexternalobj= -Msaverestoreobj=/sw/synopsys/VCS/S-2021.09/linux64/lib/vcs_save_restore_new.o -Mcrt0= -Mcrtn= -Mcsrc= "-Msyslibs=-ldl " -full64 -load fstdumper.so -picarchive -sverilog +vpi -gen_obj testbench/div_int.sv testbench/div_int_tb.sv --- Stack trace follows: BFD: warning: /lib64/libdl.so.2: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/libpthread.so.0: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/libutil.so.1: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/libelf.so.1: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/librt.so.1: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/libm.so.6: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/libc.so.6: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/ld-linux-x86-64.so.2: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 BFD: warning: /lib64/libz.so.1: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000002 [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". warning: Cannot parse .gnu_debugdata section; LZMA support was disabled at compile time warning: Cannot parse .gnu_debugdata section; LZMA support was disabled at compile time warning: Cannot parse .gnu_debugdata section; LZMA support was disabled at compile time warning: Cannot parse .gnu_debugdata section; LZMA support was disabled at compile time 0x0000155553cb25db in waitpid () from /lib64/libc.so.6 #0 0x0000155553cb25db in waitpid () from /lib64/libc.so.6 #1 0x0000155553c14ce7 in do_system () from /lib64/libc.so.6 #2 0x00001555554b7309 in SNPSle_4f1eca636f186904 () from /sw/synopsys/VCS/S-2021.09/linux64/bin/../lib/libpreload.so #3 0x000000000955fbad in tracker::StackAnnotator::getGdbOutput(char const*, char const*, char const*, char const*) () #4 0x000000000956016f in tracker::StackAnnotator::dumpStackByGdb(char const*, char const*) () #5 0x0000000009561664 in tracker::StackAnnotator::dumpProcessStack(unsigned int, char const*, char const*) () #6 0x0000000009553312 in ?? () #7 0x00000000080a33d7 in stackTraceHandler () #8 0x00000000080a2717 in SigHandler () #9 0x0000000009165acd in ?? () #10 #11 0x0000155552d319a4 in sys_fst_register () from fstdumper.so #12 0x0000000005b8c5f0 in DoFlags () #13 0x0000000005b9fb25 in ?? () #14 0x0000000005bd95eb in DoArguments () #15 0x0000000005be80da in ?? () #16 0x0000000005be9a13 in c_main () #17 0x00000000023a932b in main () Process VmPeak: 250992 kb, VmSize: 250956 kb System Free Memory: 4169512 kb, System Free Swap: 316867420 kb Completed context dump phase data CPU time: 1.740 seconds to compile ```
mole99 commented 1 year ago

Thanks for giving fstdumper a try!

It seems that VCS does not support vpi_get_vlog_info. Fortunately for us, this function is not really necessary for fstdumper to work, as it is only used to get command line args to decide whether to optimize for space or speed.

I have updated the main branch to exclude this feature when EXTENDED_ARGS is not defined. Could you pull the changes and give it another try?

oscargus commented 1 year ago

Thanks! I got it to work, but no signal changes were saved, so similar behavior as with ModelSim(?).

I added a PR with the Makefile rule (and updated the vsim one as it used a deprecated switch).

mole99 commented 1 year ago

Unfortunate to hear that no signal changes were saved. But maybe this gives us a chance to debug this problem.

I might find some time during next week to add debug statements to the VPI callbacks so we can see which ones are being called. Currently I don't have access to VCS, so if you could rerun fstdumper after the debug statements are added, that would be very helpful!

mole99 commented 1 year ago

I have now added the debug output. Just pull the changes and run as normal. Maybe then we will see what is wrong.

This is the output for iverilog, yours should look similar - or not ;)

Icarus Verilog debug output ``` > make simulation-iverilog src/fastlz.c src/fstapi.c src/libvpi.c src/lz4.c src/stringheap.c src/sys_fst.c src/sys_priv.c src/vcd_priv.c src/vpi_user.c src/nexus.cc obj/fastlz.o obj/fstapi.o obj/libvpi.o obj/lz4.o obj/stringheap.o obj/sys_fst.o obj/sys_priv.o obj/vcd_priv.o obj/vpi_user.o obj/nexus.o Compiling fastlz.c cc -c -o obj/fastlz.o src/fastlz.c -I src/config -fPIC -O2 -DDEBUG Compiling fstapi.c cc -c -o obj/fstapi.o src/fstapi.c -I src/config -fPIC -O2 -DDEBUG Compiling libvpi.c cc -c -o obj/libvpi.o src/libvpi.c -I src/config -fPIC -O2 -DDEBUG Compiling lz4.c cc -c -o obj/lz4.o src/lz4.c -I src/config -fPIC -O2 -DDEBUG Compiling stringheap.c cc -c -o obj/stringheap.o src/stringheap.c -I src/config -fPIC -O2 -DDEBUG Compiling sys_fst.c cc -c -o obj/sys_fst.o src/sys_fst.c -I src/config -fPIC -O2 -DDEBUG Compiling sys_priv.c cc -c -o obj/sys_priv.o src/sys_priv.c -I src/config -fPIC -O2 -DDEBUG Compiling vcd_priv.c cc -c -o obj/vcd_priv.o src/vcd_priv.c -I src/config -fPIC -O2 -DDEBUG Compiling nexus.cc g++ -c -o obj/nexus.o src/nexus.cc -I src/config -fPIC -O2 -DDEBUG cc -o fstdumper.so obj/fastlz.o obj/fstapi.o obj/libvpi.o obj/lz4.o obj/stringheap.o obj/sys_fst.o obj/sys_priv.o obj/vcd_priv.o obj/vpi_user.o obj/nexus.o -I src/config -fPIC -O2 -DDEBUG -lz -shared vvp -M . -mfstdumper.so Vtop.vvp src/sys_fst.c(1039) : sys_fst_register called src/sys_fst.c(496) : sys_dumpfile_calltf $fstDumpfile src/sys_fst.c(519) : path = div_int_tb.fst src/sys_fst.c(531) : sys_dumpfile_calltf $fstDumpfile done src/sys_fst.c(928) : sys_dumpvars_calltf $fstDumpvars src/sys_fst.c(436) : open_dumpfile $fstDumpvars FST info: dumpfile div_int_tb.fst opened for output. src/sys_fst.c(491) : open_dumpfile $fstDumpvars done src/sys_fst.c(309) : install_dumpvars_callback src/sys_fst.c(337) : install_dumpvars_callback done src/sys_fst.c(959) : depth = 10000 src/sys_fst.c(975) : dumping item div_int_tb src/sys_fst.c(877) : draw_scope div_int_tb div_int_tb src/sys_fst.c(1016) : scanning item div_int_tb with depth = 10000 src/sys_fst.c(573) : scan_item 10000 div_int_tb 0 src/sys_fst.c(573) : scan_item 9999 div_int_tb.valid 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.valid 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.r 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.r 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.q 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.q 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.dbz 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.dbz 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.busy 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.busy 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.clk 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.clk 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.start 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.start 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.x 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.x 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.y 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.y 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.div_int_inst 0 src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.clk 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.clk 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.start 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.start 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.x 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.x 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.y 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.y 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.ac 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.ac 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.ac_next 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.ac_next 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.busy 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.busy 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.dbz 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.dbz 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.i 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.i 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.q 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.q 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.q1 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.q1 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.q1_next 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.q1_next 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.r 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.r 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.valid 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.valid 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.y1 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.y1 0 done src/sys_fst.c(872) : scan_item 9999 div_int_tb.div_int_inst 0 done src/sys_fst.c(872) : scan_item 10000 div_int_tb 0 done src/sys_fst.c(1032) : sys_dumpvars_calltf $fstDumpvars done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 1 src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 1 src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 1 src/sys_fst.c(234) : dumpvars_cb 7 src/sys_fst.c(243) : dumpvars_time 0 src/sys_fst.c(144) : vcd_checkpoint src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(151) : vcd_checkpoint done src/sys_fst.c(254) : dumpvars_cb 7 done 0: x / x = x (r = x) (V=x) (DBZ=x) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 5 src/sys_fst.c(174) : vcd_cur_time 0 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 10 src/sys_fst.c(174) : vcd_cur_time 5 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 15 src/sys_fst.c(174) : vcd_cur_time 10 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 20 src/sys_fst.c(174) : vcd_cur_time 15 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 25 src/sys_fst.c(174) : vcd_cur_time 20 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 30 src/sys_fst.c(174) : vcd_cur_time 25 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 35 src/sys_fst.c(174) : vcd_cur_time 30 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 40 src/sys_fst.c(174) : vcd_cur_time 35 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 45 src/sys_fst.c(174) : vcd_cur_time 40 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 50 src/sys_fst.c(174) : vcd_cur_time 45 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 55 src/sys_fst.c(174) : vcd_cur_time 50 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 60 src/sys_fst.c(174) : vcd_cur_time 55 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 65 src/sys_fst.c(174) : vcd_cur_time 60 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 70 src/sys_fst.c(174) : vcd_cur_time 65 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 75 src/sys_fst.c(174) : vcd_cur_time 70 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 80 src/sys_fst.c(174) : vcd_cur_time 75 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 85 src/sys_fst.c(174) : vcd_cur_time 80 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 90 src/sys_fst.c(174) : vcd_cur_time 85 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 95 src/sys_fst.c(174) : vcd_cur_time 90 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc830 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc830 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc4a0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc4a0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc900 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc900 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc570 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc570 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcc40 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcc40 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43dbdb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43dbdb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd1f0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd1f0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done 100: 0 / 2 = x (r = x) (V=0) (DBZ=0) src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 100 src/sys_fst.c(174) : vcd_cur_time 95 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 105 src/sys_fst.c(174) : vcd_cur_time 100 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 110 src/sys_fst.c(174) : vcd_cur_time 105 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 115 src/sys_fst.c(174) : vcd_cur_time 110 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 120 src/sys_fst.c(174) : vcd_cur_time 115 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 125 src/sys_fst.c(174) : vcd_cur_time 120 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 130 src/sys_fst.c(174) : vcd_cur_time 125 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 135 src/sys_fst.c(174) : vcd_cur_time 130 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcde0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcde0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43df720 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43df720 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd050 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd050 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43b82d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43b82d0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 140 src/sys_fst.c(174) : vcd_cur_time 135 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done 140: 0 / 2 = 0 (r = 0) (V=1) (DBZ=0) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 145 src/sys_fst.c(174) : vcd_cur_time 140 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 150 src/sys_fst.c(174) : vcd_cur_time 145 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 155 src/sys_fst.c(174) : vcd_cur_time 150 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc830 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc830 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc4a0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc4a0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc900 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc900 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc570 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc570 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcc40 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcc40 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43dbdb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43dbdb0 done 160: 2 / 0 = 0 (r = 0) (V=0) (DBZ=1) src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 160 src/sys_fst.c(174) : vcd_cur_time 155 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 165 src/sys_fst.c(174) : vcd_cur_time 160 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 170 src/sys_fst.c(174) : vcd_cur_time 165 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 175 src/sys_fst.c(174) : vcd_cur_time 170 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 180 src/sys_fst.c(174) : vcd_cur_time 175 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 185 src/sys_fst.c(174) : vcd_cur_time 180 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 190 src/sys_fst.c(174) : vcd_cur_time 185 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 195 src/sys_fst.c(174) : vcd_cur_time 190 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 200 src/sys_fst.c(174) : vcd_cur_time 195 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 205 src/sys_fst.c(174) : vcd_cur_time 200 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 210 src/sys_fst.c(174) : vcd_cur_time 205 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 215 src/sys_fst.c(174) : vcd_cur_time 210 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc830 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc830 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc4a0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc4a0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc900 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc900 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc570 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc570 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcc40 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcc40 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43dbdb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43dbdb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done 220: 7 / 2 = 0 (r = 0) (V=0) (DBZ=0) src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 220 src/sys_fst.c(174) : vcd_cur_time 215 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 225 src/sys_fst.c(174) : vcd_cur_time 220 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 230 src/sys_fst.c(174) : vcd_cur_time 225 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 235 src/sys_fst.c(174) : vcd_cur_time 230 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 240 src/sys_fst.c(174) : vcd_cur_time 235 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 245 src/sys_fst.c(174) : vcd_cur_time 240 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 250 src/sys_fst.c(174) : vcd_cur_time 245 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 255 src/sys_fst.c(174) : vcd_cur_time 250 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcde0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcde0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43df720 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43df720 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd050 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd050 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43b82d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43b82d0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 260 src/sys_fst.c(174) : vcd_cur_time 255 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done 260: 7 / 2 = 3 (r = 1) (V=1) (DBZ=0) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 265 src/sys_fst.c(174) : vcd_cur_time 260 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 270 src/sys_fst.c(174) : vcd_cur_time 265 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 275 src/sys_fst.c(174) : vcd_cur_time 270 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc830 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc830 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc4a0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc4a0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc900 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc900 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc570 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc570 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd1f0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd1f0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done 280: 15 / 5 = 3 (r = 1) (V=0) (DBZ=0) src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 280 src/sys_fst.c(174) : vcd_cur_time 275 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 285 src/sys_fst.c(174) : vcd_cur_time 280 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 290 src/sys_fst.c(174) : vcd_cur_time 285 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 295 src/sys_fst.c(174) : vcd_cur_time 290 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 300 src/sys_fst.c(174) : vcd_cur_time 295 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 305 src/sys_fst.c(174) : vcd_cur_time 300 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 310 src/sys_fst.c(174) : vcd_cur_time 305 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 315 src/sys_fst.c(174) : vcd_cur_time 310 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd050 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd050 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43b82d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43b82d0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 320 src/sys_fst.c(174) : vcd_cur_time 315 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done 320: 15 / 5 = 3 (r = 0) (V=1) (DBZ=0) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 325 src/sys_fst.c(174) : vcd_cur_time 320 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 330 src/sys_fst.c(174) : vcd_cur_time 325 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 335 src/sys_fst.c(174) : vcd_cur_time 330 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc830 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc830 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc4a0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc4a0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc900 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc900 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc570 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc570 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd1f0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd1f0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done 340: 1 / 1 = 3 (r = 0) (V=0) (DBZ=0) src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 340 src/sys_fst.c(174) : vcd_cur_time 335 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 345 src/sys_fst.c(174) : vcd_cur_time 340 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 350 src/sys_fst.c(174) : vcd_cur_time 345 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 355 src/sys_fst.c(174) : vcd_cur_time 350 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 360 src/sys_fst.c(174) : vcd_cur_time 355 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 365 src/sys_fst.c(174) : vcd_cur_time 360 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bceb0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bceb0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 370 src/sys_fst.c(174) : vcd_cur_time 365 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 375 src/sys_fst.c(174) : vcd_cur_time 370 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcde0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcde0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43df720 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43df720 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 380 src/sys_fst.c(174) : vcd_cur_time 375 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done 380: 1 / 1 = 1 (r = 0) (V=1) (DBZ=0) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 385 src/sys_fst.c(174) : vcd_cur_time 380 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 390 src/sys_fst.c(174) : vcd_cur_time 385 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 395 src/sys_fst.c(174) : vcd_cur_time 390 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc830 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc830 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc4a0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc4a0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc900 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc900 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc570 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc570 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd1f0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd1f0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcf80 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcf80 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done 400: 8 / 9 = 1 (r = 0) (V=0) (DBZ=0) src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 400 src/sys_fst.c(174) : vcd_cur_time 395 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 405 src/sys_fst.c(174) : vcd_cur_time 400 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc760 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc760 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc3d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc3d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 410 src/sys_fst.c(174) : vcd_cur_time 405 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 415 src/sys_fst.c(174) : vcd_cur_time 410 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 420 src/sys_fst.c(174) : vcd_cur_time 415 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 425 src/sys_fst.c(174) : vcd_cur_time 420 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcd10 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcd10 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc9d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc9d0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcaa0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcaa0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 430 src/sys_fst.c(174) : vcd_cur_time 425 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 435 src/sys_fst.c(174) : vcd_cur_time 430 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcb70 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcb70 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43be4e0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43be4e0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd120 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd120 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43cec00 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43cec00 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bcde0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bcde0 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43df720 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43df720 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bd050 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bd050 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43b82d0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43b82d0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 440 src/sys_fst.c(174) : vcd_cur_time 435 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done 440: 8 / 9 = 0 (r = 8) (V=1) (DBZ=0) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 445 src/sys_fst.c(174) : vcd_cur_time 440 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 450 src/sys_fst.c(174) : vcd_cur_time 445 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 455 src/sys_fst.c(174) : vcd_cur_time 450 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done testbench/div_int_tb.sv:62: $finish called at 460 (1s) src/sys_fst.c(195) : variable_cb_1 0x55f9c43bc690 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(218) : register variable_cb_2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43bc690 done src/sys_fst.c(195) : variable_cb_1 0x55f9c43ceab0 src/sys_fst.c(134) : dump_header_pending 2 src/sys_fst.c(227) : variable_cb_1 0x55f9c43ceab0 done src/sys_fst.c(168) : variable_cb_2 src/sys_fst.c(173) : now 460 src/sys_fst.c(174) : vcd_cur_time 455 src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(188) : variable_cb_2 done src/sys_fst.c(261) : finish_cb 12 0x7f447877a460 src/sys_fst.c(281) : dumpvars_time 460 src/sys_fst.c(302) : finish_cb 12 0x7f447877a460 done ```
oscargus commented 1 year ago
VCS debug output ``` src/sys_fst.c(1039) : sys_fst_register called src/sys_fst.c(496) : sys_dumpfile_calltf $fstDumpfile src/sys_fst.c(519) : path = div_int_tb.fst src/sys_fst.c(531) : sys_dumpfile_calltf $fstDumpfile done src/sys_fst.c(928) : sys_dumpvars_calltf $fstDumpvars src/sys_fst.c(436) : open_dumpfile $fstDumpvars FST info: dumpfile div_int_tb.fst opened for output. src/sys_fst.c(491) : open_dumpfile $fstDumpvars done src/sys_fst.c(309) : install_dumpvars_callback src/sys_fst.c(337) : install_dumpvars_callback done src/sys_fst.c(959) : depth = 10000 src/sys_fst.c(975) : dumping item div_int_tb src/sys_fst.c(877) : draw_scope div_int_tb $fstDumpvars src/sys_fst.c(1016) : scanning item div_int_tb with depth = 10000 src/sys_fst.c(573) : scan_item 10000 div_int_tb 0 src/sys_fst.c(573) : scan_item 9999 div_int_tb.clk 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.clk 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.start 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.start 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.busy 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.busy 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.valid 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.valid 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.dbz 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.dbz 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.x 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.x 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.y 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.y 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.q 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.q 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.r 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9999 div_int_tb.r 0 done src/sys_fst.c(573) : scan_item 9999 div_int_tb.div_int_inst 0 src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.clk 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.clk 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.start 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.start 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.x 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.x 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.y 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.y 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.busy 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.busy 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.valid 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.valid 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.dbz 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.dbz 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.q 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.q 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.r 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.r 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.y1 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.y1 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.q1 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.q1 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.q1_next 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.q1_next 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.ac 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.ac 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.ac_next 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.ac_next 0 done src/sys_fst.c(573) : scan_item 9998 div_int_tb.div_int_inst.i 0 src/sys_fst.c(768) : register variable_cb_1 src/sys_fst.c(872) : scan_item 9998 div_int_tb.div_int_inst.i 0 done src/sys_fst.c(872) : scan_item 9999 div_int_tb.div_int_inst 0 done src/sys_fst.c(872) : scan_item 10000 div_int_tb 0 done src/sys_fst.c(1032) : sys_dumpvars_calltf $fstDumpvars done 0: x / x = x (r = x) (V=x) (DBZ=x) src/sys_fst.c(234) : dumpvars_cb 7 src/sys_fst.c(243) : dumpvars_time 0 src/sys_fst.c(144) : vcd_checkpoint src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(79) : show_this_item src/sys_fst.c(94) : show_this_item done src/sys_fst.c(151) : vcd_checkpoint done src/sys_fst.c(254) : dumpvars_cb 7 done 100: 0 / 2 = x (r = x) (V=0) (DBZ=0) 140: 0 / 2 = 0 (r = 0) (V=1) (DBZ=0) 160: 2 / 0 = 0 (r = 0) (V=0) (DBZ=1) 220: 7 / 2 = 0 (r = 0) (V=0) (DBZ=0) 260: 7 / 2 = 3 (r = 1) (V=1) (DBZ=0) 280: 15 / 5 = 3 (r = 1) (V=0) (DBZ=0) 320: 15 / 5 = 3 (r = 0) (V=1) (DBZ=0) 340: 1 / 1 = 3 (r = 0) (V=0) (DBZ=0) 380: 1 / 1 = 1 (r = 0) (V=1) (DBZ=0) 400: 8 / 9 = 1 (r = 0) (V=0) (DBZ=0) 440: 8 / 9 = 0 (r = 8) (V=1) (DBZ=0) $finish called from file "testbench/div_int_tb.sv", line 62. $finish at simulation time 460 src/sys_fst.c(261) : finish_cb 12 (nil) src/sys_fst.c(281) : dumpvars_time 460 src/sys_fst.c(302) : finish_cb 12 (nil) done ```
oscargus commented 1 year ago

Not sure how relevant it is, but for the record:

I got a segmentation fault during the build process (when running cfs_ident_exec). However, it still produces a simv that appears as if it is running OK (except for fst not dumping).

I also tried using -debug_acc+all to enable all debug features (maybe better than the current option, which I just found by googling a bit). However, behaves the same (core dump and identical output).

mole99 commented 1 year ago

The debug output is different than I would have expected. It does not even seem to call the first value change callbacks, which is strange.

Honestly, I am not sure if it makes sense to continue down this path. This version of the fstdumper was more of a proof of concept. The bulk of the code comes from Icarus Verilog and therefore honers its quirks. It does not help that almost every simulator seems to have differences in how VPI is handled. There ought to be one interface that provides safe methods that have been tested for most simulators...

Luckily, there is! Maybe you have heard of cocotb. It supports a number of open and proprietary simulators. It does this through an interface called GPI: Generic Procedural Interface. In the background, VPI, VHPI or FLI is used to communicate with the simulators. More importantly, they have figured out the quirks of the various simulators.

By targeting GPI, fstdumper could run on most simulators (or at least on most Verilog simulators if we want to register our system tasks like $fstDumpvars).

One drawback could be that fstdumper would support less features under GPI, but the most important objects are supported: GPI Library Reference.

I have created a small test to build GPI together with some code that queries some signals in the design and prints their changes: gpi-test. If this is working for you I will look into attaching fstapi to it.

GPI test output ``` make simulation-iverilog lib/gpi/GpiCbHdl.o lib/gpi/GpiCommon.o lib/vpi/VpiImpl.o lib/vpi/VpiCbHdl.o lib/gpi_log/gpi_logging.o fstdumper.o Compiling GpiCbHdl.cpp g++ -c -o lib/gpi/GpiCbHdl.o lib/gpi/GpiCbHdl.cpp -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -Wnon-virtual-dtor -Woverloaded-virtual -std=c++11 -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -Iinclude -DCOCOTBVPI_EXPORTS Compiling GpiCommon.cpp g++ -c -o lib/gpi/GpiCommon.o lib/gpi/GpiCommon.cpp -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -Wnon-virtual-dtor -Woverloaded-virtual -std=c++11 -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -Iinclude -DCOCOTBVPI_EXPORTS Compiling VpiImpl.cpp g++ -c -o lib/vpi/VpiImpl.o lib/vpi/VpiImpl.cpp -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -Wnon-virtual-dtor -Woverloaded-virtual -std=c++11 -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -Iinclude -DCOCOTBVPI_EXPORTS In file included from lib/vpi/VpiImpl.cpp:28: lib/vpi/VpiImpl.h: In function ‘int __check_vpi_error(const char*, const char*, long int)’: lib/vpi/VpiImpl.h:46:49: warning: unused parameter ‘file’ [-Wunused-parameter] 46 | static inline int __check_vpi_error(const char *file, const char *func, | ~~~~~~~~~~~~^~~~ lib/vpi/VpiImpl.h:46:67: warning: unused parameter ‘func’ [-Wunused-parameter] 46 | static inline int __check_vpi_error(const char *file, const char *func, | ~~~~~~~~~~~~^~~~ lib/vpi/VpiImpl.h:47:42: warning: unused parameter ‘line’ [-Wunused-parameter] 47 | long line) { | ~~~~~^~~~ Compiling VpiCbHdl.cpp g++ -c -o lib/vpi/VpiCbHdl.o lib/vpi/VpiCbHdl.cpp -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -Wnon-virtual-dtor -Woverloaded-virtual -std=c++11 -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -Iinclude -DCOCOTBVPI_EXPORTS In file included from lib/vpi/VpiCbHdl.cpp:34: lib/vpi/VpiImpl.h: In function ‘int __check_vpi_error(const char*, const char*, long int)’: lib/vpi/VpiImpl.h:46:49: warning: unused parameter ‘file’ [-Wunused-parameter] 46 | static inline int __check_vpi_error(const char *file, const char *func, | ~~~~~~~~~~~~^~~~ lib/vpi/VpiImpl.h:46:67: warning: unused parameter ‘func’ [-Wunused-parameter] 46 | static inline int __check_vpi_error(const char *file, const char *func, | ~~~~~~~~~~~~^~~~ lib/vpi/VpiImpl.h:47:42: warning: unused parameter ‘line’ [-Wunused-parameter] 47 | long line) { | ~~~~~^~~~ Compiling gpi_logging.cpp g++ -c -o lib/gpi_log/gpi_logging.o lib/gpi_log/gpi_logging.cpp -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -Wnon-virtual-dtor -Woverloaded-virtual -std=c++11 -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -Iinclude -DCOCOTBVPI_EXPORTS Compiling fstdumper.cpp g++ -c -o fstdumper.o fstdumper.cpp -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -Wnon-virtual-dtor -Woverloaded-virtual -std=c++11 -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -Iinclude -DCOCOTBVPI_EXPORTS cc -o libgpi.so lib/gpi/GpiCbHdl.o lib/gpi/GpiCommon.o lib/vpi/VpiImpl.o lib/vpi/VpiCbHdl.o lib/gpi_log/gpi_logging.o fstdumper.o -Wall -Wextra -Wcast-qual -Wwrite-strings -Wconversion -Wno-missing-field-initializers -fPIC -Iinclude -shared iverilog -o Vtop.vvp -s div_int_tb testbench/div_int.sv testbench/div_int_tb.sv -g2012 testbench/div_int.sv:18: sorry: constant selects in always_* processes are not currently supported (all bits will be included). vvp -M . -mlibgpi.so Vtop.vvp gpi_has_registered_impl: 1 gpi_get_simulator_product: Icarus Verilog gpi_get_simulator_version: 13.0 (devel) -.--ns INFO gpi ../gpi/GpiCommon.cpp:102 in gpi_print_registered_impl VPI registered Vtop.vvp precision: -12 root handle: div_int_tb found object: valid of type: GPI_NET -> register value change callback for net and reg found object: r of type: GPI_NET -> register value change callback for net and reg found object: q of type: GPI_NET -> register value change callback for net and reg found object: dbz of type: GPI_NET -> register value change callback for net and reg found object: busy of type: GPI_NET -> register value change callback for net and reg found object: clk of type: GPI_REGISTER -> register value change callback for net and reg found object: start of type: GPI_REGISTER -> register value change callback for net and reg found object: x of type: GPI_REGISTER -> register value change callback for net and reg found object: y of type: GPI_REGISTER -> register value change callback for net and reg found object: CLK_PERIOD of type: GPI_INTEGER found object: WIDTH of type: GPI_INTEGER found object: div_int_inst of type: GPI_MODULE Value change: clk Value: 1 Time: 0, 0 0: x / x = x (r = x) (V=x) (DBZ=x) Value change: clk Value: 0 Time: 0, 5000 Value change: clk Value: 1 Time: 0, 10000 Value change: clk Value: 0 Time: 0, 15000 Value change: clk Value: 1 Time: 0, 20000 Value change: clk Value: 0 Time: 0, 25000 Value change: clk Value: 1 Time: 0, 30000 Value change: clk Value: 0 Time: 0, 35000 Value change: clk Value: 1 Time: 0, 40000 Value change: clk Value: 0 Time: 0, 45000 Value change: clk Value: 1 Time: 0, 50000 Value change: clk Value: 0 Time: 0, 55000 Value change: clk Value: 1 Time: 0, 60000 Value change: clk Value: 0 Time: 0, 65000 Value change: clk Value: 1 Time: 0, 70000 Value change: clk Value: 0 Time: 0, 75000 Value change: clk Value: 1 Time: 0, 80000 Value change: clk Value: 0 Time: 0, 85000 Value change: clk Value: 1 Time: 0, 90000 Value change: clk Value: 0 Time: 0, 95000 Value change: x Value: 0 Time: 0, 100000 Value change: y Value: 2 Time: 0, 100000 Value change: start Value: 1 Time: 0, 100000 Value change: clk Value: 1 Time: 0, 100000 Value change: valid Value: 0 Time: 0, 100000 Value change: busy Value: 1 Time: 0, 100000 Value change: dbz Value: 0 Time: 0, 100000 100: 0 / 2 = x (r = x) (V=0) (DBZ=0) Value change: clk Value: 0 Time: 0, 105000 Value change: start Value: 0 Time: 0, 110000 Value change: clk Value: 1 Time: 0, 110000 Value change: clk Value: 0 Time: 0, 115000 Value change: clk Value: 1 Time: 0, 120000 Value change: clk Value: 0 Time: 0, 125000 Value change: clk Value: 1 Time: 0, 130000 Value change: clk Value: 0 Time: 0, 135000 Value change: clk Value: 1 Time: 0, 140000 Value change: busy Value: 0 Time: 0, 140000 Value change: valid Value: 1 Time: 0, 140000 Value change: q Value: 0 Time: 0, 140000 Value change: r Value: 0 Time: 0, 140000 140: 0 / 2 = 0 (r = 0) (V=1) (DBZ=0) Value change: clk Value: 0 Time: 0, 145000 Value change: clk Value: 1 Time: 0, 150000 Value change: clk Value: 0 Time: 0, 155000 Value change: x Value: 2 Time: 0, 160000 Value change: y Value: 0 Time: 0, 160000 Value change: start Value: 1 Time: 0, 160000 Value change: clk Value: 1 Time: 0, 160000 Value change: valid Value: 0 Time: 0, 160000 Value change: dbz Value: 1 Time: 0, 160000 160: 2 / 0 = 0 (r = 0) (V=0) (DBZ=1) Value change: clk Value: 0 Time: 0, 165000 Value change: start Value: 0 Time: 0, 170000 Value change: clk Value: 1 Time: 0, 170000 Value change: clk Value: 0 Time: 0, 175000 Value change: clk Value: 1 Time: 0, 180000 Value change: clk Value: 0 Time: 0, 185000 Value change: clk Value: 1 Time: 0, 190000 Value change: clk Value: 0 Time: 0, 195000 Value change: clk Value: 1 Time: 0, 200000 Value change: clk Value: 0 Time: 0, 205000 Value change: clk Value: 1 Time: 0, 210000 Value change: clk Value: 0 Time: 0, 215000 Value change: x Value: 7 Time: 0, 220000 Value change: y Value: 2 Time: 0, 220000 Value change: start Value: 1 Time: 0, 220000 Value change: clk Value: 1 Time: 0, 220000 Value change: busy Value: 1 Time: 0, 220000 Value change: dbz Value: 0 Time: 0, 220000 220: 7 / 2 = 0 (r = 0) (V=0) (DBZ=0) Value change: clk Value: 0 Time: 0, 225000 Value change: start Value: 0 Time: 0, 230000 Value change: clk Value: 1 Time: 0, 230000 Value change: clk Value: 0 Time: 0, 235000 Value change: clk Value: 1 Time: 0, 240000 Value change: clk Value: 0 Time: 0, 245000 Value change: clk Value: 1 Time: 0, 250000 Value change: clk Value: 0 Time: 0, 255000 Value change: clk Value: 1 Time: 0, 260000 Value change: busy Value: 0 Time: 0, 260000 Value change: valid Value: 1 Time: 0, 260000 Value change: q Value: 3 Time: 0, 260000 Value change: r Value: 1 Time: 0, 260000 260: 7 / 2 = 3 (r = 1) (V=1) (DBZ=0) Value change: clk Value: 0 Time: 0, 265000 Value change: clk Value: 1 Time: 0, 270000 Value change: clk Value: 0 Time: 0, 275000 Value change: x Value: 15 Time: 0, 280000 Value change: y Value: 5 Time: 0, 280000 Value change: start Value: 1 Time: 0, 280000 Value change: clk Value: 1 Time: 0, 280000 Value change: valid Value: 0 Time: 0, 280000 Value change: busy Value: 1 Time: 0, 280000 280: 15 / 5 = 3 (r = 1) (V=0) (DBZ=0) Value change: clk Value: 0 Time: 0, 285000 Value change: start Value: 0 Time: 0, 290000 Value change: clk Value: 1 Time: 0, 290000 Value change: clk Value: 0 Time: 0, 295000 Value change: clk Value: 1 Time: 0, 300000 Value change: clk Value: 0 Time: 0, 305000 Value change: clk Value: 1 Time: 0, 310000 Value change: clk Value: 0 Time: 0, 315000 Value change: clk Value: 1 Time: 0, 320000 Value change: busy Value: 0 Time: 0, 320000 Value change: valid Value: 1 Time: 0, 320000 Value change: r Value: 0 Time: 0, 320000 320: 15 / 5 = 3 (r = 0) (V=1) (DBZ=0) Value change: clk Value: 0 Time: 0, 325000 Value change: clk Value: 1 Time: 0, 330000 Value change: clk Value: 0 Time: 0, 335000 Value change: x Value: 1 Time: 0, 340000 Value change: y Value: 1 Time: 0, 340000 Value change: start Value: 1 Time: 0, 340000 Value change: clk Value: 1 Time: 0, 340000 Value change: valid Value: 0 Time: 0, 340000 Value change: busy Value: 1 Time: 0, 340000 340: 1 / 1 = 3 (r = 0) (V=0) (DBZ=0) Value change: clk Value: 0 Time: 0, 345000 Value change: start Value: 0 Time: 0, 350000 Value change: clk Value: 1 Time: 0, 350000 Value change: clk Value: 0 Time: 0, 355000 Value change: clk Value: 1 Time: 0, 360000 Value change: clk Value: 0 Time: 0, 365000 Value change: clk Value: 1 Time: 0, 370000 Value change: clk Value: 0 Time: 0, 375000 Value change: clk Value: 1 Time: 0, 380000 Value change: busy Value: 0 Time: 0, 380000 Value change: valid Value: 1 Time: 0, 380000 Value change: q Value: 1 Time: 0, 380000 380: 1 / 1 = 1 (r = 0) (V=1) (DBZ=0) Value change: clk Value: 0 Time: 0, 385000 Value change: clk Value: 1 Time: 0, 390000 Value change: clk Value: 0 Time: 0, 395000 Value change: x Value: 8 Time: 0, 400000 Value change: y Value: 9 Time: 0, 400000 Value change: start Value: 1 Time: 0, 400000 Value change: clk Value: 1 Time: 0, 400000 Value change: valid Value: 0 Time: 0, 400000 Value change: busy Value: 1 Time: 0, 400000 400: 8 / 9 = 1 (r = 0) (V=0) (DBZ=0) Value change: clk Value: 0 Time: 0, 405000 Value change: start Value: 0 Time: 0, 410000 Value change: clk Value: 1 Time: 0, 410000 Value change: clk Value: 0 Time: 0, 415000 Value change: clk Value: 1 Time: 0, 420000 Value change: clk Value: 0 Time: 0, 425000 Value change: clk Value: 1 Time: 0, 430000 Value change: clk Value: 0 Time: 0, 435000 Value change: clk Value: 1 Time: 0, 440000 Value change: busy Value: 0 Time: 0, 440000 Value change: valid Value: 1 Time: 0, 440000 Value change: q Value: 0 Time: 0, 440000 Value change: r Value: 8 Time: 0, 440000 440: 8 / 9 = 0 (r = 8) (V=1) (DBZ=0) Value change: clk Value: 0 Time: 0, 445000 Value change: clk Value: 1 Time: 0, 450000 Value change: clk Value: 0 Time: 0, 455000 testbench/div_int_tb.sv:67: $finish called at 460000 (1ps) Value change: clk Value: 1 Time: 0, 460000 ```
mole99 commented 11 months ago

Have you had a chance to try it out? :)

oscargus commented 11 months ago

Ahh, sorry, I missed the final sentence of that post...

I hope to be able to try it out next week once back to the office.

mole99 commented 11 months ago

Blame is on me, I should have started on a positive note ^^

Thanks! By the way, there is no hurry, because I am currently occupied with other work.