Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | splitnets: skip modules with processes. | whitequark | 2020-04-03 | 1 | -0/+3 |
| | |||||
* | Merge pull request #1853 from YosysHQ/eddie/fix_dynslice | Eddie Hung | 2020-04-02 | 1 | -1/+2 |
|\ | | | | | ast: cap dynamic range select to size of signal, suppresses warnings | ||||
| * | ast: cap dynamic range select to size of signal, suppresses warnings | Eddie Hung | 2020-04-01 | 1 | -1/+2 |
| | | |||||
* | | Merge pull request #1767 from YosysHQ/eddie/idstrings | Eddie Hung | 2020-04-02 | 163 | -5241/+5380 |
|\ \ | | | | | | | IdString: use more ID::*, make them easier to use, speed up IdString::in() | ||||
| * | | kernel: big fat patch to use more ID::*, otherwise ID(*) | Eddie Hung | 2020-04-02 | 152 | -4420/+4532 |
| | | | |||||
| * | | kernel: IdString::in(const IdString &) as per @Tjoppen | Eddie Hung | 2020-04-02 | 1 | -1/+1 |
| | | | |||||
| * | | kernel: fix formatting (thanks @boqwxp) | Eddie Hung | 2020-04-02 | 1 | -6/+4 |
| | | | |||||
| * | | kernel: use C++11 fold hack to prevent recursion | Eddie Hung | 2020-04-02 | 1 | -3/+8 |
| | | | |||||
| * | | Revert "kernel: IdString:in() to use perfect forwarding" | Eddie Hung | 2020-04-02 | 1 | -2/+2 |
| | | | | | | | | | | | | This reverts commit 7b2a85aedf24affc2e1202c78e70e6a317f5bf29. | ||||
| * | | Update backends/btor/btor.cc; credit @boqwxp | Eddie Hung | 2020-04-02 | 1 | -2/+1 |
| | | | | | | | | | Co-Authored-By: Alberto Gonzalez <61295559+boqwxp@users.noreply.github.com> | ||||
| * | | kernel: separate IdString::put_reference() out to help inlining | Eddie Hung | 2020-04-02 | 1 | -1/+4 |
| | | | |||||
| * | | kernel: IdString:in() to use perfect forwarding | Eddie Hung | 2020-04-02 | 1 | -2/+2 |
| | | | |||||
| * | | kernel: use more ID::* | Eddie Hung | 2020-04-02 | 69 | -841/+843 |
| | | | |||||
| * | | kernel: Use constids.inc for global/constant IdStrings | Eddie Hung | 2020-04-02 | 4 | -17/+37 |
| | | | |||||
* | | | simcells.v: Generate the fine FF cell types by a python script. | Marcin Kościelnicki | 2020-04-02 | 2 | -19/+270 |
| | | | | | | | | | | | | | | | | | | This makes adding more FF types in the future much more manageable. Fixes #1824. | ||||
* | | | Merge pull request #1846 from dh73/ast_fe | Claire Wolf | 2020-04-02 | 1 | -0/+3 |
|\ \ \ | | | | | | | | | Adding error message for when size (width) of number literal is zero | ||||
| * | | | Replacing log_error for log_file_error due consistency | Diego H | 2020-03-31 | 1 | -2/+1 |
| | | | | |||||
| * | | | Adding error message for when size (width) of number literal is zero | Diego H | 2020-03-30 | 1 | -0/+4 |
| | | | | |||||
* | | | | iopadmap: Fix z assignment to inout port | Marcin Kościelnicki | 2020-04-02 | 2 | -2/+24 |
| | | | | | | | | | | | | | | | | Fixes #1841. | ||||
* | | | | Merge pull request #1842 from YosysHQ/mwk/fix-deminout-xz | Claire Wolf | 2020-04-02 | 1 | -1/+1 |
|\ \ \ \ | |_|/ / |/| | | | deminout: prevent any constant assignment from demoting to input | ||||
| * | | | deminout: prevent any constant assignment from demoting to input | Marcin Kościelnicki | 2020-03-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this patch, ``` module top(inout io); assign io = 1'bx; endmodule ``` would have the `io` pin demoted to input (same happens for `1'bz`, but not for `1'b0` or `1'b1`), resulting in check failures later on. Part of fix for #1841. | ||||
* | | | | Merge pull request #1845 from YosysHQ/eddie/kernel_speedup | Eddie Hung | 2020-04-02 | 20 | -588/+566 |
|\ \ \ \ | | | | | | | | | | | kernel: speedup by using more pass-by-const-ref | ||||
| * | | | | kernel: pass-by-value into Design::scratchpad_set_string() too | Eddie Hung | 2020-03-27 | 2 | -3/+3 |
| | | | | | |||||
| * | | | | kernel: const Wire* overload -> Wire* !!! | Eddie Hung | 2020-03-26 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | kernel: Cell::set{Port,Param}() to pass by value, but use std::move | Eddie Hung | 2020-03-26 | 2 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | Otherwise cell->setPort(ID::A, cell->getPort(ID::B)) could be invalid | ||||
| * | | | | kernel: SigSpec copies to not trigger pack() | Eddie Hung | 2020-03-18 | 2 | -34/+5 |
| | | | | | |||||
| * | | | | kernel: more pass by const ref, more speedups | Eddie Hung | 2020-03-18 | 7 | -400/+400 |
| | | | | | |||||
| * | | | | kernel: speedup | Eddie Hung | 2020-03-18 | 1 | -30/+23 |
| | | | | | |||||
| * | | | | kernel: use const reference for SigSet too | Eddie Hung | 2020-03-17 | 1 | -18/+18 |
| | | | | | |||||
| * | | | | kernel: fix DeleteWireWorker | Eddie Hung | 2020-03-17 | 1 | -9/+4 |
| | | | | | |||||
| * | | | | kernel: SigSpec use more const& + overloads to prevent implicit SigSpec | Eddie Hung | 2020-03-13 | 14 | -82/+96 |
| | | | | | |||||
| * | | | | kernel: optimise Module::remove(const pool<RTLIL::Wire*>() | Eddie Hung | 2020-03-12 | 2 | -10/+9 |
| | | | | | |||||
| * | | | | kernel: SigPool to use const& + overloads to prevent implicit SigSpec | Eddie Hung | 2020-03-12 | 1 | -19/+25 |
| | | | | | |||||
* | | | | | Bump YOSYS_VER | Claire Wolf | 2020-04-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | | | | | Merge pull request #1770 from YosysHQ/claire/btor_symbols | Claire Wolf | 2020-04-02 | 1 | -36/+60 |
|\ \ \ \ \ | | | | | | | | | | | | | Improve write_btor symbol handling | ||||
| * | | | | | Improve write_btor symbol handling | Claire Wolf | 2020-03-14 | 1 | -36/+60 |
| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | | | | | | Merge pull request #1765 from YosysHQ/claire/btor_info | Claire Wolf | 2020-04-02 | 1 | -9/+113 |
|\| | | | | | | | | | | | | | | | | | Add info-file and cover features to write_btor | ||||
| * | | | | | Add info-file and cover features to write_btor | Claire Wolf | 2020-03-13 | 1 | -9/+113 |
| |/ / / / | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | | | | | Merge pull request #1777 from YosysHQ/claire/manyhot | Claire Wolf | 2020-04-02 | 1 | -14/+146 |
|\ \ \ \ \ | | | | | | | | | | | | | Using LFSR counter for ezSAT::manyhot() | ||||
| * | | | | | Improve ezsat onehot encoding scheme | Claire Wolf | 2020-04-02 | 1 | -14/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
| * | | | | | Using LFSR counter for ezSAT::manyhot() | Claire Wolf | 2020-04-02 | 1 | -0/+118 |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only user of this API right now is the puzzle3d benchmark and it sees a slight reduction in CNF size from this, but the performance difference is within the noise of measurement on my system. Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | | | | | Merge pull request #1828 from YosysHQ/eddie/celltypes_speedup | Eddie Hung | 2020-04-01 | 4 | -31/+50 |
|\ \ \ \ \ | | | | | | | | | | | | | kernel: share a single CellTypes within a pass | ||||
| * | | | | | memory_share: fix stray brace | Eddie Hung | 2020-03-30 | 1 | -1/+0 |
| | | | | | | |||||
| * | | | | | Code review fixes | Eddie Hung | 2020-03-30 | 2 | -3/+3 |
| | | | | | | |||||
| * | | | | | Apply suggestions from code review | Eddie Hung | 2020-03-30 | 2 | -6/+2 |
| | | | | | | | | | | | | | | | | | | Co-Authored-By: Alberto Gonzalez <61295559+boqwxp@users.noreply.github.com> | ||||
| * | | | | | kernel: clear some more ShareWorker state | Eddie Hung | 2020-03-26 | 1 | -0/+4 |
| | | | | | | |||||
| * | | | | | kernel: share a single CellTypes within a pass | Eddie Hung | 2020-03-18 | 4 | -31/+51 |
| |/ / / / | |||||
* | | | | | Merge pull request #1790 from YosysHQ/eddie/opt_expr_xor | Eddie Hung | 2020-04-01 | 4 | -10/+92 |
|\ \ \ \ \ | | | | | | | | | | | | | opt_expr: optimise $xor/$xnor/$_XOR_/$_XNOR_ -s with constant inputs | ||||
| * | | | | | opt_expr: fix failing $xnor test | Eddie Hung | 2020-03-20 | 1 | -2/+17 |
| | | | | | | |||||
| * | | | | | opt_expr: add failing $xnor test | Eddie Hung | 2020-03-20 | 1 | -1/+13 |
| | | | | | |