blob: 55d48ae35ff0c0835612bb142ae0217b90421ceb [file] [log] [blame]
//===-- TaskTimer.cpp -----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "TaskTimer.h"
using namespace lldb;
using namespace lldb_private;
using namespace lldb_private::trace_intel_pt;
using namespace llvm;
void ScopedTaskTimer::ForEachTimedTask(
std::function<void(const std::string &event,
std::chrono::milliseconds duration)>
callback) {
for (const auto &kv : m_timed_tasks) {
callback(kv.first, kv.second);
}
}
ScopedTaskTimer &TaskTimer::ForThread(lldb::tid_t tid) {
auto it = m_thread_timers.find(tid);
if (it == m_thread_timers.end())
it = m_thread_timers.try_emplace(tid, ScopedTaskTimer{}).first;
return it->second;
}
ScopedTaskTimer &TaskTimer::ForGlobal() { return m_global_timer; }