[Lldb-commits] [PATCH] D112501: Add new key/value pairs to the module statistics for "statistics dump".
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 25 18:10:57 PDT 2021
clayborg added a comment.
New output looks like:
(lldb) statistics dump
{
"modules": [
{
"debugInfoByteSize": 876,
"debugInfoIndexTime": 0,
"debugInfoParseTime": 0.00011866800000000002,
"identifier": 5224745544,
"path": "/Users/gclayton/Documents/src/args/build/a.out",
"symbolTableIndexTime": 1.4334e-05,
"symbolTableParseTime": 0.00019666700000000001,
"triple": "arm64-apple-macosx11.0.0",
"uuid": "B7F60DCD-68BF-3F2D-AE27-85253725636A"
},
...
],
"targets": [
{
"expressionEvaluation": {
"failures": 0,
"successes": 0
},
"firstStopTime": 0.34491650000000001,
"frameVariable": {
"failures": 0,
"successes": 0
},
"launchOrAttachTime": 0.32443250000000001,
"moduleIdentifiers": [
5224745544,
...
],
"targetCreateTime": 0.16623558299999999
}
],
"totalDebugInfoByteSize": 16989,
"totalDebugInfoIndexTime": 0,
"totalDebugInfoParseTime": 0.00023733600000000005,
"totalSymbolTableIndexTime": 0.047756334999999997,
"totalSymbolTableParseTime": 0.075083796999999994
}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112501/new/
https://reviews.llvm.org/D112501
More information about the lldb-commits
mailing list