aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.cc
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #1858 from YosysHQ/eddie/fix1856Eddie Hung2020-04-091-1/+1
|\
| * kernel: include "kernel/constids.inc" instead of "constids.inc"Eddie Hung2020-04-091-1/+1
* | [NFCI] Deduplicate builtin FF cell types listMarcelina Koƛcielnicka2020-04-091-0/+47
|/
* kernel: big fat patch to use more ID::*, otherwise ID(*)Eddie Hung2020-04-021-410/+410
* kernel: Use constids.inc for global/constant IdStringsEddie Hung2020-04-021-6/+4
* Merge pull request #1845 from YosysHQ/eddie/kernel_speedupEddie Hung2020-04-021-288/+244
|\
| * kernel: pass-by-value into Design::scratchpad_set_string() tooEddie Hung2020-03-271-2/+2
| * kernel: Cell::set{Port,Param}() to pass by value, but use std::moveEddie Hung2020-03-261-5/+5
| * kernel: SigSpec copies to not trigger pack()Eddie Hung2020-03-181-33/+4
| * kernel: more pass by const ref, more speedupsEddie Hung2020-03-181-180/+174
| * kernel: speedupEddie Hung2020-03-181-30/+23
| * kernel: fix DeleteWireWorkerEddie Hung2020-03-171-9/+4
| * kernel: SigSpec use more const& + overloads to prevent implicit SigSpecEddie Hung2020-03-131-31/+39
| * kernel: optimise Module::remove(const pool<RTLIL::Wire*>()Eddie Hung2020-03-121-10/+5
* | Add support for SystemVerilog-style `define to Verilog frontendRupert Swarbrick2020-03-271-0/+2
|/
* Closes #1717. Add more precise Verilog source location information to AST and...Alberto Gonzalez2020-02-231-2/+0
* specify: system timing checks to accept min:typ:max tripleEddie Hung2020-02-131-2/+6
* Add RTLIL::constpad, init by yosys_setup(); use for abc9Eddie Hung2020-01-081-0/+1
* Always create $shl, $shr, $sshl, $sshr cells with unsigned B inputsClifford Wolf2020-01-021-4/+25
* kernel: require \B_SIGNED=0 on $shl, $sshl, $shr, $sshr.whitequark2019-12-041-3/+21
* Fix for SigSpec() == SigSpec(State::Sx, 0) to be true againEddie Hung2019-10-041-0/+6
* Fix typoEddie Hung2019-09-301-1/+1
* Avoid work in replace() if rules empty.Henner Zeller2019-09-291-0/+2
* Use more ID::{A,B,Y,blackbox,whitebox}Eddie Hung2019-08-151-96/+96
* Add YOSYS_NO_IDS_REFCNT configuration macroClifford Wolf2019-08-111-1/+3
* Use ID() in kernel/*, add simple ID:: hack (to be improved upon later)Clifford Wolf2019-08-111-578/+585
* More improvements and cleanups in IdString subsystemClifford Wolf2019-08-111-0/+2
* RTLIL::S{0,1} -> State::S{0,1}Eddie Hung2019-08-071-6/+6
* stoi -> atoiEddie Hung2019-08-071-3/+3
* Fix typosEddie Hung2019-08-061-2/+2
* Use std::stoi instead of atoi(<str>.c_str())Eddie Hung2019-08-061-3/+3
* Use IdString::begins_with()Eddie Hung2019-08-061-4/+4
* Make liberal use of IdString.in()Eddie Hung2019-08-061-1/+1
* Add $_NMUX_, add "abc -g cmos", add proper cmos cell costsClifford Wolf2019-08-061-0/+2
* In RTLIL::Module::check(), check process invariants.whitequark2019-06-191-1/+28
* Add rewrite_sigspecs2, Improve remove() wiresClifford Wolf2019-05-151-7/+22
* Minor optimization to get_attribute_boolMatthew Daiter2019-05-071-4/+8
* Merge remote-tracking branch 'origin/master' into clifford/specifyEddie Hung2019-05-031-1/+1
|\
| * Fix performance bug in RTLIL::SigSpec::operator==(), fixes #970Clifford Wolf2019-04-301-1/+1
* | Improve $specrule interfaceClifford Wolf2019-04-231-2/+2
* | Improve $specrule interfaceClifford Wolf2019-04-231-1/+2
* | Add $specrule cells for $setup/$hold/$skew specify rulesClifford Wolf2019-04-231-0/+15
* | Rename T_{RISE,FALL}_AVG to T_{RISE,FALL}_TYP to better match verilog std nom...Clifford Wolf2019-04-231-2/+2
* | Add InternalCellChecker support for $specify2 and $specify3Clifford Wolf2019-04-231-7/+21
* | Add specify parserClifford Wolf2019-04-231-0/+10
|/
* Merge pull request #905 from christian-krieg/feature/python_bindingsClifford Wolf2019-04-221-1/+97
|\
| * Global lists in rtlil.cc are now static objectsBenedikt Tutzer2019-04-031-10/+10
| * Merge remote-tracking branch 'origin/master' into feature/python_bindingsBenedikt Tutzer2019-03-281-3/+31
| |\
| * | added some checks if python is enabled to make sure everything compiles if py...Benedikt Tutzer2018-08-201-4/+2
| * | Added Wrappers for:Benedikt Tutzer2018-08-131-1/+31