mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	Merge branch 'master' into eddie/xilinx_srl
This commit is contained in:
		
						commit
						1ba09c4ab7
					
				
					 4 changed files with 125 additions and 28 deletions
				
			
		|  | @ -105,6 +105,7 @@ struct SynthXilinxPass : public ScriptPass | |||
| 
 | ||||
| 	std::string top_opt, edif_file, blif_file, family; | ||||
| 	bool flatten, retime, vpr, nobram, nolutram, nosrl, nocarry, nowidelut, abc9; | ||||
| 	bool flatten_before_abc; | ||||
| 	int widemux; | ||||
| 
 | ||||
| 	void clear_flags() YS_OVERRIDE | ||||
|  | @ -123,6 +124,7 @@ struct SynthXilinxPass : public ScriptPass | |||
| 		nocarry = false; | ||||
| 		nowidelut = false; | ||||
| 		abc9 = false; | ||||
| 		flatten_before_abc = false; | ||||
| 		widemux = 0; | ||||
| 	} | ||||
| 
 | ||||
|  | @ -162,6 +164,10 @@ struct SynthXilinxPass : public ScriptPass | |||
| 				flatten = true; | ||||
| 				continue; | ||||
| 			} | ||||
| 			if (args[argidx] == "-flatten_before_abc") { | ||||
| 				flatten_before_abc = true; | ||||
| 				continue; | ||||
| 			} | ||||
| 			if (args[argidx] == "-retime") { | ||||
| 				retime = true; | ||||
| 				continue; | ||||
|  | @ -387,6 +393,8 @@ struct SynthXilinxPass : public ScriptPass | |||
| 
 | ||||
| 		if (check_label("map_luts")) { | ||||
| 			run("opt_expr -mux_undef"); | ||||
| 			if (flatten_before_abc) | ||||
| 				run("flatten"); | ||||
| 			if (help_mode) | ||||
| 				run("abc -luts 2:2,3,6:5[,10,20] [-dff]", "(option for 'nowidelut', option for '-retime')"); | ||||
| 			else if (abc9) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue