Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | genrtlil: improve name conflict error messaging | Zachary Snow | 2021-02-26 | 1 | -12/+37 |
| | |||||
* | frontend: Make helper functions for printing locations. | Marcelina Kościelnicka | 2021-02-23 | 1 | -25/+25 |
| | |||||
* | verilog: support recursive functions using ternary expressions | Zachary Snow | 2021-02-12 | 1 | -0/+35 |
| | | | | | | | This adds a mechanism for marking certain portions of elaboration as occurring within unevaluated ternary branches. To enable elaboration of the overall ternary, this also adds width detection for these unelaborated function calls. | ||||
* | genrtlil: fix signed port connection codegen failures | Zachary Snow | 2021-02-05 | 1 | -1/+5 |
| | | | | | | | | This fixes binding signed memory reads, signed unary expressions, and signed complex SigSpecs to ports. This also sets `is_signed` for wires generated from signed params when -pwires is used. Though not necessary for any of the current usages, `is_signed` is now appropriately set when the `extendWidth` helper is used. | ||||
* | genrtlil: fix mux2rtlil generated wire signedness | Zachary Snow | 2020-12-22 | 1 | -0/+1 |
| | |||||
* | Sign extend port connections where necessary | Zachary Snow | 2020-12-18 | 1 | -2/+24 |
| | | | | | | | | | | | - Signed cell outputs are sign extended when bound to larger wires - Signed connections are sign extended when bound to larger cell inputs - Sign extension is performed in hierarchy and flatten phases - genrtlil indirects signed constants through signed wires - Other phases producing RTLIL may need to be updated to preserve signedness information - Resolves #1418 - Resolves #2265 | ||||
* | static cast: support changing size and signedness | Kazuki Sakamoto | 2020-06-19 | 1 | -0/+24 |
| | | | | | | | | | Support SystemVerilog Static Cast - size - signedness - (type is not supposted yet) Fix #535 | ||||
* | Merge pull request #2041 from PeterCrozier/struct | clairexen | 2020-06-04 | 1 | -0/+2 |
|\ | | | | | Implementation of SV structs. | ||||
| * | Merge branch 'master' into struct | Peter Crozier | 2020-06-03 | 1 | -1/+1 |
| |\ | |||||
| * | | Generalise structs and add support for packed unions. | Peter Crozier | 2020-05-12 | 1 | -0/+1 |
| | | | |||||
| * | | Implement SV structs. | Peter Crozier | 2020-05-08 | 1 | -0/+1 |
| | | | |||||
* | | | Merge pull request #2006 from jersey99/signed-in-rtlil-wire | whitequark | 2020-06-04 | 1 | -0/+1 |
|\ \ \ | |_|/ |/| | | Preserve 'signed'-ness of a verilog wire through RTLIL | ||||
| * | | Preserve 'signed'-ness of a verilog wire through RTLIL | Vamsi K Vytla | 2020-04-27 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | As per suggestion made in https://github.com/YosysHQ/yosys/pull/1987, now: RTLIL::wire holds an is_signed field. This is exported in JSON backend This is exported via dump_rtlil command This is read in via ilang_parser | ||||
* | | | Add force_downto and force_upto wire attributes. | Marcelina Kościelnicka | 2020-05-19 | 1 | -1/+1 |
| |/ |/| | | | | | Fixes #2058. | ||||
* | | Merge pull request #2022 from Xiretza/fallthroughs | whitequark | 2020-05-08 | 1 | -3/+4 |
|\ \ | | | | | | | Avoid switch fall-through warnings | ||||
| * | | Add YS_FALLTHROUGH macro to mark case fall-through | Xiretza | 2020-05-07 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | 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 | -4/+19 |
|\ \ \ | |/ / |/| | | Add "nowrshmsk" attribute, fix shift-and-mask bit slice write for signed offset | ||||
| * | | Fix handling of signed indices in bit slices | Claire Wolf | 2020-05-02 | 1 | -3/+8 |
| | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
| * | | Add AST_SELFSZ and improve handling of bit slices | Claire Wolf | 2020-05-02 | 1 | -1/+7 |
| | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
| * | | Add "nowrshmsk" attribute, fix shift-and-mask bit slice write for signed ↵ | Claire Wolf | 2020-05-02 | 1 | -0/+4 |
| |/ | | | | | | | | | | | 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 | -1/+1 |
| | | |||||
* | | frontend: Include complete source location instead of just ↵ | Alberto Gonzalez | 2020-05-01 | 1 | -13/+13 |
|/ | | | | `location.first_line` in `frontends/ast/genrtlil.cc`. | ||||
* | ilang, ast: Store parameter order and default value information. | Marcelina Kościelnicka | 2020-04-21 | 1 | -1/+4 |
| | | | | Fixes #1819, #1820. | ||||
* | Add LookaheadRewriter for proper bitselwrite support | Claire Wolf | 2020-04-16 | 1 | -3/+128 |
| | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | Fix 5bba9c3, closes #1876 | Claire Wolf | 2020-04-14 | 1 | -7/+13 |
| | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | kernel: big fat patch to use more ID::*, otherwise ID(*) | Eddie Hung | 2020-04-02 | 1 | -134/+122 |
| | |||||
* | kernel: use more ID::* | Eddie Hung | 2020-04-02 | 1 | -45/+45 |
| | |||||
* | Merge pull request #1718 from boqwxp/precise_locations | Claire Wolf | 2020-03-03 | 1 | -102/+101 |
|\ | | | | | 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 | -102/+101 |
| | | | | | | | | and RTLIL nodes. | ||||
* | | ast: fixes #1710; do not generate RTLIL for unreachable ternary | Eddie Hung | 2020-02-27 | 1 | -9/+22 |
|/ | |||||
* | Merge pull request #1703 from YosysHQ/eddie/specify_improve | Eddie Hung | 2020-02-21 | 1 | -7/+11 |
|\ | | | | | Improve specify parser | ||||
| * | verilog: fix $specify3 check | Eddie Hung | 2020-02-13 | 1 | -7/+11 |
| | | |||||
* | | partial rebase of PeterCrozier's enum work onto current master | Jeff Wang | 2020-01-16 | 1 | -2/+6 |
|/ | | | | | | | | | | | I tried to keep only the enum-related changes, and minimize the diff. (The original commit also had a lot of work done to get typedefs working, but yosys has diverged quite a bit since the 2018-03-09 commit, with a new typedef implementation.) I did not include the import related changes either. Original commit: "Initial implementation of enum, typedef, import. Still a WIP." https://github.com/PeterCrozier/yosys/commit/881833aa738e7404987646ea8076284e911fce3f | ||||
* | sv: Switch parser to glr, prep for typedef | David Shah | 2019-10-03 | 1 | -0/+1 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | substr() -> compare() | Eddie Hung | 2019-08-07 | 1 | -1/+1 |
| | |||||
* | genrtlil: emit \src attribute on CaseRule. | whitequark | 2019-07-08 | 1 | -0/+1 |
| | |||||
* | Add "read_verilog -pwires" feature, closes #1106 | Clifford Wolf | 2019-06-19 | 1 | -1/+20 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fixes and cleanups in AST_TECALL handling | Clifford Wolf | 2019-06-07 | 1 | -1/+31 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Merge branch 'pr_elab_sys_tasks' of https://github.com/udif/yosys into ↵ | Clifford Wolf | 2019-06-07 | 1 | -0/+1 |
|\ | | | | | | | clifford/pr983 | ||||
| * | Initial implementation of elaboration system tasks | Udi Finkelstein | 2019-05-03 | 1 | -0/+1 |
| | | | | | | | | | | | | | | (IEEE1800-2017 section 20.11) This PR allows us to use $info/$warning/$error/$fatal **at elaboration time** within a generate block. This is very useful to stop a synthesis of a parametrized block when an illegal combination of parameters is chosen. | ||||
* | | Merge branch 'master' into wandwor | Stefan Biereigel | 2019-05-27 | 1 | -3/+9 |
|\ \ | |||||
| * \ | Merge pull request #1044 from mmicko/invalid_width_range | Clifford Wolf | 2019-05-27 | 1 | -1/+2 |
| |\ \ | | | | | | | | | Give error instead of asserting for invalid range, fixes #947 | ||||
| | * | | Give error instead of asserting for invalid range, fixes #947 | Miodrag Milanovic | 2019-05-27 | 1 | -1/+2 |
| | | | | |||||
| * | | | Added support for unsized constants, fixes #1022 | Miodrag Milanovic | 2019-05-27 | 1 | -2/+7 |
| |/ / | | | | | | | | | | Includes work from @sumit0190 and @AaronKel | ||||
* | | | move wand/wor resolution into hierarchy pass | Stefan Biereigel | 2019-05-27 | 1 | -97/+14 |
| | | | |||||
* | | | fix assignment of non-wires | Stefan Biereigel | 2019-05-23 | 1 | -16/+19 |
| | | | |||||
* | | | fix indentation across files | Stefan Biereigel | 2019-05-23 | 1 | -58/+76 |
| | | | |||||
* | | | implementation for assignments working | Stefan Biereigel | 2019-05-23 | 1 | -14/+79 |
|/ / | |||||
* | | Improve write_verilog specify support | Clifford Wolf | 2019-05-04 | 1 | -0/+3 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Merge remote-tracking branch 'origin/master' into clifford/specify | Eddie Hung | 2019-05-03 | 1 | -0/+2 |
|\ \ |