I'm profiling a .NET application and all I have is a CSV output similar to this:
name                calls  inclusive_time  exclusive_time
=========================================================
main                    1        88375485        88363071
len                  1057           14060           14060
join                   60            1635            1635
exists                573          447360          433872
find_vertical_lines   150          279889          138107
clean_text            162          119721          104242
Do you know any application which can take profiling information from a file and display some typical profiler stats? I can format the information in different ways if required.
I know that I won't be able to do some operations like drill down the caller tree.
 
    