Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								a7e1dcef12 
								
							 
						 
						
							
							
								
								Move register file to after registering directories, also rename to AUTO-DISCOVER  
							
							
							
						 
						
							2024-05-10 12:44:36 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								fb55287a3b 
								
							 
						 
						
							
							
								
								Add SVP extension, log auto-discovery, support gzip in verific  
							
							
							
						 
						
							2024-05-10 11:09:22 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								c7f66737aa 
								
							 
						 
						
							
							
								
								Fix Yosys to allow SV again  
							
							
							
						 
						
							2024-05-09 06:36:02 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								da8c1955af 
								
							 
						 
						
							
							
								
								Updates from YosysHQ  
							
							
							
						 
						
							2024-05-09 05:10:44 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								8841cc4d76 
								
							 
						 
						
							
							
								
								Copy all info from .f file to hdl_file_sort for better auto-discovery  
							
							
							
						 
						
							2024-05-09 04:54:57 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								b5af9b9a8a 
								
							 
						 
						
							
							
								
								Fix SystemVerilog support for .v files  
							
							
							
						 
						
							2024-05-09 04:54:00 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanović 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								1a54e8d47b 
								
							 
						 
						
							
							
								
								Merge pull request  #4379  from QuantamHD/fix_verific  
							
							... 
							
							
							
							frontend: Fixes verific import around range order 
							
						 
						
							2024-05-09 11:52:34 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ethan Mahintorabi 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								82a4a87c97 
								
							 
						 
						
							
							
								
								Fixes error with vector indicies of the form [2:7] [-12:7]  
							
							... 
							
							
							
							Make sure that we correctly adjust the value to align it to a zero
indexed list with lsb = 0
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com> 
							
						 
						
							2024-05-08 20:29:47 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								47b6738124 
								
							 
						 
						
							
							
								
								Add -auto_discover to import  
							
							
							
						 
						
							2024-05-08 04:21:30 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								2e21078a83 
								
							 
						 
						
							
							
								
								Merge branch 'YosysHQ:main' into master  
							
							
							
						 
						
							2024-05-07 18:21:19 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ethan Mahintorabi 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								c039da2ec1 
								
							 
						 
						
							
							
								
								renames variables for more code clairty  
							
							... 
							
							
							
							Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com> 
							
						 
						
							2024-05-08 01:09:52 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ethan Mahintorabi 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								a2c1b268d9 
								
							 
						 
						
							
							
								
								frontend: Fixes verific import around range order  
							
							... 
							
							
							
							Test Case
```
module packed_dimensions_range_ordering (
    input  wire [0:4-1] in,
    output wire [4-1:0] out
);
  assign out = in;
endmodule : packed_dimensions_range_ordering
module instanciates_packed_dimensions_range_ordering (
    input  wire [4-1:0] in,
    output wire [4-1:0] out
);
  packed_dimensions_range_ordering U0 (
      .in (in),
      .out(out)
  );
endmodule : instanciates_packed_dimensions_range_ordering
```
```
// with verific, does not pass formal
module instanciates_packed_dimensions_range_ordering(in, out);
  input [3:0] in;
  wire [3:0] in;
  output [3:0] out;
  wire [3:0] out;
  assign out = { in[0], in[1], in[2], in[3] };
endmodule
// with surelog, passes formal
module instanciates_packed_dimensions_range_ordering(in, out);
  input [3:0] in;
  wire [3:0] in;
  output [3:0] out;
  wire [3:0] out;
  assign out = in;
endmodule
```
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com> 
							
						 
						
							2024-05-08 01:00:06 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Krystine Sherwin 
								
							 
						 
						
							
							
							
							
								
							
							
								df95ea824b 
								
							 
						 
						
							
							
								
								read_verilog: Add missing defaults for flags  
							
							... 
							
							
							
							Fix for YosysHQ/sby#103  
							
						 
						
							2024-05-07 20:25:36 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								8c330c0e4b 
								
							 
						 
						
							
							
								
								Merge branch 'YosysHQ:main' into master  
							
							
							
						 
						
							2024-04-29 22:22:47 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									George Rennie 
								
							 
						 
						
							
							
							
							
								
							
							
								4e6deb53b6 
								
							 
						 
						
							
							
								
								read_aiger: Fix incorrect read of binary Aiger without outputs  
							
							... 
							
							
							
							* Also makes all ascii parsing finish reading lines and adds a small
  test 
							
						 
						
							2024-04-29 14:06:58 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								45b723d6f3 
								
							 
						 
						
							
							
								
								Merge branch 'YosysHQ:main' into master  
							
							
							
						 
						
							2024-04-25 06:24:57 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									KrystalDelusion 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								c3ae33da33 
								
							 
						 
						
							
							
								
								Merge pull request  #4285  from YosysHQ/typo_fixup  
							
							... 
							
							
							
							Typo fixing 
							
						 
						
							2024-04-25 09:54:48 +12:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								3945e6ecff 
								
							 
						 
						
							
							
								
								Merge branch 'YosysHQ:main' into master  
							
							
							
						 
						
							2024-04-16 10:59:45 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								af94123730 
								
							 
						 
						
							
							
								
								verific: expose library name as module attribute  
							
							
							
						 
						
							2024-04-15 17:01:07 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								6a3bb58d5d 
								
							 
						 
						
							
							
								
								Updates from yosys  
							
							
							
						 
						
							2024-04-14 18:53:44 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									N. Engelhardt 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								3d5e23e585 
								
							 
						 
						
							
							
								
								Merge pull request  #4302  from YosysHQ/vhdl_2019  
							
							... 
							
							
							
							Verific support for VHDL 2019 
							
						 
						
							2024-04-09 18:25:05 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									N. Engelhardt 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								18afa36acd 
								
							 
						 
						
							
							
								
								Merge pull request  #4273  from YosysHQ/vhdl_params  
							
							... 
							
							
							
							verific: Improve import VHDL constants 
							
						 
						
							2024-04-09 18:01:41 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								29e9d3ea92 
								
							 
						 
						
							
							
								
								Updates for hiding verific  
							
							
							
						 
						
							2024-04-09 07:16:22 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									akash 
								
							 
						 
						
							
							
							
							
								
							
							
								840cdb415b 
								
							 
						 
						
							
							
								
								Update Verific, add to gitmodules, remove unused/GPL features from Makefile  
							
							
							
						 
						
							2024-04-08 12:36:08 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								e3f633fae6 
								
							 
						 
						
							
							
								
								Merge branch 'YosysHQ:main' into master  
							
							
							
						 
						
							2024-04-08 12:26:40 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Catherine 
								
							 
						 
						
							
							
							
							
								
							
							
								a5441bc00c 
								
							 
						 
						
							
							
								
								fmt: FmtPart::{STRING→LITERAL},{CHARACTER→STRING}.  
							
							... 
							
							
							
							Before this commit, the `STRING` variant inserted a literal string;
the `CHARACTER` variant inserted a string. This commit renames them
to `LITERAL` and `STRING` respectively. 
							
						 
						
							2024-04-02 12:13:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								f536de0e0e 
								
							 
						 
						
							
							
								
								Verific support for VHDL 2019  
							
							
							
						 
						
							2024-03-28 13:21:55 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Akash Levy 
								
							 
						 
						
							
							
							
							
								
							
							
								dd35d2da23 
								
							 
						 
						
							
							
								
								Modifications  
							
							
							
						 
						
							2024-03-21 11:31:43 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								4367e176fb 
								
							 
						 
						
							
							
								
								code split and cleanup  
							
							
							
						 
						
							2024-03-19 09:15:04 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								9eebc80170 
								
							 
						 
						
							
							
								
								handle standard types  
							
							
							
						 
						
							2024-03-18 10:35:01 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Krystine Sherwin 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								3eeefd23e3 
								
							 
						 
						
							
							
								
								Typo fixup(s)  
							
							
							
						 
						
							2024-03-18 11:09:23 +13:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								7c09fa572e 
								
							 
						 
						
							
							
								
								real number handling and default to string  
							
							
							
						 
						
							2024-03-14 10:37:56 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								4279cea33a 
								
							 
						 
						
							
							
								
								improve handling VHDL constants  
							
							
							
						 
						
							2024-03-14 10:37:56 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								858eae5572 
								
							 
						 
						
							
							
								
								verific_const: convert VHDL values to RTLIL consts  
							
							
							
						 
						
							2024-03-14 10:37:56 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Povišer 
								
							 
						 
						
							
							
							
							
								
							
							
								b16f4900fd 
								
							 
						 
						
							
							
								
								ast/simplify: Interpret hdlname w/o expecting backslash  
							
							
							
						 
						
							2024-02-13 21:38:41 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Catherine 
								
							 
						 
						
							
							
							
							
								
							
							
								d8ce26a5ba 
								
							 
						 
						
							
							
								
								read_verilog: correctly format hdlname attribute value.  
							
							... 
							
							
							
							The leading slash is not a part of the attribute as it only concerns
public values. 
							
						 
						
							2024-02-13 18:41:53 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								ae7daf99f4 
								
							 
						 
						
							
							
								
								Verific: Add attributes to module instantiation  
							
							
							
						 
						
							2024-02-12 09:53:47 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dag Lem 
								
							 
						 
						
							
							
							
							
								
							
							
								f09ea16bd1 
								
							 
						 
						
							
							
								
								Resolve struct member multiple dimensions defined in stages with typedef  
							
							
							
						 
						
							2024-02-11 11:26:52 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dag Lem 
								
							 
						 
						
							
							
							
							
								
							
							
								03f35c3def 
								
							 
						 
						
							
							
								
								Resolve multiple dimensions defined in stages with typedef  
							
							
							
						 
						
							2024-02-11 11:26:52 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dag Lem 
								
							 
						 
						
							
							
							
							
								
							
							
								e0d3977e19 
								
							 
						 
						
							
							
								
								Add support for $dimensions and $unpacked_dimensions  
							
							
							
						 
						
							2024-02-11 11:26:52 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dag Lem 
								
							 
						 
						
							
							
							
							
								
							
							
								2125357e76 
								
							 
						 
						
							
							
								
								Add support for $increment  
							
							
							
						 
						
							2024-02-11 11:26:52 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dag Lem 
								
							 
						 
						
							
							
							
							
								
							
							
								88d9e213cb 
								
							 
						 
						
							
							
								
								Decoding of a few more AST nodes in dumpVlog  
							
							
							
						 
						
							2024-02-11 11:26:52 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dag Lem 
								
							 
						 
						
							
							
							
							
								
							
							
								39fea32c6e 
								
							 
						 
						
							
							
								
								Add support for packed multidimensional arrays  
							
							... 
							
							
							
							* Generalization of dimensions metadata (also simplifies $size et al.)
* Parsing and elaboration of multidimensional packed ranges 
							
						 
						
							2024-02-11 11:26:52 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Catherine 
								
							 
						 
						
							
							
							
							
								
							
							
								1236bb65b6 
								
							 
						 
						
							
							
								
								read_verilog: don't include empty opt_sva_label in span.  
							
							... 
							
							
							
							Consider this SystemVerilog file:
    module top(...);
      input clk;
      input [7:0] data;
      input ack;
      always @(posedge clk)
        if (ack) begin
          assert(data != 8'h0a);
        end
    endmodule
Before this commit, the span for the assert was:
        if (ack) begin>
          assert(data != 8'h0a)<;
After this commit, the span for the assert is:
        if (ack) begin
          >assert(data != 8'h0a)<;
This helps editor integrations that only look at the beginning
of the span. 
							
						 
						
							2024-02-08 14:25:35 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanović 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								5d3e4c5c7a 
								
							 
						 
						
							
							
								
								Merge pull request  #4182  from QuantamHD/fix_aldff  
							
							... 
							
							
							
							verific: Improves aldff inference in verific importer 
							
						 
						
							2024-02-06 08:19:43 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									N. Engelhardt 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								2422dd6845 
								
							 
						 
						
							
							
								
								Merge pull request  #4153  from Coloquinte/blif_delay_constraints  
							
							... 
							
							
							
							Issue a warning instead of a syntax error for blif delay constraints 
							
						 
						
							2024-02-05 15:14:05 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ethan Mahintorabi 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								ff578ecabd 
								
							 
						 
						
							
							
								
								fix formatting  
							
							... 
							
							
							
							Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com> 
							
						 
						
							2024-02-05 07:23:04 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ethan Mahintorabi 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								bc66dfd9ea 
								
							 
						 
						
							
							
								
								verific: Fixes incorrect aldff inference in verific importer  
							
							... 
							
							
							
							The following SV module at HEAD imported with verific,
```systemverilog
    module my_module(
      input logic [4:0] a,
      input logic clk,
      input logic enable,
      output logic [4:0] z
    );
    reg [4:0] pipeline_register;
    always @(posedge clk) begin
      pipeline_register <= enable ? a : pipeline_register;
    end
    assign z = pipeline_register;
    endmodule : my_module
```
results in the following output verilog
```systemverilog
/* Generated by 0.36 */
(* top =  1  *)
(* hdlname = "my_module" *)
(* src = "/tmp/temp_directory_zTwd0l/my_input.v:2.12-2.21" *)
module my_module(clk, enable, a, z);
  wire [4:0] _0_;
  (* src = "/tmp/temp_directory_zTwd0l/my_input.v:3.25-3.26" *)
  input [4:0] a;
  wire [4:0] a;
  (* src = "/tmp/temp_directory_zTwd0l/my_input.v:4.19-4.22" *)
  input clk;
  wire clk;
  (* src = "/tmp/temp_directory_zTwd0l/my_input.v:5.19-5.25" *)
  input enable;
  wire enable;
  (* src = "/tmp/temp_directory_zTwd0l/my_input.v:6.26-6.27" *)
  output [4:0] z;
  wire [4:0] z;
  (* src = "/tmp/temp_directory_zTwd0l/my_input.v:10.12-12.8" *)
  \$aldff  #(
    .ALOAD_POLARITY(32'd1),
    .CLK_POLARITY(32'd1),
    .WIDTH(32'd5)
  ) _1_ (
    .AD(5'hxx),
    .ALOAD(1'h0),
    .CLK(clk),
    .D(_0_),
    .Q(z)
  );
  (* src = "/tmp/temp_directory_zTwd0l/my_input.v:11.28-11.58" *)
  \$mux  #(
    .WIDTH(32'd5)
  ) _2_ (
    .A(z),
    .B(a),
    .S(enable),
    .Y(_0_)
  );
endmodule
```
Yosys is incorrectly infering aldffs due to an incorrect conversion
of logical 1 and 0 SigBits.
My PR unifies the conversion of Verific::Net objects into SigBits using
Yosys' internal representation of special signals like 0,1,x,z. After
my PR these signals are correctly converted into DFFs.
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com> 
							
						 
						
							2024-02-05 07:10:25 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Catherine 
								
							 
						 
						
							
							
							
							
								
							
							
								c7bf0e3b8f 
								
							 
						 
						
							
							
								
								Add new $check cell to represent assertions with a message.  
							
							
							
						 
						
							2024-02-01 20:10:39 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Miodrag Milanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								db1de5fe5d 
								
							 
						 
						
							
							
								
								verific: add option to skip simplifying complex ports  
							
							
							
						 
						
							2024-01-30 16:33:44 +01:00