Welcome to the Linux Foundation Forum!

How could I get my program's functions when using perf and converting the data in JSON?

Hello,
I'd like to use the tool perf to know how much time was needed to execute each method of a program I've made in Smalltalk (Pharo), however I'd also like to get the data in JSON through the perf data convert --to-json command after having done perf record ....
For now, it only gives the system calls whereas if I do the perf report > file.txt I get the Smalltalk's methods but the data is not really parsable.
Does anyone have any idea of how I could fix that?

Answers

  • Posts: 2

    The version of my kernel is 6.8.0
    From the txt file I get something like this :

    1. 12.42% 0.00% pharo libPharoVMCore.so [.] runOnMainThread (inlined)
    2. |
    3. ---runOnMainThread (inlined)
    4. runVMThread (inlined)
    5. |
    6. |--8.50%--loadPharoImage
    7. | readImageNamed
    8. | allocateMemoryForImagewithHeader.isra.0
    9. | initializeObjectMemory
    10. | |
    11. | --0.51%--lastPointerOfWhileSwizzling
    12. |
    13. --3.93%--interpret
    14. enterSmalltalkExecutiveImplementation
    15. interpret
    16. |
    17. --3.24%--primitiveAllInstances
    18. allInstancesOf

    And the JSON file gives me something like this (they do not represent the same sample but come from the same perf.data file) :

    1. {
    2. "timestamp": 19015602195292,
    3. "pid": 19473,
    4. "tid": 19473,
    5. "comm": "pharo",
    6. "callchain": [
    7. {
    8. "ip": "0xffffffff92611bfa",
    9. "symbol": "handle_mm_fault",
    10. "dso": "[kernel.kallsyms]"
    11. },
    12. {
    13. "ip": "0xffffffff922cb588",
    14. "symbol": "do_user_addr_fault",
    15. "dso": "[kernel.kallsyms]"
    16. },
    17. {
    18. "ip": "0xffffffff933e2693",
    19. "symbol": "exc_page_fault",
    20. "dso": "[kernel.kallsyms]"
    21. },
    22. {
    23. "ip": "0xffffffff93400ba7",
    24. "symbol": "asm_exc_page_fault",
    25. "dso": "[kernel.kallsyms]"
    26. }
    27. ]
    28. },

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Categories

Upcoming Training