Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | kernel: Use constids.inc for global/constant IdStrings | Eddie Hung | 2020-04-02 | 4 | -17/+37 | |
| | | ||||||
* | | Merge pull request #1845 from YosysHQ/eddie/kernel_speedup | Eddie Hung | 2020-04-02 | 4 | -505/+477 | |
|\ \ | | | | | | | 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 | 3 | -361/+355 | |
| | | | ||||||
| * | | 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 | 2 | -38/+52 | |
| | | | ||||||
| * | | 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 | |
| | | | ||||||
* | | | Merge pull request #1828 from YosysHQ/eddie/celltypes_speedup | Eddie Hung | 2020-04-01 | 1 | -10/+3 | |
|\ \ \ | | | | | | | | | kernel: share a single CellTypes within a pass | |||||
| * | | | kernel: share a single CellTypes within a pass | Eddie Hung | 2020-03-18 | 1 | -10/+3 | |
| |/ / | ||||||
* | / | Clean up pseudo-private member usage in `kernel/yosys.cc`. | Alberto Gonzalez | 2020-04-01 | 1 | -14/+13 | |
| |/ |/| | ||||||
* | | Add support for SystemVerilog-style `define to Verilog frontend | Rupert Swarbrick | 2020-03-27 | 2 | -1/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch should support things like `define foo(a, b = 3, c) a+b+c `foo(1, ,2) which will evaluate to 1+3+2. It also spots mistakes like `foo(1) (the 3rd argument doesn't have a default value, so a call site is required to set it). Most of the patch is a simple parser for the format in preproc.cc, but I've also taken the opportunity to wrap up the "name -> definition" map in a type, rather than use multiple std::map's. Since this type needs to be visible to code that touches defines, I've pulled it (and the frontend_verilog_preproc declaration) out into a new file at frontends/verilog/preproc.h and included that where necessary. Finally, the patch adds a few tests in tests/various to check that we are parsing everything correctly. | |||||
* | | Update Copyright | Claire Wolf | 2020-03-16 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | |||||
* | | License: bump year and add title | Waldir Pimenta | 2020-03-14 | 1 | -1/+1 | |
| | | ||||||
* | | exclude clang from checking | Miodrag Milanovic | 2020-03-13 | 1 | -1/+1 | |
| | | ||||||
* | | Add YS_ prefix to macros, add explanation and apply to older version as well | Miodrag Milanovic | 2020-03-13 | 3 | -20/+23 | |
| | | ||||||
* | | Use boost xpressive for gcc 4.8 | Miodrag Milanovic | 2020-03-13 | 3 | -23/+29 | |
|/ | ||||||
* | Fix compilation for emcc | jiegec | 2020-03-11 | 2 | -1/+4 | |
| | ||||||
* | Add ScriptPass::run_nocheck and use for abc9 | David Shah | 2020-03-09 | 2 | -0/+13 | |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | |||||
* | Merge pull request #1718 from boqwxp/precise_locations | Claire Wolf | 2020-03-03 | 1 | -2/+0 | |
|\ | | | | | Closes #1717. Add more precise Verilog source location information to AST and RTLIL nodes. | |||||
| * | Closes #1717. Add more precise Verilog source location information to AST ↵ | Alberto Gonzalez | 2020-02-23 | 1 | -2/+0 | |
| | | | | | | | | and RTLIL nodes. | |||||
* | | Small fixes | Eddie Hung | 2020-02-27 | 1 | -2/+2 | |
| | | ||||||
* | | Fixes for older compilers | Eddie Hung | 2020-02-27 | 1 | -1/+8 | |
| | | ||||||
* | | Make TimingInfo::TimingInfo(SigBit) constructor explicit | Eddie Hung | 2020-02-27 | 1 | -4/+5 | |
| | | ||||||
* | | TimingInfo: index by (port_name,offset) | Eddie Hung | 2020-02-27 | 1 | -9/+19 | |
| | | ||||||
* | | Fix spacing | Eddie Hung | 2020-02-27 | 1 | -50/+50 | |
| | | ||||||
* | | Get rid of (* abc9_{arrival,required} *) entirely | Eddie Hung | 2020-02-27 | 1 | -3/+4 | |
| | | ||||||
* | | abc9_ops: use TimingInfo for -prep_{lut,box} too | Eddie Hung | 2020-02-27 | 1 | -1/+4 | |
| | | ||||||
* | | abc9_ops: use TimingInfo for -prep_{lut,box} too | Eddie Hung | 2020-02-27 | 1 | -18/+2 | |
| | | ||||||
* | | abc9_ops: add and use new TimingInfo struct | Eddie Hung | 2020-02-27 | 1 | -0/+173 | |
| | | ||||||
* | | Merge pull request #1705 from YosysHQ/logger_pass | Miodrag Milanović | 2020-02-26 | 3 | -2/+100 | |
|\ \ | |/ |/| | Logger pass | |||||
| * | Remove duplicate warning detection | Miodrag Milanovic | 2020-02-23 | 1 | -0/+6 | |
| | | ||||||
| * | Handle expect no warnings together with expected | Miodrag Milanovic | 2020-02-22 | 3 | -4/+12 | |
| | | ||||||
| * | Prevent double error message | Miodrag Milanovic | 2020-02-17 | 1 | -1/+3 | |
| | | ||||||
| * | Option to expect no warnings | Miodrag Milanovic | 2020-02-17 | 3 | -0/+5 | |
| | | ||||||
| * | No new error if already failing | Miodrag Milanovic | 2020-02-17 | 1 | -1/+2 | |
| | | ||||||
| * | remove whitespace | Miodrag Milanovic | 2020-02-14 | 1 | -1/+1 | |
| | | ||||||
| * | Add expect option to logger command | Miodrag Milanovic | 2020-02-14 | 3 | -2/+78 | |
| | | ||||||
* | | specify: system timing checks to accept min:typ:max triple | Eddie Hung | 2020-02-13 | 1 | -2/+6 | |
|/ | ||||||
* | Merge pull request #1659 from YosysHQ/clifford/experimental | Claire Wolf | 2020-01-29 | 5 | -3/+55 | |
|\ | | | | | Add log_experimental() and experimental() API and "yosys -x" | |||||
| * | Improve logging use of experimental features | Claire Wolf | 2020-01-28 | 3 | -4/+8 | |
| | | | | | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | |||||
| * | Add log_experimental() and experimental() API and "yosys -x" | Claire Wolf | 2020-01-27 | 5 | -3/+51 | |
| | | | | | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | |||||
* | | Add and use SigSpec::reverse() | Eddie Hung | 2020-01-28 | 1 | -0/+2 | |
|/ | ||||||
* | Merge pull request #1613 from porglezomp-misc/version-flag-alias | Claire Wolf | 2020-01-27 | 1 | -0/+6 | |
|\ | | | | | Add --version and -version as aliases for -V | |||||
| * | Add --version and -version as aliases for -V | Cassie Jones | 2020-01-05 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | The flag --version is commonly accepted by command line tools. The code for the version flags added here matches the pattern used for the help flag aliases, for consistency. Fixes #1612 |