aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
Commit message (Expand)AuthorAgeFilesLines
* Added module->design and cell->module, wire->module pointersClifford Wolf2014-07-311-5/+5
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-314-39/+55
* 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-281-0/+3
* Using log_assert() instead of assert()Clifford Wolf2014-07-283-31/+30
* 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
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-5/+5
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-5/+5
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-13/+9
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-2/+2
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-24/+24
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-261-24/+24
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-54/+19
* Fixed two memory leaks in ast simplifyClifford Wolf2014-07-251-1/+6
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-241-7/+7
* Various small fixes (from gcc compiler warnings)Clifford Wolf2014-07-231-1/+1
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-11/+0
* 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-221-55/+11
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-60/+60
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-60/+60
* 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
* changes in verilog frontend for new $mem/$memwr WR_EN interfaceClifford Wolf2014-07-162-7/+6
* Fixed processing of initial values for block-local variablesClifford Wolf2014-07-111-0/+5
* Fixed handling of mixed real/int ternary expressionsClifford Wolf2014-06-251-0/+16
* More found_real-related fixes to AstNode::detectSignWidthWorkerClifford Wolf2014-06-241-6/+6
* fixed signdness detection for expressions with realsClifford Wolf2014-06-211-2/+8
* Added AstNode::MEM2REG_FL_CMPLX_LHSClifford Wolf2014-06-172-0/+23
* Improved handling of relational op of real valuesClifford Wolf2014-06-171-8/+9
* Improved ternary support for real valuesClifford Wolf2014-06-161-13/+24
* Use undef (x/z vs. NaN) rules for real values from IEEE Std 1800-2012Clifford Wolf2014-06-162-0/+11
* Added found_real feature to AstNode::detectSignWidthClifford Wolf2014-06-162-6/+11
* Improved AstNode::realAsConst for large numbersClifford Wolf2014-06-151-1/+1
* Improved AstNode::asReal for large integersClifford Wolf2014-06-152-10/+13
* improved (fixed) conversion of real values to bit vectorsClifford Wolf2014-06-144-11/+30
* Fixed relational operators for const real expressionsClifford Wolf2014-06-141-8/+8
* Added support for math functionsClifford Wolf2014-06-141-0/+70
* Added handling of real-valued parameters/localparamsClifford Wolf2014-06-142-17/+47
* Implemented more real arithmeticClifford Wolf2014-06-141-27/+70
* Implemented basic real arithmeticClifford Wolf2014-06-143-6/+51