:q! This diff is massive, but it's because it connects the client with lldb-server and also ensures that the postmortem case works. - Flatten the postmortem trace schema. The reason is that the schema has become quite complex due to the new multicore case, which defeats the original purpose of having a schema that could work for every trace plug-in. At this point, it's better that each trace plug-in defines it's own full schema. This means that the only common field is "type". -- Because of this new approach, I merged the "common" trace load and saving functionalities into the IntelPT one. This simplified the code quite a bit. If we eventually implement another trace plug-in, we can see then what we could reuse. -- The new schema, which is flattened, has now better comments and is parsed better. A change I did was to disallow hex addresses, because they are a bit error prone. I'm asking now to print the address in decimal. -- Renamed "intel" to "GenuineIntel" in the schema because that's what you see in /proc/cpuinfo. - Implemented reading the context switch trace data buffer. I had to do some refactors to do that cleanly. -- A major change that I did here was to simplify the perf_event circular buffer reading logic. It was too complex. Maybe the original Intel author had something different in mind. - Implemented all the necessary bits to read trace.json files with per-core data. - Implemented all the necessary bits to save to disk per-core trace session. - Added a test that ensures that parsing and saving to disk works. Differential Revision: https://reviews.llvm.org/D126015
108 lines
3.4 KiB
C++
108 lines
3.4 KiB
C++
//===-- IntelPTMultiCoreTrace.h ------------------------------- -*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_IntelPTMultiCoreTrace_H_
|
|
#define liblldb_IntelPTMultiCoreTrace_H_
|
|
|
|
#include "IntelPTProcessTrace.h"
|
|
#include "IntelPTSingleBufferTrace.h"
|
|
|
|
#include "lldb/Host/common/NativeProcessProtocol.h"
|
|
#include "lldb/Utility/TraceIntelPTGDBRemotePackets.h"
|
|
#include "lldb/lldb-types.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace lldb_private {
|
|
namespace process_linux {
|
|
|
|
class IntelPTMultiCoreTrace : public IntelPTProcessTrace {
|
|
using ContextSwitchTrace = PerfEvent;
|
|
|
|
public:
|
|
/// Start tracing all CPU cores.
|
|
///
|
|
/// \param[in] request
|
|
/// Intel PT configuration parameters.
|
|
///
|
|
/// \param[in] process
|
|
/// The process being debugged.
|
|
///
|
|
/// \return
|
|
/// An \a IntelPTMultiCoreTrace instance if tracing was successful, or
|
|
/// an \a llvm::Error otherwise.
|
|
static llvm::Expected<IntelPTProcessTraceUP>
|
|
StartOnAllCores(const TraceIntelPTStartRequest &request,
|
|
NativeProcessProtocol &process);
|
|
|
|
/// Execute the provided callback on each core that is being traced.
|
|
///
|
|
/// \param[in] callback.core_id
|
|
/// The core id that is being traced.
|
|
///
|
|
/// \param[in] callback.core_trace
|
|
/// The single-buffer trace instance for the given core.
|
|
void ForEachCore(std::function<void(lldb::core_id_t core_id,
|
|
IntelPTSingleBufferTrace &core_trace)>
|
|
callback);
|
|
|
|
/// Execute the provided callback on each core that is being traced.
|
|
///
|
|
/// \param[in] callback.core_id
|
|
/// The core id that is being traced.
|
|
///
|
|
/// \param[in] callback.intelpt_trace
|
|
/// The single-buffer intel pt trace instance for the given core.
|
|
///
|
|
/// \param[in] callback.context_switch_trace
|
|
/// The perf event collecting context switches for the given core.
|
|
void ForEachCore(std::function<void(lldb::core_id_t core_id,
|
|
IntelPTSingleBufferTrace &intelpt_trace,
|
|
PerfEvent &context_switch_trace)>
|
|
callback);
|
|
|
|
void ProcessDidStop() override;
|
|
|
|
void ProcessWillResume() override;
|
|
|
|
TraceIntelPTGetStateResponse GetState() override;
|
|
|
|
bool TracesThread(lldb::tid_t tid) const override;
|
|
|
|
llvm::Error TraceStart(lldb::tid_t tid) override;
|
|
|
|
llvm::Error TraceStop(lldb::tid_t tid) override;
|
|
|
|
llvm::Expected<llvm::Optional<std::vector<uint8_t>>>
|
|
TryGetBinaryData(const TraceGetBinaryDataRequest &request) override;
|
|
|
|
private:
|
|
/// This assumes that all underlying perf_events for each core are part of the
|
|
/// same perf event group.
|
|
IntelPTMultiCoreTrace(
|
|
llvm::DenseMap<lldb::core_id_t,
|
|
std::pair<IntelPTSingleBufferTrace, ContextSwitchTrace>>
|
|
&&traces_per_core,
|
|
NativeProcessProtocol &process)
|
|
: m_traces_per_core(std::move(traces_per_core)), m_process(process) {}
|
|
|
|
llvm::DenseMap<lldb::core_id_t,
|
|
std::pair<IntelPTSingleBufferTrace, ContextSwitchTrace>>
|
|
m_traces_per_core;
|
|
|
|
/// The target process.
|
|
NativeProcessProtocol &m_process;
|
|
};
|
|
|
|
} // namespace process_linux
|
|
} // namespace lldb_private
|
|
|
|
#endif // liblldb_IntelPTMultiCoreTrace_H_
|