I am new to perf,
try to understand the result, but how to read something like this?
39.57% TestSoft.exe libc-2.15.so [.] 0x3fd59
7.04% TestSoft.exe libc-2.15.so [.] malloc
6.15% TestSoft.exe LoanSoft.exe [.] LoanDef::update_vec()
the first line might be some function in libc, but which function was it? what does that 0x3fd59 mean? also, for second line, which function in my code calls malloc? for the third line, can I further make perf on that function only to see which part of update_vec() was slow?
Thanks a lot!