Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve Verific error handling, check VHDL static asserts | Clifford Wolf | 2017-10-04 | 1 | -11/+25 |
| | |||||
* | Add blackbox command | Clifford Wolf | 2017-10-04 | 2 | -0/+82 |
| | |||||
* | Fix nasty bug in Verific bindings | Clifford Wolf | 2017-10-04 | 1 | -1/+1 |
| | |||||
* | Merge branch 'pr_ast_const_funcs' of https://github.com/udif/yosys | Clifford Wolf | 2017-10-03 | 2 | -14/+14 |
|\ | |||||
| * | Turned a few member functions into const, esp. dumpAst(), dumpVlog(). | Udi Finkelstein | 2017-09-30 | 2 | -14/+14 |
| | | |||||
* | | Merge branch 'fix_shift_reduce_conflict' of https://github.com/udif/yosys | Clifford Wolf | 2017-10-03 | 1 | -3/+5 |
|\ \ | |||||
| * | | Resolved classical Bison IF/THEN/ELSE shift/reduce conflict using the ↵ | Udi Finkelstein | 2017-09-30 | 1 | -3/+5 |
| |/ | | | | | | | | | | | textbook solution (Oreilly 'Flex & Bison' page 189) | ||||
* | | Merge branch 'dh73-master' | Clifford Wolf | 2017-10-03 | 31 | -729/+2965 |
|\ \ | |/ |/| | |||||
| * | Rename "write_verilog -nobasenradix" to "write_verilog -decimal" | Clifford Wolf | 2017-10-03 | 2 | -20/+14 |
| | | |||||
| * | Tested and working altsyncarm without init files | dh73 | 2017-10-01 | 2 | -57/+59 |
| | | |||||
| * | Fixed wrong declaration in Verilog backend | dh73 | 2017-10-01 | 1 | -3/+3 |
| | | |||||
| * | Adding Cyclone IV (E, GX), Arria 10, Cyclone V and LPM functions (ALTPLL and ↵ | dh73 | 2017-10-01 | 31 | -730/+2970 |
|/ | | | | M9K); M9K is not finished yet. Achronix Speedster also in this commit. Both Arria10 and Speedster-i are still experimental due complexity, but you can experiment around those devices right now | ||||
* | Add first draft of eASIC back-end | Clifford Wolf | 2017-09-29 | 2 | -0/+191 |
| | |||||
* | Fix synth_ice40 doc regarding -top default | Clifford Wolf | 2017-09-29 | 1 | -1/+1 |
| | |||||
* | Allow $size and $bits in verilog mode, actually check test case | Clifford Wolf | 2017-09-29 | 3 | -1/+3 |
| | |||||
* | Merge pull request #425 from udif/udif_dollar_bits | Clifford Wolf | 2017-09-29 | 2 | -1/+103 |
|\ | | | | | Add $bits() and $size() | ||||
| * | $size() now works correctly for all cases! | Udi Finkelstein | 2017-09-26 | 2 | -22/+28 |
| | | | | | | | | It seems the issues was that AST_MULTIRANGE is converted into a multirange_dimensions[] array on the AST_MEMORY node directly. | ||||
| * | $size() seems to work now with or without the optional parameter. | Udi Finkelstein | 2017-09-26 | 2 | -18/+58 |
| | | | | | | | | Multidimensional arrays still don't work. I suspect the problem is that the array is flattened into a 1D array before $size() is evaluated. | ||||
| * | enable $bits() and $size() functions only when the SystemVerilog flag is ↵ | Udi Finkelstein | 2017-09-26 | 1 | -1/+1 |
| | | | | | | | | enabled for read_verilog | ||||
| * | Added $bits() for memories as well. | Udi Finkelstein | 2017-09-26 | 2 | -8/+31 |
| | | |||||
| * | $size() now works with memories as well! | Udi Finkelstein | 2017-09-26 | 2 | -3/+7 |
| | | |||||
| * | Add $size() function. At the moment it works only on expressions, not on ↵ | Udi Finkelstein | 2017-09-26 | 2 | -0/+29 |
|/ | | | | memories. | ||||
* | Merge pull request #421 from stephengroat/osx-travis | Clifford Wolf | 2017-09-28 | 3 | -2/+12 |
|\ | | | | | Add osx tests using brew bundle | ||||
| * | delete bad backslash | Stephen | 2017-09-27 | 1 | -1/+1 |
| | | |||||
| * | forgot to install bundles | Stephen | 2017-09-27 | 1 | -0/+1 |
| | | |||||
| * | Add osx tests using brew bundle | Stephen Groat | 2017-09-27 | 3 | -2/+11 |
|/ | |||||
* | Increase maximum LUT size in blifparse to 12 bits | Clifford Wolf | 2017-09-27 | 1 | -1/+1 |
| | |||||
* | Parse reals as string in JSON front-end | Clifford Wolf | 2017-09-26 | 1 | -0/+28 |
| | |||||
* | Merge branch 'vlogpp-inc-fixes' | Clifford Wolf | 2017-09-26 | 1 | -41/+69 |
|\ | |||||
| * | Minor coding style fix | Clifford Wolf | 2017-09-26 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of https://github.com/combinatorylogic/yosys into ↵ | Clifford Wolf | 2017-09-26 | 1 | -41/+69 |
|/| | | | | | | | combinatorylogic-master | ||||
| * | Adding support for string macros and macros with arguments after include | combinatorylogic | 2017-09-21 | 1 | -41/+69 |
| | | |||||
* | | Fix ignoring of simulation timings so that invalid module parameters cause ↵ | Clifford Wolf | 2017-09-26 | 2 | -4/+2 |
|/ | | | | syntax errors | ||||
* | Merge pull request #413 from azonenberg/extract-reduce-tweaks | Clifford Wolf | 2017-09-16 | 1 | -86/+170 |
|\ | | | | | Added support for off-chain loads in extract_reduce | ||||
| * | Added missing "break" | Andrew Zonenberg | 2017-09-15 | 1 | -0/+1 |
| | | |||||
| * | Implemented off-chain support for extract_reduce | Andrew Zonenberg | 2017-09-15 | 1 | -84/+157 |
| | | |||||
| * | extract_reduce now only removes the head of the chain, relying on "clean" to ↵ | Andrew Zonenberg | 2017-09-15 | 1 | -9/+19 |
|/ | | | | delete upstream cells. Added "-allow-off-chain" flag, but it's currently ignored. | ||||
* | Merge branch 'master' of github.com:cliffordwolf/yosys | Clifford Wolf | 2017-09-15 | 1 | -2/+2 |
|\ | |||||
| * | Merge pull request #412 from azonenberg/reduce-fixes | Clifford Wolf | 2017-09-14 | 1 | -2/+2 |
| |\ | | | | | | | extract_reduce: Fix segfault on "undriven" inputs | ||||
| | * | extract_reduce: Fix segfault on "undriven" inputs | Robert Ou | 2017-09-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | This is easily triggered when un-techmapping if the technology-specific cell library isn't loaded. Outputs of technology-specific cells will be seen as inputs, and nets using those outputs will be seen as undriven. Just ignore these cells because they can't be part of a reduce chain anyways. | ||||
* | | | Update ABC to hg rev cd6984ee82d4 | Clifford Wolf | 2017-09-15 | 1 | -2/+2 |
|/ / | |||||
* | | Merge pull request #411 from azonenberg/counter-extraction-fixes | Clifford Wolf | 2017-09-14 | 3 | -68/+183 |
|\ \ | | | | | | | Various improvements and bug fixes to extract_counter | ||||
| * | | Fixed bug where counter extraction on non-GreenPAK devices incorrectly ↵ | Andrew Zonenberg | 2017-09-14 | 1 | -32/+27 |
| | | | | | | | | | | | | handled parallel counter output | ||||
| * | | Added support for inferring counters with reset to full scale instead of zero | Andrew Zonenberg | 2017-09-14 | 1 | -4/+11 |
| | | | |||||
| * | | Added RESET_TO_MAX parameter to $__COUNT_ cell. Cannot yet be extracted. | Andrew Zonenberg | 2017-09-14 | 3 | -2/+5 |
| | | | |||||
| * | | Added support for inferring counters with active-low reset | Andrew Zonenberg | 2017-09-14 | 1 | -6/+15 |
| | | | |||||
| * | | Initial support for extraction of counters with clock enable | Andrew Zonenberg | 2017-09-14 | 2 | -30/+131 |
| | | | |||||
| * | | Fixed typo in comment. Fixed bug where extract_counter would create up ↵ | Andrew Zonenberg | 2017-09-14 | 1 | -2/+2 |
| |/ | | | | | | | counters when it meant to create down counters. | ||||
* | | Merge pull request #410 from azonenberg/opt_demorgan | Clifford Wolf | 2017-09-14 | 2 | -1/+204 |
|\ \ | |/ |/| | Added "opt_demorgan" pass (fixes #408) | ||||
| * | Minor changes to opt_demorgan requested during code review | Andrew Zonenberg | 2017-09-14 | 2 | -18/+18 |
| | |