Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | autoname: simple perf optimizations | Zachary Snow | 2021-06-08 | 1 | -11/+15 |
| | |||||
* | memory_map: Improve start_offset handling. | Marcelina Kościelnicka | 2021-05-31 | 1 | -35/+31 |
| | | | | Fixes #2775. | ||||
* | memory_share: Add read port merging. | Marcelina Kościelnicka | 2021-05-29 | 1 | -0/+140 |
| | | | | | This is mostly meant for wide port recognition, but may also happen to merge some ports with compatible initial/reset values (eg. 0 vs x). | ||||
* | memory_share: Improve sat-based port sharing. | Marcelina Kościelnicka | 2021-05-28 | 1 | -117/+151 |
| | |||||
* | Make a few passes auto-call Mem::narrow instead of rejecting wide ports. | Marcelina Kościelnicka | 2021-05-28 | 1 | -14/+1 |
| | | | | | | This essentially adds wide port support for free in passes that don't have a usefully better way of handling wide ports than just breaking them up to narrow ports, avoiding "please run memory_narrow" annoyance. | ||||
* | memory_share: Improve same-address merging, recognize wide write ports. | Marcelina Kościelnicka | 2021-05-27 | 1 | -204/+77 |
| | |||||
* | kernel/mem: Add sub_addr helpers. | Marcelina Kościelnicka | 2021-05-26 | 1 | -6/+2 |
| | |||||
* | mem/extract_rdff: Fix "no FF made" edge case. | Marcelina Kościelnicka | 2021-05-25 | 1 | -2/+5 |
| | | | | | | | When converting a sync transparent read port with const address to async read port, nothing at all needs to be done other than clk_enable change, and thus we have no FF cell to return. Handle this case correctly in the helper and in its users. | ||||
* | memory_bram: Reuse extract_rdff helper for make_outreg. | Marcelina Kościelnicka | 2021-05-25 | 1 | -23/+38 |
| | | | | | Also properly skip read ports with init value or reset when not making use of make_outreg. Proper support for matching those will land later. | ||||
* | opt_mem: Add reset/init value support. | Marcelina Kościelnicka | 2021-05-25 | 1 | -0/+12 |
| | |||||
* | memory_bram: Respect write port priority. | Marcelina Kościelnicka | 2021-05-25 | 1 | -0/+14 |
| | |||||
* | opt_mem_feedback: Respect write port priority. | Marcelina Kościelnicka | 2021-05-25 | 1 | -0/+15 |
| | |||||
* | Add memory_narrow pass. | Marcelina Kościelnicka | 2021-05-25 | 2 | -0/+68 |
| | |||||
* | memory_share: Add wide port support. | Marcelina Kościelnicka | 2021-05-25 | 1 | -0/+6 |
| | |||||
* | opt_mem_feedback: Add wide port support. | Marcelina Kościelnicka | 2021-05-25 | 1 | -14/+24 |
| | |||||
* | memory_map: Add wide port support. | Marcelina Kościelnicka | 2021-05-25 | 1 | -16/+17 |
| | |||||
* | sim: Add wide port support. | Marcelina Kościelnicka | 2021-05-25 | 1 | -3/+3 |
| | |||||
* | Reject wide ports in some passes that will never support them. | Marcelina Kościelnicka | 2021-05-25 | 1 | -0/+14 |
| | |||||
* | opt_mem_feedback: Rewrite feedback path finding logic. | Marcelina Kościelnicka | 2021-05-24 | 1 | -115/+130 |
| | | | | Fixes #2766. | ||||
* | opt_mem_feedback: Convert to Mem helpers. | Marcelina Kościelnicka | 2021-05-24 | 1 | -49/+28 |
| | |||||
* | memory_share: Use Mem helpers. | Marcelina Kościelnicka | 2021-05-23 | 1 | -89/+71 |
| | |||||
* | extract_rdff: Add initvals parameter. | Marcelina Kościelnicka | 2021-05-23 | 2 | -9/+15 |
| | | | | | This is not used yet, but will be needed when read port reset/initial value support lands. | ||||
* | memory_share: Split off feedback path finding as a separate pass. | Marcelina Kościelnicka | 2021-05-23 | 4 | -242/+343 |
| | | | | | memory_share is actually three passes in a trenchcoat. Split off the one that has the least in common with the other two as a separate pass. | ||||
* | Add new helper class for merging FFs into cells, use for memory_dff. | Marcelina Kościelnicka | 2021-05-23 | 1 | -237/+104 |
| | | | | Fixes #1854. | ||||
* | opt_mem: Remove write ports with const-0 EN. | Marcelina Kościelnicka | 2021-05-23 | 1 | -0/+12 |
| | | | | Fixes #2765. | ||||
* | memory_memx: Use Mem helper. | Marcelina Kościelnicka | 2021-05-22 | 1 | -42/+31 |
| | |||||
* | kernel/rtlil: Extract some helpers for checking memory cell types. | Marcelina Kościelnicka | 2021-05-22 | 5 | -24/+7 |
| | | | | | | There will soon be more (versioned) memory cells, so handle passes that only care if a cell is memory-related by a simple helper call instead of a hardcoded list. | ||||
* | memory_dff: Use Mem helper. | Marcelina Kościelnicka | 2021-05-21 | 1 | -19/+26 |
| | |||||
* | connect: Add -assert option, fix non-working sigmap. | Marcelina Kościelnicka | 2021-05-08 | 1 | -4/+24 |
| | | | | Should be useful for writing tests. | ||||
* | opt_dff: Fix NOT gates wired in reverse. | Marcelina Kościelnicka | 2021-05-04 | 1 | -2/+2 |
| | |||||
* | flatten: rewrite memid in memwr actions. | whitequark | 2021-04-09 | 1 | -0/+3 |
| | |||||
* | equiv: Suggest running async2sync or clk2fflogic where appropriate. | Marcelina Kościelnicka | 2021-03-30 | 2 | -3/+10 |
| | | | | See #2713. | ||||
* | abc9: uniquify blackboxes like whiteboxes (#2695) | Eddie Hung | 2021-03-29 | 1 | -10/+6 |
| | | | | | | | | | * abc9_ops: uniquify blackboxes too * abc9_ops: update comment * abc9_ops: allow bypass for param-less blackboxes * Add tests | ||||
* | abc9: fix SCC issues (#2694) | Eddie Hung | 2021-03-29 | 2 | -28/+52 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * xilinx: add SCC test for DSP48E1 * xilinx: Gate DSP48E1 being a whitebox behind ALLOW_WHITEBOX_DSP48E1 Have a test that checks it works through ABC9 when enabled * abc9 to break SCCs using $__ABC9_SCC_BREAKER module * Add test * abc9_ops: remove refs to (* abc9_keep *) on wires * abc9_ops: do not bypass cells in an SCC * Add myself to CODEOWNERS for abc9* * Fix compile * abc9_ops: run -prep_hier before scc * Fix tests * Remove bug reference pending fix * abc9: fix for -prep_hier -dff * xaiger: restore PI handling * abc9_ops: -prep_xaiger sigmap * abc9_ops: -mark_scc -> -break_scc * abc9: eliminate hard-coded abc9.box from tests Also tidy up * Address review | ||||
* | Clarify bugpoint documentation regarding output | Iris Johnson | 2021-03-24 | 1 | -0/+2 |
| | | | | | | | Bugpoint's current documentation does specify that the result of a run is stored as the current design, however it's easy to skim over what that means in practice. Add a documentation comment to explain specifically that an after bugpoint `write_xyz` pass is required to save the reduced design. | ||||
* | bugpoint: add runner option | Zachary Snow | 2021-03-17 | 1 | -6/+17 |
| | |||||
* | blackbox: Include whiteboxed modules | gatecat | 2021-03-17 | 1 | -1/+2 |
| | | | | Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | proc_arst: Add special-casing of clock signal in conditionals. | Marcelina Kościelnicka | 2021-03-15 | 1 | -23/+51 |
| | | | | | | | | | | | | | | | | | The already-existing special case for conditionals on clock has been remade as follows: - now triggered for the last remaining edge trigger after all others have been converted to async reset, not just when there is only one sync rule in the first place - does not require all contained assignments to be constant, as opposed to a reset conditional — merely const-folds the condition In addition, the code has been refactored a bit; as a bonus, the priority order of async resets found is now preserved in resulting sync rule ordering (though this is not yet respected by proc_dff). Fixes #2656. | ||||
* | opt_clean: Remove init attribute bits together with removed DFFs. | Marcelina Kościelnicka | 2021-03-15 | 1 | -0/+4 |
| | | | | Fixes #2546. | ||||
* | Add _pm.h files to GENLIST, fixes vcxsrc target | Miodrag Milanovic | 2021-03-11 | 1 | -0/+9 |
| | |||||
* | memory_dff: Remove now-useless write port handling. | Marcelina Kościelnicka | 2021-03-08 | 3 | -74/+11 |
| | |||||
* | Add support for memory writes in processes. | Marcelina Kościelnicka | 2021-03-08 | 10 | -37/+181 |
| | |||||
* | sim: Avoid a crash on empty cell connection. | Marcelina Kościelnicka | 2021-03-08 | 1 | -1/+1 |
| | | | | Fixes #2513. | ||||
* | proc_dff: Fix emitted FF when a register is not assigned in async reset | Marcelina Kościelnicka | 2021-03-08 | 1 | -0/+4 |
| | | | | Fixes #2619. | ||||
* | memory_dff: Remove code looking for $mux cells. | Marcelina Kościelnicka | 2021-03-08 | 1 | -56/+12 |
| | | | | This job is now performed by `opt_dff`, which runs before this pass. | ||||
* | Replace assert in abc9_ops with more useful error message | Dan Ravensloft | 2021-03-07 | 1 | -1/+9 |
| | |||||
* | proc_clean: Fix empty case removal conditions. | Marcelina Kościelnicka | 2021-03-06 | 1 | -10/+21 |
| | | | | Fixes #2639. | ||||
* | assertpmux: Fix crash on unused $pmux output. | Marcelina Kościelnicka | 2021-02-22 | 1 | -1/+1 |
| | | | | Fixes #2595. | ||||
* | Fixes command line for abc pass in -fast -sop mode | Robert Baruch | 2021-02-16 | 1 | -1/+1 |
| | |||||
* | Merge pull request #2529 from zachjs/unnamed-genblk | whitequark | 2021-02-04 | 1 | -23/+22 |
|\ | | | | | verilog: significant block scoping improvements |