[Lldb-commits] [PATCH] D112279: Add modules stats into the "statistics dump" command.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 21 16:06:59 PDT 2021


clayborg added a comment.

The new output looks like:

  (lldb) statistics dump
  {
    "expressionEvaluation": {
      "failures": 0,
      "successes": 0
    },
    "firstStopTime": 0.35030829200000002,
    "frameVariable": {
      "failures": 0,
      "successes": 0
    },
    "launchOrAttachTime": 0.32964795800000002,
    "modules": [
      {
        "path": "/Users/gclayton/Documents/src/args/build/a.out",
        "symbolTableIndexTime": 1.375e-05,
        "symbolTableParseTime": 0.000191375,
        "triple": "arm64-apple-macosx11.0.0",
        "uuid": "B7F60DCD-68BF-3F2D-AE27-85253725636A"
      },
      {
        "path": "/usr/lib/dyld",
        "symbolTableIndexTime": 0.011123958999999999,
        "symbolTableParseTime": 0.0067836249999999997,
        "triple": "arm64e-apple-macosx11.6.0",
        "uuid": "38657979-1ABE-3C9A-BF64-EF3B746216AB"
      },
      {
        "path": "/usr/lib/libc++.1.dylib",
        "symbolTableIndexTime": 0.014424457999999999,
        "symbolTableParseTime": 0.0095513330000000004,
        "triple": "arm64e-apple-macosx11.6.0",
        "uuid": "BED05B96-CCAE-365A-B3F5-F8D72F5E77E1"
      },
      ...
    ],
    "targetCreateTime": 0.16556795899999999,
    "totalSymbolTableIndexTime": 0.047531957999999992,
    "totalSymbolTableParseTime": 0.073819333000000015
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D112279/new/

https://reviews.llvm.org/D112279



More information about the lldb-commits mailing list