We have two different "process trace" implementations: per thread and per core. As a way to simplify the collector who uses both, I'm creating a base abstract class that is used by these implementations. This effectively simplify a good chunk of code. Differential Revision: https://reviews.llvm.org/D125503
197 lines
6.4 KiB
C++
197 lines
6.4 KiB
C++
//===-- IntelPTCollector.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 "IntelPTCollector.h"
|
|
|
|
#include "Perf.h"
|
|
#include "Procfs.h"
|
|
|
|
#include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
|
|
#include "lldb/Host/linux/Support.h"
|
|
#include "lldb/Utility/StreamString.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include <algorithm>
|
|
#include <cstddef>
|
|
#include <fstream>
|
|
#include <linux/perf_event.h>
|
|
#include <sstream>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/syscall.h>
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
using namespace process_linux;
|
|
using namespace llvm;
|
|
|
|
IntelPTCollector::IntelPTCollector(NativeProcessProtocol &process)
|
|
: m_process(process) {
|
|
if (Expected<LinuxPerfZeroTscConversion> tsc_conversion =
|
|
LoadPerfTscConversionParameters())
|
|
m_tsc_conversion =
|
|
std::make_unique<LinuxPerfZeroTscConversion>(*tsc_conversion);
|
|
else
|
|
LLDB_LOG_ERROR(GetLog(POSIXLog::Trace), tsc_conversion.takeError(),
|
|
"unable to load TSC to wall time conversion: {0}");
|
|
}
|
|
|
|
Error IntelPTCollector::TraceStop(lldb::tid_t tid) {
|
|
if (m_process_trace_up && m_process_trace_up->TracesThread(tid))
|
|
return m_process_trace_up->TraceStop(tid);
|
|
return m_thread_traces.TraceStop(tid);
|
|
}
|
|
|
|
Error IntelPTCollector::TraceStop(const TraceStopRequest &request) {
|
|
if (request.IsProcessTracing()) {
|
|
Clear();
|
|
return Error::success();
|
|
} else {
|
|
Error error = Error::success();
|
|
for (int64_t tid : *request.tids)
|
|
error = joinErrors(std::move(error),
|
|
TraceStop(static_cast<lldb::tid_t>(tid)));
|
|
return error;
|
|
}
|
|
}
|
|
|
|
Error IntelPTCollector::TraceStart(const TraceIntelPTStartRequest &request) {
|
|
if (request.IsProcessTracing()) {
|
|
if (m_process_trace_up) {
|
|
return createStringError(
|
|
inconvertibleErrorCode(),
|
|
"Process currently traced. Stop process tracing first");
|
|
}
|
|
if (request.IsPerCoreTracing()) {
|
|
if (m_thread_traces.GetTracedThreadsCount() > 0)
|
|
return createStringError(
|
|
inconvertibleErrorCode(),
|
|
"Threads currently traced. Stop tracing them first.");
|
|
if (Expected<IntelPTProcessTraceUP> trace =
|
|
IntelPTMultiCoreTrace::StartOnAllCores(request, m_process)) {
|
|
m_process_trace_up = std::move(*trace);
|
|
return Error::success();
|
|
} else {
|
|
return trace.takeError();
|
|
}
|
|
} else {
|
|
std::vector<lldb::tid_t> process_threads;
|
|
for (size_t i = 0; m_process.GetThreadAtIndex(i); i++)
|
|
process_threads.push_back(m_process.GetThreadAtIndex(i)->GetID());
|
|
|
|
// per-thread process tracing
|
|
if (Expected<IntelPTProcessTraceUP> trace =
|
|
IntelPTPerThreadProcessTrace::Start(request, process_threads)) {
|
|
m_process_trace_up = std::move(trace.get());
|
|
return Error::success();
|
|
} else {
|
|
return trace.takeError();
|
|
}
|
|
}
|
|
} else {
|
|
// individual thread tracing
|
|
Error error = Error::success();
|
|
for (int64_t tid : *request.tids) {
|
|
if (m_process_trace_up && m_process_trace_up->TracesThread(tid))
|
|
error = joinErrors(
|
|
std::move(error),
|
|
createStringError(inconvertibleErrorCode(),
|
|
formatv("Thread with tid {0} is currently "
|
|
"traced. Stop tracing it first.",
|
|
tid)
|
|
.str()
|
|
.c_str()));
|
|
else
|
|
error = joinErrors(std::move(error),
|
|
m_thread_traces.TraceStart(tid, request));
|
|
}
|
|
return error;
|
|
}
|
|
}
|
|
|
|
void IntelPTCollector::OnProcessStateChanged(lldb::StateType state) {
|
|
if (m_process_trace_up)
|
|
m_process_trace_up->OnProcessStateChanged(state);
|
|
}
|
|
|
|
Error IntelPTCollector::OnThreadCreated(lldb::tid_t tid) {
|
|
if (m_process_trace_up)
|
|
return m_process_trace_up->TraceStart(tid);
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
Error IntelPTCollector::OnThreadDestroyed(lldb::tid_t tid) {
|
|
if (m_process_trace_up && m_process_trace_up->TracesThread(tid))
|
|
return m_process_trace_up->TraceStop(tid);
|
|
else if (m_thread_traces.TracesThread(tid))
|
|
return m_thread_traces.TraceStop(tid);
|
|
return Error::success();
|
|
}
|
|
|
|
Expected<json::Value> IntelPTCollector::GetState() {
|
|
Expected<ArrayRef<uint8_t>> cpu_info = GetProcfsCpuInfo();
|
|
if (!cpu_info)
|
|
return cpu_info.takeError();
|
|
|
|
TraceGetStateResponse state;
|
|
if (m_process_trace_up)
|
|
state = m_process_trace_up->GetState();
|
|
|
|
state.process_binary_data.push_back(
|
|
{IntelPTDataKinds::kProcFsCpuInfo, cpu_info->size()});
|
|
|
|
m_thread_traces.ForEachThread(
|
|
[&](lldb::tid_t tid, const IntelPTSingleBufferTrace &thread_trace) {
|
|
state.traced_threads.push_back({tid,
|
|
{{IntelPTDataKinds::kTraceBuffer,
|
|
thread_trace.GetTraceBufferSize()}}});
|
|
});
|
|
return toJSON(state);
|
|
}
|
|
|
|
Expected<std::vector<uint8_t>>
|
|
IntelPTCollector::GetBinaryData(const TraceGetBinaryDataRequest &request) {
|
|
if (request.kind == IntelPTDataKinds::kTraceBuffer) {
|
|
if (!request.tid)
|
|
return createStringError(
|
|
inconvertibleErrorCode(),
|
|
"Getting a trace buffer without a tid is currently unsupported");
|
|
|
|
if (m_process_trace_up && m_process_trace_up->TracesThread(*request.tid))
|
|
return m_process_trace_up->GetBinaryData(request);
|
|
|
|
if (Expected<IntelPTSingleBufferTrace &> trace =
|
|
m_thread_traces.GetTracedThread(*request.tid))
|
|
return trace->GetTraceBuffer(request.offset, request.size);
|
|
else
|
|
return trace.takeError();
|
|
} else if (request.kind == IntelPTDataKinds::kProcFsCpuInfo) {
|
|
return GetProcfsCpuInfo();
|
|
}
|
|
return createStringError(inconvertibleErrorCode(),
|
|
"Unsuported trace binary data kind: %s",
|
|
request.kind.c_str());
|
|
}
|
|
|
|
bool IntelPTCollector::IsSupported() {
|
|
if (Expected<uint32_t> intel_pt_type = GetIntelPTOSEventType()) {
|
|
return true;
|
|
} else {
|
|
llvm::consumeError(intel_pt_type.takeError());
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void IntelPTCollector::Clear() {
|
|
m_process_trace_up.reset();
|
|
m_thread_traces.Clear();
|
|
}
|