Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 1 | -4/+4 |
| | | | | | | | | | o Not all derived methods were marked 'override', but it is a great feature of C++11 that we should make use of. o While at it: touched header files got a -*- c++ -*- for emacs to provide support for that language. o use YS_OVERRIDE for all override keywords (though we should probably use the plain keyword going forward now that C++11 is established) | ||||
* | Fixed gcc 7.2 "statement will never be executed" warning | Clifford Wolf | 2018-02-03 | 1 | -1/+1 |
| | |||||
* | Added avail params to ilang format, check module params in 'hierarchy -check' | Clifford Wolf | 2016-10-22 | 1 | -0/+7 |
| | |||||
* | Added $global_clock verilog syntax support for creating $ff cells | Clifford Wolf | 2016-10-14 | 1 | -0/+1 |
| | |||||
* | Added "yosys -D" feature | Clifford Wolf | 2016-04-21 | 1 | -1/+1 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 2 | -5/+5 |
| | |||||
* | Shorter "dump" options | Clifford Wolf | 2015-01-31 | 1 | -4/+4 |
| | |||||
* | Added ENABLE_NDEBUG makefile options | Clifford Wolf | 2015-01-24 | 1 | -0/+2 |
| | |||||
* | Added dict/pool.sort() | Clifford Wolf | 2015-01-24 | 1 | -50/+24 |
| | |||||
* | Fixed memory->start_offset handling | Clifford Wolf | 2015-01-01 | 1 | -0/+2 |
| | |||||
* | Replaced std::unordered_map as implementation for Yosys::dict | Clifford Wolf | 2014-12-26 | 1 | -17/+17 |
| | |||||
* | namespace Yosys | Clifford Wolf | 2014-09-27 | 1 | -0/+6 |
| | |||||
* | Sorting of object names in ilang backend | Clifford Wolf | 2014-09-19 | 2 | -21/+49 |
| | |||||
* | Changed backend-api from FILE to std::ostream | Clifford Wolf | 2014-08-23 | 2 | -134/+132 |
| | |||||
* | Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespace | Clifford Wolf | 2014-07-31 | 2 | -4/+8 |
| | |||||
* | Added wire->upto flag for signals such as "wire [0:7] x;" | Clifford Wolf | 2014-07-28 | 1 | -0/+2 |
| | |||||
* | Using log_assert() instead of assert() | Clifford Wolf | 2014-07-28 | 1 | -3/+2 |
| | |||||
* | Refactoring: Renamed RTLIL::Design::modules to modules_ | Clifford Wolf | 2014-07-27 | 1 | -2/+2 |
| | |||||
* | Refactoring: Renamed RTLIL::Module::cells to cells_ | Clifford Wolf | 2014-07-27 | 1 | -1/+1 |
| | |||||
* | Refactoring: Renamed RTLIL::Module::wires to wires_ | Clifford Wolf | 2014-07-27 | 1 | -1/+1 |
| | |||||
* | Changed users of cell->connections_ to the new API (sed command) | Clifford Wolf | 2014-07-26 | 1 | -2/+2 |
| | | | | | | | | | git grep -l 'connections_' | xargs sed -i -r -e ' s/(->|\.)connections_\["([^"]*)"\] = (.*);/\1set("\2", \3);/g; s/(->|\.)connections_\["([^"]*)"\]/\1get("\2")/g; s/(->|\.)connections_.at\("([^"]*)"\)/\1get("\2")/g; s/(->|\.)connections_.push_back/\1connect/g; s/(->|\.)connections_/\1connections()/g;' | ||||
* | Renamed RTLIL::{Module,Cell}::connections to connections_ | Clifford Wolf | 2014-07-26 | 1 | -2/+2 |
| | |||||
* | Various RTLIL::SigSpec related code cleanups | Clifford Wolf | 2014-07-25 | 1 | -2/+2 |
| | |||||
* | Replaced more old SigChunk programming patterns | Clifford Wolf | 2014-07-24 | 1 | -1/+1 |
| | |||||
* | SigSpec refactoring: using the accessor functions everywhere | Clifford Wolf | 2014-07-22 | 1 | -4/+4 |
| | |||||
* | SigSpec refactoring: renamed chunks and width to __chunks and __width | Clifford Wolf | 2014-07-22 | 1 | -4/+4 |
| | |||||
* | Added "autoidx" statement to ilang file format | Clifford Wolf | 2014-07-21 | 1 | -1/+14 |
| | |||||
* | Merged OSX fixes from Siesh1oo with some modifications | Clifford Wolf | 2014-03-13 | 1 | -0/+1 |
| | |||||
* | Added support for dump -append | Clifford Wolf | 2014-02-04 | 1 | -3/+12 |
| | |||||
* | Updated manual/command-reference-manual.tex | Clifford Wolf | 2013-12-28 | 1 | -1/+1 |
| | |||||
* | Replaced signed_parameters API with CONST_FLAG_SIGNED | Clifford Wolf | 2013-12-04 | 1 | -1/+1 |
| | |||||
* | Replaced RTLIL::Const::str with generic decoder method | Clifford Wolf | 2013-12-04 | 1 | -8/+11 |
| | |||||
* | Added dump -m and -n options | Clifford Wolf | 2013-11-29 | 2 | -54/+89 |
| | |||||
* | Added support for signed parameters in ilang | Clifford Wolf | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | Remove auto_wire framework (smarter than the verilog standard) | Clifford Wolf | 2013-11-24 | 1 | -2/+0 |
| | |||||
* | Major improvements in mem2reg and added "init" sync rules | Clifford Wolf | 2013-11-21 | 1 | -0/+1 |
| | |||||
* | Write yosys version to output files | Clifford Wolf | 2013-11-03 | 1 | -0/+1 |
| | |||||
* | Added -selected option to various backends | Clifford Wolf | 2013-09-03 | 1 | -3/+20 |
| | |||||
* | Fixed generation of newlines in "dump" output | Clifford Wolf | 2013-06-10 | 1 | -3/+4 |
| | |||||
* | Added "dump" command (part ilang backend) | Clifford Wolf | 2013-06-02 | 2 | -13/+103 |
| | |||||
* | Added more help messages | Clifford Wolf | 2013-03-01 | 1 | -1/+11 |
| | |||||
* | initial import | Clifford Wolf | 2013-01-05 | 3 | -0/+356 |