aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-10-09 11:32:16 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-10-09 11:32:16 +0000
commit924bbf7350ad0eedac17ebd09893591dd468ce83 (patch)
treeef026373e749b63ff98b3f168578a20f57d14897
parente1bef31d277aae8281ae0bf1c10809d88bbd53cd (diff)
parentd72324c7cc07e6dbde39fe6651eae22f19daa6f5 (diff)
downloadperfetto-924bbf7350ad0eedac17ebd09893591dd468ce83.tar.gz
Merge "tp: NITs in perf_sample table fields comments" into main
-rw-r--r--src/trace_processor/tables/profiler_tables.py42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/trace_processor/tables/profiler_tables.py b/src/trace_processor/tables/profiler_tables.py
index c712adff9..8361d8c05 100644
--- a/src/trace_processor/tables/profiler_tables.py
+++ b/src/trace_processor/tables/profiler_tables.py
@@ -144,10 +144,10 @@ This is generated by the stack profilers: heapprofd and traced_perf.
''',
group='Callstack profilers',
columns={
- 'build_id': '''hex-encoded Build ID of the binary / library.''',
- 'start': '''start of the mapping in the process' address space.''',
- 'end': '''end of the mapping in the process' address space.''',
- 'name': '''filename of the binary / library.''',
+ 'build_id': '''Hex-encoded Build ID of the binary / library.''',
+ 'start': '''Start of the mapping in the process' address space.''',
+ 'end': '''End of the mapping in the process' address space.''',
+ 'name': '''Filename of the binary / library.''',
'exact_offset': '''''',
'start_offset': '''''',
'load_bias': ''''''
@@ -172,16 +172,16 @@ This is generated by the stack profilers: heapprofd and traced_perf.
group='Callstack profilers',
columns={
'name':
- '''name of the function this location is in.''',
+ '''Name of the function this location is in.''',
'mapping':
- '''the mapping (library / binary) this location is in.''',
+ '''The mapping (library / binary) this location is in.''',
'rel_pc':
- '''the program counter relative to the start of the mapping.''',
+ '''The program counter relative to the start of the mapping.''',
'symbol_set_id':
- '''if the profile was offline symbolized, the offline
+ '''If the profile was offline symbolized, the offline
symbol information of this frame.''',
'deobfuscated_name':
- ''''''
+ '''Deobfuscated name of the function this location is in.'''
}))
STACK_PROFILE_CALLSITE_TABLE = Table(
@@ -201,11 +201,11 @@ This is generated by the stack profilers: heapprofd and traced_perf.
group='Callstack profilers',
columns={
'depth':
- '''distance from the bottom-most frame of the callstack.''',
+ '''Distance from the bottom-most frame of the callstack.''',
'parent_id':
- '''parent frame on the callstack. NULL for the bottom-most.''',
+ '''Parent frame on the callstack. NULL for the bottom-most.''',
'frame_id':
- '''frame at this position in the callstack.'''
+ '''Frame at this position in the callstack.'''
}))
STACK_SAMPLE_TABLE = Table(
@@ -265,23 +265,23 @@ PERF_SAMPLE_TABLE = Table(
group='Callstack profilers',
columns={
'ts':
- '''timestamp of the sample.''',
+ '''Timestamp of the sample.''',
'utid':
- '''sampled thread..''',
+ '''Sampled thread.''',
'cpu':
- '''the core the sampled thread was running on.''',
+ '''Core the sampled thread was running on.''',
'cpu_mode':
- '''execution state (userspace/kernelspace) of the sampled
+ '''Execution state (userspace/kernelspace) of the sampled
thread.''',
'callsite_id':
- '''if set, unwound callstack of the sampled thread.''',
+ '''If set, unwound callstack of the sampled thread.''',
'unwind_error':
- '''if set, indicates that the unwinding for this sample
+ '''If set, indicates that the unwinding for this sample
encountered an error. Such samples still reference the best-effort
-result via the callsite_id (with a synthetic error frame at the point
-where unwinding stopped).''',
+result via the callsite_id, with a synthetic error frame at the point
+where unwinding stopped.''',
'perf_session_id':
- '''distinguishes samples from different profiling
+ '''Distinguishes samples from different profiling
streams (i.e. multiple data sources).'''
}))