aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/verilog/verilog_lexer.l
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix handling of cases that look like sva labels, fixes #862Clifford Wolf2019-03-101-49/+10
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Also add support for labels on sva module items, fixes #699Clifford Wolf2019-03-081-5/+52
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Bugfix in Verilog string handlingClifford Wolf2019-01-051-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Merge pull request #659 from rubund/sv_interfacesClifford Wolf2018-10-181-0/+8
|\ | | | | Support for SystemVerilog interfaces and modports
| * Synthesis support for SystemVerilog interfacesRuben Undheim2018-10-121-0/+8
| | | | | | | | This time doing the changes mostly in AST before RTLIL generation
* | ignore protect endprotectargama2018-10-161-0/+3
|/
* Add "make coverage"Clifford Wolf2018-08-271-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Merge pull request #513 from udif/pr_reg_wire_errorClifford Wolf2018-08-151-1/+1
|\ | | | | Add error checking for reg/wire/logic misuse - PR now passes 'make test' (plus a new test)
| * This PR should be the base for discussion, do not merge it yet!Udi Finkelstein2018-03-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | It correctly detects reg/wire mix and incorrect use on blocking,nonblocking assignments within blocks and assign statements. What it DOES'T do: Detect registers connected to output ports of instances. Where it FAILS: memorty nonblocking assignments causes spurious (I assume??) errors on yosys-generated "_ADDR", "_DATA", "EN" signals. You can test it with tests/simple/reg_wire_error.v (look inside for the comments to enable/disable specific lines)
* | Support more character literalsDan Gisselquist2018-05-031-1/+9
| |
* | First draft of Verilog parser support for specify blocks and parameters.Udi Finkelstein2018-03-271-0/+3
|/ | | | | The only functionality of this code at the moment is to accept correct specify syntax and ignore it. No part of the specify block is added to the AST
* Add Verilog "automatic" keyword (ignored in synthesis)Clifford Wolf2017-11-231-0/+1
|
* Fix ignoring of simulation timings so that invalid module parameters cause ↵Clifford Wolf2017-09-261-4/+0
| | | | syntax errors
* Add $live and $fair cell types, add support for s_eventually keywordClifford Wolf2017-02-251-0/+3
|
* Add support for SystemVerilog unique, unique0, and priority caseClifford Wolf2017-02-231-0/+4
|
* Added SystemVerilog support for ++ and --Clifford Wolf2017-02-231-1/+3
|
* Add checker support to verilog front-endClifford Wolf2017-02-091-9/+11
|
* Add SV "rand" and "const rand" supportClifford Wolf2017-02-081-2/+4
|
* Add $cover cell type and SVA cover() supportClifford Wolf2017-02-041-0/+1
|
* Add "enum" and "typedef" lexer supportClifford Wolf2017-01-171-0/+3
|
* Removed $predict againClifford Wolf2016-08-281-1/+0
|
* Added read_verilog -norestrict -assume-assertsClifford Wolf2016-08-261-1/+1
|
* Added SV "restrict" keywordClifford Wolf2016-08-241-1/+2
|
* After reading the SV spec, using non-standard predict() instead of expect()Clifford Wolf2016-07-211-1/+5
|
* Added basic support for $expect cellsClifford Wolf2016-07-131-0/+1
|
* Added support for SystemVerilog packages with localparam definitionsRuben Undheim2016-06-181-0/+4
|
* SystemVerilog also has assume(), added implicit -D FORMALClifford Wolf2015-10-131-1/+1
|
* Fixed support for $write system taskClifford Wolf2015-09-231-1/+1
|
* Another block of spelling fixesLarry Doolittle2015-08-141-2/+2
| | | | Smaller this time
* Adjust makefiles to work with out-of-tree buildsClifford Wolf2015-08-121-1/+1
| | | | This is based on work done by Larry Doolittle
* Fixed trailing whitespacesClifford Wolf2015-07-021-2/+2
|
* Ignore celldefine directive in verilog front-endClifford Wolf2015-03-251-0/+3
|
* Added non-std verilog assume() statementClifford Wolf2015-02-261-2/+3
|
* Fixed handling of "//" in filenames in verilog pre-processorClifford Wolf2015-02-141-0/+4
|
* Ignoring more system task and functionsClifford Wolf2015-01-151-1/+1
|
* Improved some warning messagesClifford Wolf2014-12-271-6/+18
|
* Fixed minor bug in parsing delaysClifford Wolf2014-11-241-1/+4
|
* Fixed two minor bugs in constant parsingClifford Wolf2014-11-241-2/+2
|
* Added log_warning() APIClifford Wolf2014-11-091-6/+6
|
* Re-introduced Yosys::readsome() helper functionClifford Wolf2014-10-231-5/+1
| | | | (f.read() + f.gcount() made problems with lines > 16kB)
* Updated lexers & parsers to include prefixesWilliam Speirs2014-10-151-0/+359
785' href='#n785'>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 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087