I have a C++ application and i want to measure its performance on ARM board. The board is running ubuntu.
Currently i am considering valgrind and gprof to measure the performance.
What tools/techniques should i use to measure the performance?
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.
Here are the biggies I ran across last time I had to do this:
Manual instrumentation using the gcc hooks
void __cyg_profile_func_enter (void *, void *) __attribute__((no_instrument_function));void __cyg_profile_func_exit (void *, void *) __attribute__((no_instrument_function));