Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | verilog: Squash a memory leak. | Marcelina Kościelnicka | 2021-06-14 | 1 | -1/+1 |
| | | | | That was added in ecc22f7fedfa639482dbc55a05709da85116a60f | ||||
* | Fixing old e-mail addresses and deadnames | Claire Xenia Wolf | 2021-06-08 | 1 | -1/+1 |
| | | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g; | ||||
* | sv: support remaining assignment operators | Zachary Snow | 2021-05-25 | 1 | -4/+11 |
| | | | | | - Add support for: *=, /=, %=, <<=, >>=, <<<=, >>>= - Unify existing support for: +=, -=, &=, |=, ^= | ||||
* | verilog: revise hot comment warnings | Zachary Snow | 2021-03-30 | 1 | -6/+21 |
| | |||||
* | sv: extended support for integer types | Zachary Snow | 2021-02-28 | 1 | -0/+1 |
| | | | | | | | | | - Standard data declarations can now use any integer type - Parameters and localparams can now use any integer type - Function returns types can now use any integer type - Fix `parameter logic`, `localparam reg`, etc. to be 1 bit (previously 32 bits) - Added longint type (64 bits) - Unified parser source for integer type widths | ||||
* | Fix handling of unique/unique0/priority cases in the frontend. | Marcelina Kościelnicka | 2021-02-25 | 1 | -1/+1 |
| | | | | | | | | | | Basically: - priority converts to (* full_case *) - unique0 converts to (* parallel_case *) - unique converts to (* parallel_case, full_case *) Fixes #2596. | ||||
* | Merge pull request #2179 from splhack/static-cast | clairexen | 2020-07-01 | 1 | -0/+2 |
|\ | | | | | Support SystemVerilog Static Cast | ||||
| * | static cast: support changing size and signedness | Kazuki Sakamoto | 2020-06-19 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | Support SystemVerilog Static Cast - size - signedness - (type is not supposted yet) Fix #535 | ||||
* | | Support missing sub-assign and and-assign operators | Kamil Rakoczy | 2020-06-25 | 1 | -0/+2 |
| | | | | | | | | Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com> | ||||
* | | Support missing xor-assign operator | Lukasz Dalek | 2020-06-24 | 1 | -0/+1 |
| | | | | | | | | Signed-off-by: Lukasz Dalek <ldalek@antmicro.com> | ||||
* | | Add plus-assignment operator | Kamil Rakoczy | 2020-06-24 | 1 | -0/+1 |
| | | | | | | | | Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com> | ||||
* | | Add or-assignment operator | Kamil Rakoczy | 2020-06-24 | 1 | -0/+2 |
|/ | | | | Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com> | ||||
* | Merge branch 'master' into struct | Peter Crozier | 2020-06-03 | 1 | -7/+8 |
|\ | |||||
| * | Merge pull request #2033 from boqwxp/cleanup-verilog-lexer | whitequark | 2020-05-29 | 1 | -6/+5 |
| |\ | | | | | | | verilog: Move lexer location variables from global namespace to `VERILOG_FRONTEND` namespace. | ||||
| | * | verilog: Move lexer location variables from global namespace to ↵ | Alberto Gonzalez | 2020-05-06 | 1 | -6/+5 |
| | | | | | | | | | | | | `VERILOG_FRONTEND` namespace. | ||||
| * | | Silence spurious warning in Verilog lexer when compiling with GCC | Rupert Swarbrick | 2020-05-26 | 1 | -1/+3 |
| |/ | | | | | | | | | | | | | The chosen value shouldn't have any effect. I considered something clearly wrong like -1, but there's no checking inside the generated lexer, and I suspect this will cause even weirder bugs if triggered than just setting it to INITIAL. | ||||
* | | Generalise structs and add support for packed unions. | Peter Crozier | 2020-05-12 | 1 | -2/+4 |
| | | |||||
* | | Implement SV structs. | Peter Crozier | 2020-05-08 | 1 | -1/+6 |
|/ | |||||
* | Error duplicate declarations of a typedef name in the same scope. | Peter Crozier | 2020-03-24 | 1 | -1/+1 |
| | |||||
* | Support module/package/interface/block scope for typedef names. | Peter Crozier | 2020-03-23 | 1 | -2/+15 |
| | |||||
* | Parser changes to support typedef. | Peter | 2020-03-22 | 1 | -2/+26 |
| | |||||
* | refixed parsing of constant with comment between size and value | Marcus Comstedt | 2020-03-11 | 1 | -8/+23 |
| | | | | | | The three parts of a based constant (size, base, digits) are now three separate tokens, allowing the linear whitespace (including comments) between them to be treated as normal inter-token whitespace. | ||||
* | Closes #1717. Add more precise Verilog source location information to AST ↵ | Alberto Gonzalez | 2020-02-23 | 1 | -19/+53 |
| | | | | and RTLIL nodes. | ||||
* | verilog: ignore '&&&' when not in -specify mode | Eddie Hung | 2020-02-13 | 1 | -1/+1 |
| | |||||
* | sv: Improve handling of wildcard port connections | David Shah | 2020-02-02 | 1 | -1/+1 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | sv: Add lexing and parsing of .* (wildcard port conns) | David Shah | 2020-02-02 | 1 | -0/+2 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | Fixed some missing "verilog_" in documentation | Rodrigo Alejandro Melo | 2019-12-13 | 1 | -1/+1 |
| | |||||
* | sv: Correct parsing of always_comb, always_ff and always_latch | David Shah | 2019-11-21 | 1 | -3/+3 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | Fix lexing of integer literals without radix | Clifford Wolf | 2019-09-13 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix lexing of integer literals, fixes #1364 | Clifford Wolf | 2019-09-12 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | verilog_lexer: Increase YY_BUF_SIZE to 65536 | David Shah | 2019-07-26 | 1 | -0/+3 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | Fix read_verilog assert/assume/etc on default case label, fixes ↵ | Clifford Wolf | 2019-07-02 | 1 | -0/+2 |
| | | | | | | YosysHQ/SymbiYosys#53 Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fixed brojen $error()/$info/$warning() on non-generate blocks | Udi Finkelstein | 2019-06-11 | 1 | -1/+1 |
| | | | | (within always/initial blocks) | ||||
* | Merge branch 'pr_elab_sys_tasks' of https://github.com/udif/yosys into ↵ | Clifford Wolf | 2019-06-07 | 1 | -0/+5 |
|\ | | | | | | | clifford/pr983 | ||||
| * | Initial implementation of elaboration system tasks | Udi Finkelstein | 2019-05-03 | 1 | -0/+5 |
| | | | | | | | | | | | | | | (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 | -1/+1 |
|\ \ | |||||
| * | | Added support for unsized constants, fixes #1022 | Miodrag Milanovic | 2019-05-27 | 1 | -1/+1 |
| | | | | | | | | | | | | Includes work from @sumit0190 and @AaronKel | ||||
* | | | make lexer/parser aware of wand/wor net types | Stefan Biereigel | 2019-05-23 | 1 | -0/+2 |
|/ / | |||||
* | | Merge branch 'master' of github.com:YosysHQ/yosys into clifford/specify | Clifford Wolf | 2019-05-06 | 1 | -0/+2 |
|\ \ | |||||
| * \ | Merge pull request #988 from YosysHQ/clifford/fix987 | Clifford Wolf | 2019-05-04 | 1 | -0/+1 |
| |\ \ | | | | | | | | | Add approximate support for SV "var" keyword | ||||
| | * | | Add approximate support for SV "var" keyword, fixes #987 | Clifford Wolf | 2019-05-04 | 1 | -0/+1 |
| | |/ | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
| * / | Add support for SVA "final" keyword | Clifford Wolf | 2019-05-04 | 1 | -0/+1 |
| |/ | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Improve $specrule interface | Clifford Wolf | 2019-04-23 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Add $specrule cells for $setup/$hold/$skew specify rules | Clifford Wolf | 2019-04-23 | 1 | -0/+11 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Un-break default specify parser | Clifford Wolf | 2019-04-23 | 1 | -0/+1 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Add specify parser | Clifford Wolf | 2019-04-23 | 1 | -1/+6 |
|/ | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix handling of cases that look like sva labels, fixes #862 | Clifford Wolf | 2019-03-10 | 1 | -49/+10 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Also add support for labels on sva module items, fixes #699 | Clifford Wolf | 2019-03-08 | 1 | -5/+52 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Bugfix in Verilog string handling | Clifford Wolf | 2019-01-05 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Merge pull request #659 from rubund/sv_interfaces | Clifford Wolf | 2018-10-18 | 1 | -0/+8 |
|\ | | | | | Support for SystemVerilog interfaces and modports |