File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
- static const char * _pln_VERSION_STR = " pln0345 " ;
1
+ static const char * _pln_VERSION_STR = " pln0346 " ;
2
2
3
3
#include " RS/rsEnv.h"
4
4
#include " util/pln_log.h"
Original file line number Diff line number Diff line change @@ -166,7 +166,10 @@ void PinPlacer::print_stats(const PcCsvReader& csv) const {
166
166
ls << " Fullchip_N: " << bcd.fullchipName_ ;
167
167
if (tr >= 4 ) {
168
168
ls << " isInp:" << int (bcd.isInput ());
169
- ls << " colM_dir: " << bcd.str_colM_dir ();
169
+ ls << " colM: " << bcd.str_colM_dir ();
170
+ if (tr >= 5 ) {
171
+ ls << " pp->origPN: " << pp->orig_pin_name_ ;
172
+ }
170
173
}
171
174
}
172
175
flush_out (true );
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ struct Pin {
19
19
string orig_pin_name_; // never translated
20
20
string udes_pin_name_; // maybe translated
21
21
string trans_pin_name_; // translated due to netlist edits
22
+ string placed_pin_name_;
22
23
23
24
string device_pin_name_;
24
25
Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ bool PinPlacer::read_and_write() {
322
322
323
323
// if auto-PCF and has_edits_, translate and de-duplicate
324
324
// user-design ports now, since edits.json could remove some design ports.
325
- if (not pin_names_translated_)
325
+ if (! pin_names_translated_ and !is_fabric_blif_ )
326
326
transCnt_ = translatePinNames (" (auto-PCF)" );
327
327
328
328
// de-duplicate inputs
You can’t perform that action at this time.
0 commit comments