Geza Lore
540e042221
CI: Add ability to generate patch coverage reports
2025-10-04 17:53:18 +01:00
Wilson Snyder
f09c30df35
Internals: Refector to create single V3Number::emitC. Fix some double emit issues ( #6528 ).
2025-10-04 07:23:13 -04:00
Geza Lore
a03d327e96
CI: Fix error on test failures
2025-10-03 19:58:03 +01:00
Todd Strader
defe282fe8
Fix always_ff on constant ( #6519 )
2025-10-03 13:16:12 -04:00
Geza Lore
ce0a05691b
Internals: Improve coverage flow ( #6526 )
...
See addes "Code coverage" section in docs/internals.rst
2025-10-03 17:18:24 +01:00
Geza Lore
62dbbbba85
Internals: Rename --enable-asan to --enable-dev-asan and related
2025-10-03 12:26:48 +01:00
Ryszard Rozak
2c74765246
Fix find_index methods of associative arrays ( #6525 )
...
Signed-off-by: Ryszard Rozak <rrozak@antmicro.com>
Co-authored-by: Nikolai Kumar <nkumar@mips.com>
2025-10-02 12:05:24 -04:00
Bartłomiej Chmiel
cb5c56dac4
Internals: fix assertion type dumping ( #6523 )
2025-10-02 12:03:45 -04:00
github action
0b23787d6c
Apply 'make format'
2025-10-01 20:26:28 +00:00
Geza Lore
aaa49273cf
Internals: Fix coverage exclusion markers
2025-10-01 21:22:16 +01:00
Geza Lore
e9c48cd1ce
Internals: Optimize temporary memory allocations ( #6517 )
...
This patch gets rid of over 80% of temporary dynamic memory allocations
(when a malloced node is immediately freed with no other malloc in
between). It also gets rid of over 20% of all calls to malloc.
It's worth ~3% average verilation speed up with tcmalloc, and more
without tcmalloc.
2025-10-01 15:01:30 +01:00
Geza Lore
435e1149d5
Internals: Remove dupliacte netSig parse rules
2025-10-01 10:46:55 +01:00
Geza Lore
4d518873d0
Fix stray net delay in parser
...
Fixes #6500
2025-10-01 10:19:39 +01:00
Wilson Snyder
caca1fcef0
Internals: Change order of V3Number constructor args to follow V3Const. No functional change intended.
2025-09-30 22:04:24 -04:00
Wilson Snyder
8efc9d6219
Fix configure misdetecting C++14 ( #6488 ) ( #6515 ).
2025-09-30 16:57:33 -04:00
Szymon Gizler
e21c4fbbb5
Fix .vlt public_flat* and others to support long identifier names ( #6516 )
2025-09-30 16:55:11 -04:00
Geza Lore
b902e4bcf5
Reduce memory use of statistic collection ( #6513 )
2025-09-30 07:06:57 -04:00
Wilson Snyder
c5f3192588
Change default `--expand-limit` to 256 ( #3419 ). ( #6489 )
2025-09-30 06:53:10 -04:00
Geza Lore
e04f51ebd2
Internals: Change AstAssignVarScope into AstAliasScope ( #6280 ) ( #6512 )
...
Rename and make it derive from AstNode instead of AstNodeAssign.
Small step towards #6280 . No functional change.
2025-09-30 06:40:17 +01:00
Geza Lore
283810cbf7
Internals: Make AstNodeBlock an AstNodeStmt ( #6280 ) ( #6511 )
...
Small step towards #6280 . No functional change.
2025-09-30 06:39:51 +01:00
Wilson Snyder
0640ddba80
Commentary: Changes update
2025-09-29 21:11:29 -04:00
Wilson Snyder
0865bee500
Commentary: Fix html build ( #6502 )
2025-09-29 21:11:22 -04:00
Geza Lore
202a53f4f6
Internals: Parse ++/-- in statement position as AstStmtExpr ( #6280 ) ( #6510 )
...
Small step towards #6280 . No functional change.
2025-09-29 21:01:40 +02:00
Ryszard Rozak
09518ee207
Support aliases with more operands ( #6501 )
2025-09-29 13:23:51 -04:00
Geza Lore
5cd8bd0356
Remove use of VL_INLINE_OPT macro ( #6507 )
2025-09-29 18:07:36 +01:00
Geza Lore
5247e40659
CI: Add 60 minute timeout to RTLMeter compile and run steps ( #6506 )
...
The default timeout for a job in GitHub Actions is 6 hours, which is
both too long, but more importantly, when reached the job is 'cancelled'
instead of 'failed'. Use the new `--timeout` option on `rtlmeter run`
instead to add a 60 minute timeout to compile and execute steps. (This
is ~3x longer than recent worst runs in the CI)
2025-09-29 17:37:06 +01:00
Geza Lore
603f4c615a
Improve Loop unrolling ( #6480 ) ( #6493 )
...
This patch implements #6480 . All loop statements are represented using
AstLoop and AstLoopTest.
This necessitates rework of the loop unroller to handle loops of
arbitrary form. To enable this, I have split the old unroller used for
'generate for' statements and moved it into V3Param, and subsequently
rewrote V3Unroll to handle the new representation. V3Unroll can now
unroll more complex loops, including with loop conditions containing
multiple variable references or inlined functions.
Handling the more generic code also requires some restrictions. If a
loop contains any of the following, it cannot be unrolled:
- A timing control that might suspend the loop
- A non-inlined call to a non-pure function
These constructs can change the values of variables in the loop, so are
generally not safe to unroll if they are present. (We could still unroll
if all the variables needed for unrolling are automatic, however we
don't do that right now.)
These restrictions seem ok in the benchmark suite, where the new
unroller can generally unroll many more loops than before.
2025-09-29 15:25:25 +01:00
Geza Lore
5c72b45975
Internals: Clean up V3Branch ( #6505 )
...
No functional change
2025-09-29 14:51:37 +01:00
Igor Zaworski
83f4db956b
Fix side effects when using select ( #6460 )
2025-09-29 08:20:54 -04:00
Wilson Snyder
bdae48f6ae
Optimize duplicate 'if' and '?:' conditions ( #3807 ) ( #6495 )
2025-09-29 08:18:54 -04:00
Krzysztof Bieganski
7e854a9e63
Internals: Simplify SystemC-related timing code ( #6503 )
2025-09-29 07:12:35 -04:00
Geza Lore
98786e609a
CI: Fix write permissions in format job
...
Fixes #6496
2025-09-29 07:49:54 +01:00
Wilson Snyder
5a5c38e478
Format
2025-09-28 21:26:21 -04:00
Wilson Snyder
3b049ab9ee
Tests: Add t_lint_always_comb_automatic ( #2862 )
2025-09-28 21:23:15 -04:00
Wilson Snyder
21b42c4463
Fix LATCH warning with CASEINCOMPLETE ( #3301 ).
2025-09-28 21:13:42 -04:00
Wilson Snyder
ca0a679413
Format
2025-09-27 20:59:44 -04:00
Wilson Snyder
a7e6efb4c0
Internals: Some prep from branch towards multitrace ( #5813 prep)
2025-09-27 20:54:26 -04:00
Wilson Snyder
8c7c6c594a
Internals: Rename VStringSet/VStringList. No functional change.
2025-09-27 20:51:37 -04:00
Wilson Snyder
7ef3b808ea
Fix false BLKSEQ on non-edged sensitivity list ( #6492 ).
2025-09-27 20:50:32 -04:00
Wilson Snyder
3b623dc12e
Internals: Refactor to create VCMethod ( #3715 ). No functional change intended.
2025-09-27 08:22:17 -04:00
Wilson Snyder
89cd5417ef
Internals: Refactor to create V3AstAttr.h ( #6491 ). No functional change intended.
2025-09-27 08:19:57 -04:00
Wilson Snyder
b3350a4f3b
Add error on `virtual new` ( #6486 ).
2025-09-26 21:23:40 -04:00
Wilson Snyder
1761622e14
Fix unused parameterized class causing internal error ( #4013 ).
2025-09-26 20:50:47 -04:00
Wilson Snyder
ebee20c47d
Commentary: Changes update
2025-09-26 20:49:27 -04:00
Ryszard Rozak
500312c050
Support for simple alias statements ( #6339 )
2025-09-26 15:19:48 +02:00
Wilson Snyder
4ad1dde723
Internals: Emit newlines for AstCStmt automatically. No functional change intended.
2025-09-26 08:25:47 -04:00
Wilson Snyder
62880c125e
Fix configure misdetecting C++14 ( #6488 ).
2025-09-26 08:24:34 -04:00
Wilson Snyder
21dbdbf69d
Tests: Auto-skip when not in root repo
2025-09-25 21:08:24 -04:00
Wilson Snyder
269476df6e
Add FUNCTIMCTL now as a named error, so can disable ( #6385 ).
2025-09-25 19:19:31 -04:00
Wilson Snyder
87224db145
Test: Update t_interface_parent_scope ( #1623 )
2025-09-25 10:50:32 -04:00