aboutsummaryrefslogtreecommitdiffstats
path: root/passes/proc
Commit message (Expand)AuthorAgeFilesLines
* Add src attribute to extra cells generated by proc_dlatchClifford Wolf2017-09-091-7/+9
* Added $global_clock verilog syntax support for creating $ff cellsClifford Wolf2016-10-141-7/+19
* Added "proc_mux -ifx"Clifford Wolf2016-06-062-19/+43
* Fix all undef-muxes in dlatch input coneClifford Wolf2016-06-021-34/+72
* Avoid creating undef-muxes when inferring latches in proc_dlatchClifford Wolf2016-06-011-0/+44
* Fixed proc_mux performance bugClifford Wolf2016-04-251-0/+3
* Fixed performance bug in proc_dlatchClifford Wolf2016-04-241-2/+61
* More flexible handling of initialization valuesClifford Wolf2016-04-221-7/+22
* Added "yosys -D" featureClifford Wolf2016-04-218-8/+8
* Preserve empty $pmux default casesClifford Wolf2016-03-311-2/+2
* Improved proc_mux performance for huge always blocksClifford Wolf2015-12-021-36/+153
* Re-created command-reference-manual.tex, copied some doc fixes to online helpClifford Wolf2015-08-141-1/+1
* Fixed trailing whitespacesClifford Wolf2015-07-028-23/+23
* Minor fixes in handling of "init" attributeClifford Wolf2015-04-091-0/+5
* Fixed compilation problems with gcc 4.6.3; use enum instead of const ints.Clifford Wolf2015-02-241-2/+4
* Added "proc_dlatch"Clifford Wolf2015-02-123-1/+311
* Removed SigSpec::extend_xx() apiClifford Wolf2015-01-011-1/+1
* Renamed extend() to extend_xx(), changed most users to extend_u0()Clifford Wolf2014-12-241-1/+1
* Added log_warning() APIClifford Wolf2014-11-091-2/+2
* Renamed SIZE() to GetSize() because of name collision on Win32Clifford Wolf2014-10-102-2/+2
* namespace YosysClifford Wolf2014-09-277-22/+58
* Fixed handling of constant-true branches in proc_cleanClifford Wolf2014-08-122-2/+3
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-1/+1
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-313-81/+81
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-312-5/+5
* Using log_assert() instead of assert()Clifford Wolf2014-07-284-11/+8
* Using new obj iterator API in a few placesClifford Wolf2014-07-276-39/+44
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-276-6/+6
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-1/+1
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-2/+2
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-12/+3
* Manual fixes for new cell connections APIClifford Wolf2014-07-262-6/+13
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-263-82/+82
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-263-82/+82
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-252-66/+16
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-242-11/+10
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-232-6/+0
* Fixed all users of SigSpec::chunks_rw() and removed itClifford Wolf2014-07-231-5/+3
* 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
* Fixed memory corruption with new SigSpec API in proc_muxClifford Wolf2014-07-221-7/+3
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, created...Clifford Wolf2014-07-221-1/+1
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-225-82/+82
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-225-82/+82
* Replaced depricated NEW_WIRE macro with module->addWire() callsClifford Wolf2014-07-211-10/+10
* Do not create $dffsr cells with no-op resets in proc_dffClifford Wolf2014-06-191-0/+5
* Added workaround for vhdl-style edge triggers from vhdl2verilog to proc_arstClifford Wolf2014-02-211-2/+6
* Tiny cleanup in proc_mux.ccClifford Wolf2014-01-031-3/+0
* Added support for non-const === and !== (for miter circuits)Clifford Wolf2013-12-271-2/+2
* Major improvements in mem2reg and added "init" sync rulesClifford Wolf2013-11-213-0/+117
='n568' href='#n568'>568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952