yosys/passes/proc
Clifford Wolf b7dda72302 Changed users of cell->connections_ to the new API (sed command)
git grep -l 'connections_' | xargs sed -i -r -e '
	s/(->|\.)connections_\["([^"]*)"\] = (.*);/\1set("\2", \3);/g;
	s/(->|\.)connections_\["([^"]*)"\]/\1get("\2")/g;
	s/(->|\.)connections_.at\("([^"]*)"\)/\1get("\2")/g;
	s/(->|\.)connections_.push_back/\1connect/g;
	s/(->|\.)connections_/\1connections()/g;'
2014-07-26 15:58:23 +02:00
..
Makefile.inc Major improvements in mem2reg and added "init" sync rules 2013-11-21 13:49:00 +01:00
proc.cc Major improvements in mem2reg and added "init" sync rules 2013-11-21 13:49:00 +01:00
proc_arst.cc Changed users of cell->connections_ to the new API (sed command) 2014-07-26 15:58:23 +02:00
proc_clean.cc SigSpec refactoring: using the accessor functions everywhere 2014-07-22 20:39:37 +02:00
proc_dff.cc Changed users of cell->connections_ to the new API (sed command) 2014-07-26 15:58:23 +02:00
proc_init.cc Replaced more old SigChunk programming patterns 2014-07-24 23:10:58 +02:00
proc_mux.cc Changed users of cell->connections_ to the new API (sed command) 2014-07-26 15:58:23 +02:00
proc_rmdead.cc Added help messages to proc_* passes 2013-03-01 09:26:29 +01:00