I'm completely confused about Devel::NYTProf reports generated by nytprofhtml. I'm using old version of NYTProf 1.90. I know it is very old version but should use it for number of reasons.
So these HTML reports look something like this (when looking on particular *.pl file report):
|Line|Stmts.| Time | Avg. |Code|
|42 | 6804 | 0.04506 | 7e-06 | }; |
I have never seen reports from new version of nytprofhtml, so not sure if they look the same.
In, my case this line is most slow part in whole program (it not a small program). So my question is how can statement like this '};' be slowest part in the program with lot more complex statements. I think misunderstand what NYTProf reports.
If my question is confusing just give me definitions of each column from these reports this will help? This will help a lot.
Especially I'm interested what Stmts
. mean. I'm guessing, but I don't want to guess!
Thanks in advance.