This question is about Devel::NYTProf
profiler.
The output that I receive from the profiler for a simple line such as:
use strict;
OUTPUT:
statements: 3
Time on Line: 22µs
Calls: 2
Time in Sub: 12µs
So my questions are:
- How is this 3 statements ?
- The time in sub .. what does this represent ?
- Does this represent the time spent converting this module into optree or is this something else?
- Is this compile phase time or run phase time ?
Thank you in advance