blob: 5ed3b68e0c9c2703c35a45945d232fb04dd39dd6 [file]
// Copyright (C) 2021 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import {PerfettoPlugin} from '../../public/plugin';
import {Trace} from '../../public/trace';
import {getThreadOrProcUri} from '../../public/utils';
import {
LONG_NULL,
NUM,
NUM_NULL,
STR,
} from '../../trace_processor/query_result';
import ThreadPlugin from '../dev.perfetto.Thread';
import {createPerfettoIndex} from '../../trace_processor/sql_utils';
import {uuidv4Sql} from '../../base/uuid';
import {
Config as ProcessSchedulingTrackConfig,
PROCESS_SCHEDULING_TRACK_KIND,
ProcessSchedulingTrack,
} from './process_scheduling_track';
import {
Config as ProcessSummaryTrackConfig,
PROCESS_SUMMARY_TRACK_KIND,
ProcessSummaryTrack,
} from './process_summary_track';
// This plugin is responsible for adding summary tracks for process and thread
// groups.
export default class implements PerfettoPlugin {
static readonly id = 'dev.perfetto.ProcessSummary';
static readonly dependencies = [ThreadPlugin];
async onTraceLoad(ctx: Trace): Promise<void> {
await this.addProcessTrackGroups(ctx);
await this.addKernelThreadSummary(ctx);
}
private async addProcessTrackGroups(ctx: Trace): Promise<void> {
// Makes the queries in `ProcessSchedulingTrack` significantly faster.
// TODO(lalitm): figure out a better way to do this without hardcoding this
// here.
await createPerfettoIndex({
engine: ctx.engine,
name: `__process_scheduling_${uuidv4Sql()}`,
on: `__intrinsic_sched_slice(utid)`,
});
// Makes the queries in `ProcessSummaryTrack` significantly faster.
// TODO(lalitm): figure out a better way to do this without hardcoding this
// here.
await createPerfettoIndex({
engine: ctx.engine,
name: `__process_summary_${uuidv4Sql()}`,
on: `__intrinsic_slice(track_id)`,
});
const threads = ctx.plugins.getPlugin(ThreadPlugin).getThreadMap();
const result = await ctx.engine.query(`
INCLUDE PERFETTO MODULE android.process_metadata;
WITH machine_cpu_counts AS (
SELECT
IFNULL(machine_id, 0) AS machine,
COUNT(*) AS cpu_count
FROM cpu
GROUP BY machine
)
select *
from (
select
_process_available_info_summary.upid,
null as utid,
process.pid,
null as tid,
process.name as processName,
null as threadName,
sum_running_dur > 0 as hasSched,
android_process_metadata.debuggable as isDebuggable,
case
when process.name = 'system_server' then
ifnull((select int_value from metadata where name = 'android_profile_system_server'), 0)
when process.name GLOB 'zygote*' then
ifnull((select int_value from metadata where name = 'android_profile_boot_classpath'), 0)
else 0
end as isBootImageProfiling,
ifnull((
select group_concat(string_value)
from args
where
process.arg_set_id is not null and
arg_set_id = process.arg_set_id and
flat_key = 'chrome.process_label'
), '') as chromeProcessLabels,
ifnull(machine_id, 0) as machine,
IFNULL(machine_cpu_counts.cpu_count, 0) AS cpuCount
from _process_available_info_summary
join process using(upid)
left join android_process_metadata using(upid)
LEFT JOIN machine_cpu_counts
ON machine_cpu_counts.machine = IFNULL(machine_id, 0)
)
union all
select *
from (
select
null,
utid,
null as pid,
tid,
null as processName,
thread.name threadName,
sum_running_dur > 0 as hasSched,
0 as isDebuggable,
0 as isBootImageProfiling,
'' as chromeProcessLabels,
ifnull(machine_id, 0) as machine,
IFNULL(machine_cpu_counts.cpu_count, 0) AS cpuCount
from _thread_available_info_summary
join thread using (utid)
LEFT JOIN machine_cpu_counts
ON machine_cpu_counts.machine = IFNULL(machine_id, 0)
where upid is null
)
`);
const it = result.iter({
upid: NUM_NULL,
utid: NUM_NULL,
pid: LONG_NULL,
tid: LONG_NULL,
hasSched: NUM_NULL,
isDebuggable: NUM_NULL,
isBootImageProfiling: NUM_NULL,
chromeProcessLabels: STR,
machine: NUM,
cpuCount: NUM,
});
for (; it.valid(); it.next()) {
const upid = it.upid;
const utid = it.utid;
const pid = it.pid;
const tid = it.tid;
const hasSched = Boolean(it.hasSched);
const isDebuggable = Boolean(it.isDebuggable);
const isBootImageProfiling = Boolean(it.isBootImageProfiling);
const subtitle = it.chromeProcessLabels;
const cpuCount = it.cpuCount;
// Group by upid if present else by utid.
const pidForColor = pid ?? tid ?? upid ?? utid ?? 0;
const uri = getThreadOrProcUri(upid, utid);
const chips: string[] = [];
isDebuggable && chips.push('debuggable');
// When boot image profiling is enabled for the bootclasspath or system
// server, performance characteristics of the device can vary wildly.
// Surface that detail in the process tracks for zygote and system_server
// to make it clear to the user.
// See https://source.android.com/docs/core/runtime/boot-image-profiles
// for additional details.
isBootImageProfiling && chips.push('boot image profiling');
if (hasSched) {
const config: ProcessSchedulingTrackConfig = {
pidForColor,
upid,
utid,
};
ctx.tracks.registerTrack({
uri,
tags: {
kinds: [PROCESS_SCHEDULING_TRACK_KIND],
},
chips,
renderer: new ProcessSchedulingTrack(ctx, config, cpuCount, threads),
subtitle,
});
} else {
const config: ProcessSummaryTrackConfig = {
pidForColor,
upid,
utid,
};
ctx.tracks.registerTrack({
uri,
tags: {
kinds: [PROCESS_SUMMARY_TRACK_KIND],
},
chips,
renderer: new ProcessSummaryTrack(ctx.engine, config),
subtitle,
});
}
}
}
private async addKernelThreadSummary(ctx: Trace): Promise<void> {
const {engine} = ctx;
// Identify kernel threads if this is a linux system trace, and sufficient
// process information is available. Kernel threads are identified by being
// children of kthreadd (always pid 2).
// The query will return the kthreadd process row first, which must exist
// for any other kthreads to be returned by the query.
// TODO(rsavitski): figure out how to handle the idle process (swapper),
// which has pid 0 but appears as a distinct process (with its own comm) on
// each cpu. It'd make sense to exclude its thread state track, but still
// put process-scoped tracks in this group.
const result = await engine.query(`
select
t.utid, p.upid, (case p.pid when 2 then 1 else 0 end) isKthreadd
from
thread t
join process p using (upid)
left join process parent on (p.parent_upid = parent.upid)
join
(select true from metadata m
where (m.name = 'system_name' and m.str_value = 'Linux')
union
select 1 from (select true from sched limit 1))
where
p.pid = 2 or parent.pid = 2
order by isKthreadd desc
`);
const it = result.iter({
utid: NUM,
upid: NUM,
});
// Not applying kernel thread grouping.
if (!it.valid()) {
return;
}
const config: ProcessSummaryTrackConfig = {
pidForColor: 2,
upid: it.upid,
utid: it.utid,
};
ctx.tracks.registerTrack({
uri: '/kernel',
tags: {
kinds: [PROCESS_SUMMARY_TRACK_KIND],
},
renderer: new ProcessSummaryTrack(ctx.engine, config),
});
}
}