Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | kernel: TimingInfo to clamp -ve setup/edge-sensitive delays to zero | Eddie Hung | 2020-05-14 | 1 | -10/+6 | |
| | | | | ||||||
* | | | | Revert "Merge branch 'eddie/kernel_makeblackbox' into eddie/abc9_auto_dff" | Eddie Hung | 2020-05-14 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | | | | | This reverts commit e08497c7c9d8a6f7a3eccddf2149c45d9ecff207, reversing changes made to e366fd55122236a21c6daee6765724add840a1f9. | |||||
* | | | | kernel: Module::makeblackbox() to clear connections + delete wires last | Eddie Hung | 2020-05-14 | 1 | -0/+1 | |
|/ / / | ||||||
* | | | Fix clang compiler warning | Claire Wolf | 2020-05-08 | 1 | -2/+2 | |
| | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | |||||
* | | | Merge pull request #2022 from Xiretza/fallthroughs | whitequark | 2020-05-08 | 1 | -0/+10 | |
|\ \ \ | | | | | | | | | Avoid switch fall-through warnings | |||||
| * | | | Add YS_FALLTHROUGH macro to mark case fall-through | Xiretza | 2020-05-07 | 1 | -0/+10 | |
| |/ / | | | | | | | | | | | | | C++17 introduced [[fallthrough]], GCC and clang had their own vendored attributes before that. MSVC doesn't seem to have such a warning at all. | |||||
* | | | Merge pull request #2005 from YosysHQ/claire/fix1990 | Claire Wolf | 2020-05-07 | 1 | -0/+1 | |
|\ \ \ | |/ / |/| | | Add "nowrshmsk" attribute, fix shift-and-mask bit slice write for signed offset | |||||
| * | | Add "nowrshmsk" attribute, fix shift-and-mask bit slice write for signed ↵ | Claire Wolf | 2020-05-02 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | offset, fixes #1990 Signed-off-by: Claire Wolf <claire@symbioticeda.com> | |||||
* | | | frontend: cleanup to use more ID::*, more dict<> instead of map<> | Eddie Hung | 2020-05-04 | 1 | -0/+3 | |
| | | | ||||||
* | | | Merge pull request #2000 from whitequark/log_error-trap | whitequark | 2020-05-03 | 2 | -3/+44 | |
|\ \ \ | |/ / |/| | | kernel: Trap in `log_error()` when a debugger is attached | |||||
| * | | kernel: Trap in `log_error()` when a debugger is attached. | whitequark | 2020-05-03 | 2 | -3/+44 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The workflow of debugging fatal pass errors in Yosys is flawed in three ways: 1. Running Yosys under a debugger is sufficient for the debugger to catch some fatal errors (segfaults, aborts, STL exceptions) but not others (`log_error()`, `log_cmd_error()`). This is neither obvious nor easy to remember. 2. To catch Yosys-specific fatal errors, it is necessary to set a breakpoint at `logv_error_with_prefix()`, or at least, `logv_error()`. This is neither obvious nor easy to remember, and GDB's autocomplete takes many seconds to suggest function names due to the large amount of symbols in Yosys. 3. If a breakpoint is not set and Yosys encounters with such a fatal error, the process terminates. When debugging a crash that takes a long time to reproduce (or a nondeterministic crash) this can waste a significant amount of time. To solve this problem, add a macro `YS_DEBUGTRAP` that acts as a hard breakpoint (if available), and a macro `YS_DEBUGTRAP_IF_DEBUGGING` that acts as a hard breakpoint only if debugger is present. Then, use `YS_DEBUGTRAP_IF_DEBUGGING` in `logv_error_with_prefix()` to obviate the need for a breakpoint on nearly every platform. Co-Authored-By: Alberto Gonzalez <boqwxp@airmail.cc> | |||||
* | | | Add WASI platform support. | whitequark | 2020-04-30 | 4 | -10/+40 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This includes the following significant changes: * Patching ezsat and minisat to disable resource limiting code on WASM/WASI, since the POSIX functions they use are unavailable. * Adding a new definition, YOSYS_DISABLE_SPAWN, present if platform does not support spawning subprocesses (i.e. Emscripten or WASI). This definition hides the definition of `run_command()`. * Adding a new Makefile flag, DISABLE_SPAWN, present in the same condition. This flag disables all passes that require spawning subprocesses for their function. | |||||
* | | | Merge pull request #1992 from YosysHQ/eddie/bugpoint_help | Eddie Hung | 2020-04-27 | 1 | -0/+1 | |
|\ \ \ | |_|/ |/| | | bugpoint: improve help text | |||||
| * | | bugpoint: (* keep *) to (* bugpoint_keep *); also apply to modules/cells | Eddie Hung | 2020-04-24 | 1 | -0/+1 | |
| | | | ||||||
* | | | verific: do not assert if wire not found; warn instead | Eddie Hung | 2020-04-23 | 1 | -0/+1 | |
|/ / | ||||||
* / | kernel: Cell::getParam() to throw exception again if not found | Eddie Hung | 2020-04-22 | 1 | -3/+2 | |
|/ | | | | As it did before #1945 | |||||
* | Merge pull request #1969 from boqwxp/pool_emplace | Eddie Hung | 2020-04-22 | 1 | -2/+32 | |
|\ | | | | | kernel: Add `pool` support for rvalue references and C++11 move semantics. | |||||
| * | pool: add emplace() function | Eddie Hung | 2020-04-22 | 1 | -0/+6 | |
| | | ||||||
| * | kernel: Rename arguments to rvalue-reference-accepting functions. | Alberto Gonzalez | 2020-04-21 | 1 | -8/+8 | |
| | | ||||||
| * | Add rvalue-reference-accepting `entry_t` constructor for `pool`. | Alberto Gonzalez | 2020-04-20 | 1 | -0/+1 | |
| | | ||||||
| * | In `pool`, construct `entry_t`s in-place and add an ↵ | Alberto Gonzalez | 2020-04-20 | 1 | -2/+25 | |
| | | | | | | | | rvalue-accepting-and-forwarding `insert()` method. | |||||
* | | Use default parameter value in getParam | Marcelina Kościelnicka | 2020-04-21 | 1 | -1/+10 | |
| | | | | | | | | Fixes #1822. | |||||
* | | ilang, ast: Store parameter order and default value information. | Marcelina Kościelnicka | 2020-04-21 | 2 | -2/+4 | |
| | | | | | | | | Fixes #1819, #1820. | |||||
* | | idict: Make iterator go forward. | Marcelina Kościelnicka | 2020-04-21 | 1 | -5/+19 | |
|/ | | | | Previously, iterating over an idict returned its contents in reverse. | |||||
* | rtlil: add AttrObject::has_attribute. | whitequark | 2020-04-16 | 2 | -0/+7 | |
| | ||||||
* | 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 | |
| | |