is there any extension of valgrind, that can be used in the command window, that would help me know the time, in seconds, spent in each function in my C code?
thanks =)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For machine instruction profiling use valgrind’s callgrind (also, cachegrind can do cache and branch prediction profiling which is quite nice).
For time measurements use google’s cpu profiler, it gives way better results than gprof. You can set sampling frequency and it can show the output as a nice annotated call graph.