aboutsummaryrefslogtreecommitdiffstats
path: root/frontends
Commit message (Expand)AuthorAgeFilesLines
* Fixed build of verific bindingsClifford Wolf2014-07-311-11/+11
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-313-85/+85
* Added module->design and cell->module, wire->module pointersClifford Wolf2014-07-314-11/+11
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-3116-47/+108
* Fixed counting verilog line numbers for "// synopsys translate_off" sectionsClifford Wolf2014-07-302-4/+4
* Fixed Verilog pre-processor for files with no trailing newlineClifford Wolf2014-07-291-1/+1
* Added $shift and $shiftx cell types (needed for correct part select behavior)Clifford Wolf2014-07-291-5/+11
* Removed left over debug codeClifford Wolf2014-07-282-2/+0
* Fixed part selects of parametersClifford Wolf2014-07-282-7/+31
* Set results of out-of-bounds static bit/part select to undefClifford Wolf2014-07-281-5/+31
* Fixed RTLIL code generator for part select of parameterClifford Wolf2014-07-281-2/+2
* Fixed width detection for part selectsClifford Wolf2014-07-281-2/+2
* Added support for "upto" wires to Verilog front- and back-endClifford Wolf2014-07-284-13/+17
* Added wire->upto flag for signals such as "wire [0:7] x;"Clifford Wolf2014-07-283-1/+8
* Using log_assert() instead of assert()Clifford Wolf2014-07-288-38/+32
* Fixed signdness detection of expressions with bit- and part-selectsClifford Wolf2014-07-281-0/+1
* Added proper Design->addModule interfaceClifford Wolf2014-07-271-0/+1
* Fixed verific bindings for new RTLIL apiClifford Wolf2014-07-272-55/+42
* Fixed ilang parser for new RTLIL APIClifford Wolf2014-07-271-10/+10
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-272-7/+7
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-2/+2
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-272-8/+8
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-262-16/+11
* Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-261-1/+1
* Manual fixes for new cell connections APIClifford Wolf2014-07-262-3/+3
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-263-88/+88
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-263-89/+89
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-253-113/+34
* Fixed two memory leaks in ast simplifyClifford Wolf2014-07-251-1/+6
* Updated verific build/test instructionsClifford Wolf2014-07-252-13/+11
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-241-7/+7
* Added "make PRETTY=1"Clifford Wolf2014-07-242-6/+6
* Various fixes in Verific frontend for new RTLIL APIClifford Wolf2014-07-232-27/+55
* Various small fixes (from gcc compiler warnings)Clifford Wolf2014-07-231-1/+1
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-11/+0
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 3/3Clifford Wolf2014-07-231-2/+2
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 2/3Clifford Wolf2014-07-231-2/+2
* SigSpec refactoring: More cleanups of old SigSpec use patternClifford Wolf2014-07-221-3/+6
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, created...Clifford Wolf2014-07-221-1/+1
* SigSpec refactoring: change RTLIL::SigSpec::size() to be read-onlyClifford Wolf2014-07-222-92/+17
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-223-82/+82
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-223-82/+82
* Fixed ilang parsing of process attributesClifford Wolf2014-07-221-0/+1
* Fixed make rules for ilang parserClifford Wolf2014-07-221-1/+3
* Added "autoidx" statement to ilang file formatClifford Wolf2014-07-212-25/+10
* Replaced depricated NEW_WIRE macro with module->addWire() callsClifford Wolf2014-07-211-10/+10
* Removed deprecated module->new_wire()Clifford Wolf2014-07-211-5/+5
* Implemented dynamic bit-/part-select for memory writesClifford Wolf2014-07-171-2/+26
* Added support for bit/part select to mem2reg rewriterClifford Wolf2014-07-171-0/+9
* Added support for constant bit- or part-select for memory writesClifford Wolf2014-07-171-9/+36