aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Added std::initializer_list<> constructor to SigSpecClifford Wolf2014-07-282-0/+15
| |
* | Added cover() to all SigSpec constructorsClifford Wolf2014-07-281-0/+22
| |
* | Fixed signdness detection of expressions with bit- and part-selectsClifford Wolf2014-07-281-0/+1
| |
* | Improvements in tests/vloghtbClifford Wolf2014-07-282-11/+17
| |
* | Added techmap -externClifford Wolf2014-07-273-17/+92
| |
* | Added proper Design->addModule interfaceClifford Wolf2014-07-273-4/+43
| |
* | Added topological sorting to techmapClifford Wolf2014-07-272-21/+54
| |
* | Added SigPool::check(bit)Clifford Wolf2014-07-272-2/+7
| |
* | Small improvements in PerformanceTimer APIClifford Wolf2014-07-271-6/+7
| |
* | Fixed bug in opt_cleanClifford Wolf2014-07-271-1/+1
| |
* | Improved performance of opt_const on large modulesClifford Wolf2014-07-272-29/+157
| |
* | Added RTLIL::SigSpec::remove_const() handling of packed SigSpecsClifford Wolf2014-07-271-9/+26
| |
* | Added RTLIL::SigSpecConstIteratorClifford Wolf2014-07-271-0/+18
| |
* | Fixed a bug in opt_clean and some RTLIL API usage cleanupsClifford Wolf2014-07-272-13/+14
| |
* | Added log_cmd_error_expectionClifford Wolf2014-07-274-8/+7
| |
* | Fixed verific bindings for new RTLIL apiClifford Wolf2014-07-272-55/+42
| |
* | Fixed ilang parser for new RTLIL APIClifford Wolf2014-07-271-10/+10
| |
* | Using new obj iterator API in a few placesClifford Wolf2014-07-2710-87/+85
| |
* | Added RTLIL::Module::wire(id) and cell(id) lookup functionsClifford Wolf2014-07-272-2/+20
| |
* | Added RTLIL::Design::modules()Clifford Wolf2014-07-271-0/+3
| |
* | Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-2773-223/+223
| |
* | Added conversion from ObjRange to std::vector and std::setClifford Wolf2014-07-271-0/+15
| |
* | Added RTLIL::ObjIterator and RTLIL::ObjRangeClifford Wolf2014-07-272-7/+111
| |
* | Using std::move() in SigSpec move constructorClifford Wolf2014-07-271-4/+4
| |
* | Added RTLIL::SigSpec move constructor and move assignment operatorClifford Wolf2014-07-271-0/+15
| |
* | Mostly cosmetic changes to rtlil.hClifford Wolf2014-07-271-17/+57
| |
* | Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-2761-152/+152
| |
* | Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-2750-191/+191
| |
* | New message for completion of buildClifford Wolf2014-07-261-1/+1
| |
* | Changed more code to the new RTLIL::Wire constructorsClifford Wolf2014-07-268-81/+52
| |
* | Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-2619-218/+150
| |
* | Added tests/various/.gitignoreClifford Wolf2014-07-261-0/+1
| |
* | Added tests/various/submod_extract.ysClifford Wolf2014-07-263-0/+28
| |
* | Added support for here documentsClifford Wolf2014-07-263-18/+63
| |
* | More RTLIL::Cell API usage cleanupsClifford Wolf2014-07-265-39/+39
| |
* | Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-2612-27/+33
| |
* | Merge automatic and manual code changes for new cell connections APIClifford Wolf2014-07-2661-1201/+1247
|\ \
| * | Manual fixes for new cell connections APIClifford Wolf2014-07-2636-123/+169
| | |
| * | Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-2661-1201/+1201
|/ / | | | | | | | | | | | | | | | | 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;'
* | Added some missing "const" in rtlil.hClifford Wolf2014-07-262-9/+9
| |
* | Added RTLIL::Module::connections()Clifford Wolf2014-07-262-0/+6
| |
* | Added RTLIL::Module::connect(const RTLIL::SigSig&)Clifford Wolf2014-07-262-0/+6
| |
* | Use "wget -N" in tests/vloghtb/run-test.shClifford Wolf2014-07-261-2/+2
| |
* | Added "passed" message to make test targetsClifford Wolf2014-07-261-0/+9
| |
* | Automatically pack SigSpec on copy/assignClifford Wolf2014-07-262-17/+63
| |
* | Added new RTLIL::Cell port access methodsClifford Wolf2014-07-262-0/+71
| |
* | Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-2662-1213/+1234
| |
* | Cosmetic fixes for "make abc"Clifford Wolf2014-07-261-2/+3
| |
* | Added "Checklist for adding internal cell types"Clifford Wolf2014-07-261-2/+26
| |
* | Added copy-constructor-like module->addCell(name, other) methodClifford Wolf2014-07-264-20/+17
| |