@@ -2469,11 +2469,6 @@ ReportPath::reportPathLine(const Path *path,
24692469 std::string src_attr;
24702470 if (inst)
24712471 src_attr = network_->getAttribute (inst, " src" );
2472- std::string orig_name;
2473- if (inst && field_orig_name_->enabled ()) {
2474- std::string port_name = network_->portName (pin);
2475- orig_name = network_->getAttribute (inst, " orig_name_" + port_name);
2476- }
24772472 // Don't show capacitance field for input pins.
24782473 if (is_driver && field_capacitance_->enabled ())
24792474 cap = graph_delay_calc_->loadCap (pin, rf, scene, min_max);
@@ -2756,11 +2751,6 @@ ReportPath::reportPath6(const Path *path,
27562751 std::string src_attr;
27572752 if (inst)
27582753 src_attr = network_->getAttribute (inst, " src" );
2759- std::string orig_name;
2760- if (inst && field_orig_name_->enabled ()) {
2761- std::string port_name = network_->portName (pin);
2762- orig_name = network_->getAttribute (inst, " orig_name_" + port_name);
2763- }
27642754 // Always show the search start point (register clk pin).
27652755 // Skip reporting the clk tree unless it is requested.
27662756 if (is_clk_start
@@ -2853,13 +2843,13 @@ ReportPath::reportPath6(const Path *path,
28532843 const std::string what = descriptionField (vertex);
28542844 reportLine (what, path1, cap, slew, fanout,
28552845 incr, field_blank_, time, false , min_max, rf, src_attr,
2856- orig_name, line_case);
2846+ line_case);
28572847
28582848 if (report_net_) {
28592849 const std::string what2 = descriptionNet (pin);
28602850 reportLine (what2, path1, field_blank_, field_blank_, field_blank_,
28612851 field_blank_, field_blank_, field_blank_, false , min_max,
2862- nullptr , src_attr, " " , " " );
2852+ nullptr , src_attr, " " );
28632853 }
28642854 prev_time = time;
28652855 }
@@ -2872,7 +2862,7 @@ ReportPath::reportPath6(const Path *path,
28722862 const std::string what = descriptionField (vertex);
28732863 reportLine (what, path1, field_blank_, slew, field_blank_,
28742864 incr, field_blank_, time, false , min_max, rf, src_attr,
2875- orig_name, line_case);
2865+ line_case);
28762866 prev_time = time;
28772867 }
28782868 }
@@ -2897,27 +2887,27 @@ ReportPath::reportVariation(const Path *path) const
28972887 float std_dev = arc_delay.stdDev ();
28982888 reportLine (" sigma" , path, field_blank_, field_blank_, field_blank_,
28992889 field_blank_, std_dev, field_blank_, true , min_max,
2900- nullptr , " " , " " , " " );
2890+ nullptr , " " , " " );
29012891 break ;
29022892 }
29032893 case PocvMode::skew_normal: {
29042894 float mean = arc_delay.mean ();
29052895 reportLine (" mean" , path, field_blank_, field_blank_, field_blank_,
29062896 field_blank_, mean, field_blank_, true , min_max,
2907- nullptr , " " , " " , " " );
2897+ nullptr , " " , " " );
29082898 float mean_shift = arc_delay.meanShift ();
29092899 reportLine (" mean_shift" , path, field_blank_, field_blank_, field_blank_,
29102900 field_blank_, mean_shift, field_blank_, true , min_max,
2911- nullptr , " " , " " , " " );
2901+ nullptr , " " , " " );
29122902 float std_dev = arc_delay.stdDev ();
29132903 reportLine (" std_dev" , path, field_blank_, field_blank_, field_blank_,
29142904 field_blank_, std_dev, field_blank_, true , min_max,
2915- nullptr , " " , " " , " " );
2905+ nullptr , " " , " " );
29162906 // skewness is dimensionless, so scale it to the field's time units.
29172907 float skewness = arc_delay.skewness () * units_->timeUnit ()->scale ();
29182908 reportLine (" skewness" , path, field_blank_, field_blank_, field_blank_,
29192909 field_blank_, skewness, field_blank_, true , min_max,
2920- nullptr , " " , " " , " " );
2910+ nullptr , " " , " " );
29212911 break ;
29222912 }
29232913 default :
@@ -3149,7 +3139,7 @@ ReportPath::reportLineNegative(std::string_view what,
31493139{
31503140 reportLine (what, nullptr , field_blank_, field_blank_, field_blank_,
31513141 field_blank_, field_blank_, total, true /* tota_with_minus */ ,
3152- early_late, nullptr , " " , " " , " " );
3142+ early_late, nullptr , " " , " " );
31533143}
31543144
31553145// Report total, and transition suffix.
@@ -3211,15 +3201,14 @@ ReportPath::reportLine(std::string_view what,
32113201 const EarlyLate *early_late,
32123202 const RiseFall *rf,
32133203 std::string_view src_attr,
3214- std::string_view orig_name,
32153204 std::string_view line_case) const
32163205{
32173206 std::string line;
32183207 size_t field_index = 0 ;
32193208 bool first_field = true ;
32203209 for (const ReportField *field : fields_) {
32213210 bool last_field = field_index == (fields_.size () - 1 );
3222-
3211+
32233212 if (field->enabled ()) {
32243213 if (!first_field)
32253214 line += ' ' ;
@@ -3262,12 +3251,6 @@ ReportPath::reportLine(std::string_view what,
32623251 else
32633252 reportFieldBlank (field, line);
32643253 }
3265- else if (field == field_orig_name_) {
3266- if (orig_name != " " )
3267- reportField (orig_name, field, line);
3268- else
3269- reportFieldBlank (field, line);
3270- }
32713254 else if (field == field_case_)
32723255 line += line_case;
32733256 else if (field->getValue ())
0 commit comments