123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Copyright (c) 2021, Brian Gianforcaro <bgianf@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <Kernel/PerformanceEventBuffer.h>
- #include <Kernel/Process.h>
- #include <Kernel/Thread.h>
- namespace Kernel {
- class PerformanceManager {
- public:
- inline static void add_process_created_event(Process& process)
- {
- if (g_profiling_all_threads) {
- VERIFY(g_global_perf_events);
- g_global_perf_events->add_process(process, ProcessEventType::Create);
- }
- }
- inline static void add_process_exec_event(Process& process)
- {
- if (auto* event_buffer = process.current_perf_events_buffer()) {
- event_buffer->add_process(process, ProcessEventType::Exec);
- }
- }
- inline static void add_process_exit_event(Process& process)
- {
- if (g_profiling_all_threads) {
- VERIFY(g_global_perf_events);
- [[maybe_unused]] auto rc = g_global_perf_events->append_with_eip_and_ebp(
- process.pid(), 0, 0, 0, PERF_EVENT_PROCESS_EXIT, 0, 0, 0, nullptr);
- }
- }
- inline static void add_thread_created_event(Thread& thread)
- {
- if (auto* event_buffer = thread.process().current_perf_events_buffer()) {
- [[maybe_unused]] auto rc = event_buffer->append(PERF_EVENT_THREAD_CREATE, thread.tid().value(), 0, nullptr, &thread);
- }
- }
- inline static void add_thread_exit_event(Thread& thread)
- {
- if (auto* event_buffer = thread.process().current_perf_events_buffer()) {
- [[maybe_unused]] auto rc = event_buffer->append(PERF_EVENT_THREAD_EXIT, thread.tid().value(), 0, nullptr, &thread);
- }
- }
- inline static void add_cpu_sample_event(Thread& current_thread, const RegisterState& regs, u32 lost_time)
- {
- PerformanceEventBuffer* perf_events = nullptr;
- if (g_profiling_all_threads) {
- VERIFY(g_global_perf_events);
- perf_events = g_global_perf_events;
- } else if (current_thread.process().is_profiling()) {
- VERIFY(current_thread.process().perf_events());
- perf_events = current_thread.process().perf_events();
- }
- if (perf_events) {
- [[maybe_unused]] auto rc = perf_events->append_with_eip_and_ebp(
- current_thread.pid(), current_thread.tid(),
- regs.eip, regs.ebp, PERF_EVENT_SAMPLE, lost_time, 0, 0, nullptr);
- }
- }
- inline static void add_mmap_perf_event(Process& current_process, Region const& region)
- {
- if (auto* event_buffer = current_process.current_perf_events_buffer()) {
- [[maybe_unused]] auto res = event_buffer->append(PERF_EVENT_MMAP, region.vaddr().get(), region.size(), region.name());
- }
- }
- inline static void add_unmap_perf_event(Process& current_process, Range const& region)
- {
- if (auto* event_buffer = current_process.current_perf_events_buffer()) {
- [[maybe_unused]] auto res = event_buffer->append(PERF_EVENT_MUNMAP, region.base().get(), region.size(), nullptr);
- }
- }
- inline static void timer_tick(RegisterState const& regs)
- {
- static Time last_wakeup;
- auto now = kgettimeofday();
- constexpr auto ideal_interval = Time::from_microseconds(1000'000 / OPTIMAL_PROFILE_TICKS_PER_SECOND_RATE);
- auto expected_wakeup = last_wakeup + ideal_interval;
- auto delay = (now > expected_wakeup) ? now - expected_wakeup : Time::from_microseconds(0);
- last_wakeup = now;
- auto current_thread = Thread::current();
- // FIXME: We currently don't collect samples while idle.
- // That will be an interesting mode to add in the future. :^)
- if (!current_thread || current_thread == Processor::current().idle_thread())
- return;
- auto lost_samples = delay.to_microseconds() / ideal_interval.to_microseconds();
- PerformanceManager::add_cpu_sample_event(*current_thread, regs, lost_samples);
- }
- };
- }
|