Files
clang-p2996/lldb/test/API/commands/trace/intelpt-trace/trace_wrong_cpu.json
Walter Erquinigo 6a5355e8a1 [trace][intelpt] Support system-wide tracing [20] - Rename some fields in the schema
As discusses offline with @jj10305, we are updating some naming used throughout the code, specially in the json schema

- traceBuffer -> iptTrace
- core -> cpu

Differential Revision: https://reviews.llvm.org/D127817
2022-06-16 11:42:22 -07:00

30 lines
551 B
JSON

{
"type": "intel-pt",
"cpuInfo": {
"vendor": "GenuineIntel",
"family": 2123123,
"model": 12123123,
"stepping": 1231231
},
"processes": [
{
"pid": 1234,
"triple": "x86_64-*-linux",
"threads": [
{
"tid": 3842849,
"iptTrace": "3842849.trace"
}
],
"modules": [
{
"file": "a.out",
"systemPath": "a.out",
"loadAddress": 4194304,
"uuid": "6AA9A4E2-6F28-2F33-377D-59FECE874C71-5B41261A"
}
]
}
]
}