Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | rtlil: add AttrObject::{get,set}_string_attribute. | whitequark | 2020-04-16 | 2 | -19/+26 | |
| | | | | And make {get,set}_src_attribute use those functions. | |||||
* | Merge pull request #1896 from boqwxp/read_stdin_repl | whitequark | 2020-04-16 | 1 | -3/+4 | |
|\ | | | | | Frontend: allow reading file input from stdin, like a REPL heredoc mode | |||||
| * | Use script-style heredoc syntax for REPL heredocs. | Alberto Gonzalez | 2020-04-15 | 1 | -7/+7 | |
| | | ||||||
| * | Allow reading file input from stdin, improving REPL experience. | Alberto Gonzalez | 2020-04-15 | 1 | -6/+7 | |
| | | ||||||
* | | Merge pull request #1927 from YosysHQ/eddie/design_remove_assert | Eddie Hung | 2020-04-16 | 1 | -0/+1 | |
|\ \ | | | | | | | kernel: Design::remove(RTLIL::Module *) to check refcount_modules_ | |||||
| * | | kernel: Design::remove(RTLIL::Module *) to check refcount_modules_ | Eddie Hung | 2020-04-14 | 1 | -0/+1 | |
| | | | ||||||
* | | | Merge pull request #1915 from boqwxp/dict_move_semantics | whitequark | 2020-04-16 | 1 | -4/+68 | |
|\ \ \ | | | | | | | | | kernel: Add `dict` support for rvalue references and C++11 move semantics. | |||||
| * | | | Rename overloaded `insert()` to `emplace()` and add overloaded versions for ↵ | Alberto Gonzalez | 2020-04-16 | 1 | -1/+31 | |
| | | | | | | | | | | | | | | | | all possible lvalue/rvalue combinationsfor its arguments. | |||||
| * | | | Add `dict` support for rvalue references and C++11 move semantics. | Alberto Gonzalez | 2020-04-13 | 1 | -4/+38 | |
| |/ / | ||||||
* | | | Merge pull request #1894 from YosysHQ/mingw_fix | Miodrag Milanović | 2020-04-15 | 1 | -0/+4 | |
|\ \ \ | | | | | | | | | Fix compile for mingw | |||||
| * | | | Fix compile for mingw | Miodrag Milanovic | 2020-04-15 | 1 | -0/+4 | |
| | |/ | |/| | ||||||
* | | | Merge pull request #1916 from YosysHQ/eddie/kernel_makeblackbox | Eddie Hung | 2020-04-15 | 1 | -0/+2 | |
|\ \ \ | | | | | | | | | kernel: Module::makeblackbox() to clear connections too | |||||
| * | | | kernel: Module::makeblackbox() to clear connections too | Eddie Hung | 2020-04-13 | 1 | -0/+2 | |
| | |/ | |/| | ||||||
* | | | Merge pull request #1830 from boqwxp/qbfsat | N. Engelhardt | 2020-04-15 | 1 | -0/+7 | |
|\ \ \ | |/ / |/| | | Add `qbfsat` command to integrate exists-forall solving and specialization | |||||
| * | | Hole value recovery and specialization implementation for `qbfsat` command. | Alberto Gonzalez | 2020-04-04 | 1 | -0/+7 | |
| | | | ||||||
* | | | Support custom PROGRAM_PREFIX | Miodrag Milanovic | 2020-04-10 | 2 | -1/+11 | |
| |/ |/| | ||||||
* | | Merge pull request #1562 from whitequark/write_cxxrtl | whitequark | 2020-04-10 | 2 | -0/+5 | |
|\ \ | | | | | | | write_cxxrtl: new backend | |||||
| * | | write_cxxrtl: new backend. | whitequark | 2020-04-09 | 2 | -0/+5 | |
| | | | | | | | | | | | | | | | This commit adds a basic implementation that isn't very performant but implements most of the planned features. | |||||
* | | | Merge pull request #1858 from YosysHQ/eddie/fix1856 | Eddie Hung | 2020-04-09 | 3 | -3/+3 | |
|\ \ \ | | | | | | | | | kernel: include "kernel/constids.inc" | |||||
| * | | | kernel: include "kernel/constids.inc" instead of "constids.inc" | Eddie Hung | 2020-04-09 | 3 | -3/+3 | |
| |/ / | ||||||
* / / | [NFCI] Deduplicate builtin FF cell types list | Marcelina Kościelnicka | 2020-04-09 | 2 | -0/+49 | |
|/ / | | | | | | | | | | | | | | | | | A few passes included the same list of FF cell types. Make it a global const instead. The zinit pass also seems to include a list like that, but given that it seems to be completely broken at the time (see #1568 discussion), I'm going to pretend I didn't see that. | |||||
* | | kernel: big fat patch to use more ID::*, otherwise ID(*) | Eddie Hung | 2020-04-02 | 10 | -679/+822 | |
| | | ||||||
* | | 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. | |||||
* | | 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 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 | |
|/ |