Android: is there any tool for profiling native code?

前端 未结 4 943
长情又很酷
长情又很酷 2021-02-04 02:25

I have only found one profiling tool - http://code.google.com/p/android-ndk-profiler/. Wasn\'t able to get it working so far, so I wonder if there are other tools available. I n

4条回答
  •  难免孤独
    2021-02-04 03:17

    It is not easy to make the Android-NDK profiler work. You need to follow the steps here thoroughly.

    Here are some tips that led me to success:

    • Make sure your android.mk is correct and that you export the NDK_MODULE_PATH.
    • Use correctly the following functions

      monstartup("your_lib.so");

      moncleanup();

    • If the gmon.out is generated now you need to pull it from the device, but not to anywhere in your PC. For me it only works if I go to the application's folder (where jni, obj, res and other folders are) and I do:

      console$ adb pull sdcard/gmon.out

    • Then run gprof. Try will all the versions in your NDK toolchains. For me only one worked, this one:

      console$ ~/Libraries/android-ndk-r9/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gprof obj/local/armeabi-v7a/libxxxx.so > profile.txt

提交回复
热议问题