This diffs implements per-core tracing on lldb-server. It also includes tests that ensure that tracing can be initiated from the client and that the jLLDBGetState ppacket returns the list of trace buffers per core. This doesn't include any decoder changes. Finally, this makes some little changes here and there improving the existing code. A specific piece of code that can't reliably be tested is when tracing per core fails due to permissions. In this case we add a troubleshooting message and this is the manual test: ``` /proc/sys/kernel/perf_event_paranoid set to 1 (lldb) process trace start --per-core-tracing error: perf event syscall failed: Permission denied You might need that /proc/sys/kernel/perf_event_paranoid has a value of 0 or -1. `` Differential Revision: https://reviews.llvm.org/D124858
73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
//===-- Procfs.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 "Procfs.h"
|
|
|
|
#include "lldb/Host/linux/Support.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
using namespace process_linux;
|
|
using namespace llvm;
|
|
|
|
Expected<ArrayRef<uint8_t>> lldb_private::process_linux::GetProcfsCpuInfo() {
|
|
static Optional<std::vector<uint8_t>> cpu_info;
|
|
if (!cpu_info) {
|
|
auto buffer_or_error = errorOrToExpected(getProcFile("cpuinfo"));
|
|
if (!buffer_or_error)
|
|
return buffer_or_error.takeError();
|
|
MemoryBuffer &buffer = **buffer_or_error;
|
|
cpu_info = std::vector<uint8_t>(
|
|
reinterpret_cast<const uint8_t *>(buffer.getBufferStart()),
|
|
reinterpret_cast<const uint8_t *>(buffer.getBufferEnd()));
|
|
}
|
|
return *cpu_info;
|
|
}
|
|
|
|
Expected<std::vector<core_id_t>>
|
|
lldb_private::process_linux::GetAvailableLogicalCoreIDs(StringRef cpuinfo) {
|
|
SmallVector<StringRef, 8> lines;
|
|
cpuinfo.split(lines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
|
|
std::vector<core_id_t> logical_cores;
|
|
|
|
for (StringRef line : lines) {
|
|
std::pair<StringRef, StringRef> key_value = line.split(':');
|
|
auto key = key_value.first.trim();
|
|
auto val = key_value.second.trim();
|
|
if (key == "processor") {
|
|
core_id_t processor;
|
|
if (val.getAsInteger(10, processor))
|
|
return createStringError(
|
|
inconvertibleErrorCode(),
|
|
"Failed parsing the /proc/cpuinfo line entry: %s", line.data());
|
|
logical_cores.push_back(processor);
|
|
}
|
|
}
|
|
return logical_cores;
|
|
}
|
|
|
|
llvm::Expected<llvm::ArrayRef<core_id_t>>
|
|
lldb_private::process_linux::GetAvailableLogicalCoreIDs() {
|
|
static Optional<std::vector<core_id_t>> logical_cores_ids;
|
|
if (!logical_cores_ids) {
|
|
// We find the actual list of core ids by parsing /proc/cpuinfo
|
|
Expected<ArrayRef<uint8_t>> cpuinfo = GetProcfsCpuInfo();
|
|
if (!cpuinfo)
|
|
return cpuinfo.takeError();
|
|
|
|
Expected<std::vector<core_id_t>> core_ids = GetAvailableLogicalCoreIDs(
|
|
StringRef(reinterpret_cast<const char *>(cpuinfo->data())));
|
|
if (!core_ids)
|
|
return core_ids.takeError();
|
|
|
|
logical_cores_ids.emplace(std::move(*core_ids));
|
|
}
|
|
return *logical_cores_ids;
|
|
}
|