mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 14:48:27 +08:00
To ensure a reproducer works correctly, the version of LLDB used for capture and replay must match. Right now the reproducer already contains the LLDB version. However, this is purely informative. LLDB will happily replay a reproducer generated with a different version of LLDB, which can cause subtle differences. This patch adds a version check which compares the current LLDB version with the one in the reproducer. If the version doesn't match, LLDB will refuse to replay. It also adds an escape hatch to make it possible to still replay the reproducer without having to mess with the recorded version. This might prove useful when you know two versions of LLDB match, even though the version string doesn't. This behavior is triggered by passing a new flag -reproducer-skip-version-check to the lldb driver. Differential revision: https://reviews.llvm.org/D70934
187 lines
5.8 KiB
C++
187 lines
5.8 KiB
C++
//===-- SBReproducer.cpp ----------------------------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "SBReproducerPrivate.h"
|
|
|
|
#include "SBReproducerPrivate.h"
|
|
#include "lldb/API/LLDB.h"
|
|
#include "lldb/API/SBAddress.h"
|
|
#include "lldb/API/SBAttachInfo.h"
|
|
#include "lldb/API/SBBlock.h"
|
|
#include "lldb/API/SBBreakpoint.h"
|
|
#include "lldb/API/SBCommandInterpreter.h"
|
|
#include "lldb/API/SBData.h"
|
|
#include "lldb/API/SBDebugger.h"
|
|
#include "lldb/API/SBDeclaration.h"
|
|
#include "lldb/API/SBError.h"
|
|
#include "lldb/API/SBFileSpec.h"
|
|
#include "lldb/API/SBHostOS.h"
|
|
#include "lldb/API/SBReproducer.h"
|
|
#include "lldb/Host/FileSystem.h"
|
|
#include "lldb/lldb-private.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
using namespace lldb_private::repro;
|
|
|
|
SBRegistry::SBRegistry() {
|
|
Registry &R = *this;
|
|
|
|
RegisterMethods<SBAddress>(R);
|
|
RegisterMethods<SBAttachInfo>(R);
|
|
RegisterMethods<SBBlock>(R);
|
|
RegisterMethods<SBBreakpoint>(R);
|
|
RegisterMethods<SBBreakpointList>(R);
|
|
RegisterMethods<SBBreakpointLocation>(R);
|
|
RegisterMethods<SBBreakpointName>(R);
|
|
RegisterMethods<SBBroadcaster>(R);
|
|
RegisterMethods<SBCommandInterpreterRunOptions>(R);
|
|
RegisterMethods<SBCommandReturnObject>(R);
|
|
RegisterMethods<SBCommunication>(R);
|
|
RegisterMethods<SBCompileUnit>(R);
|
|
RegisterMethods<SBData>(R);
|
|
RegisterMethods<SBInputReader>(R);
|
|
RegisterMethods<SBDebugger>(R);
|
|
RegisterMethods<SBDeclaration>(R);
|
|
RegisterMethods<SBError>(R);
|
|
RegisterMethods<SBEvent>(R);
|
|
RegisterMethods<SBExecutionContext>(R);
|
|
RegisterMethods<SBExpressionOptions>(R);
|
|
RegisterMethods<SBFile>(R);
|
|
RegisterMethods<SBFileSpec>(R);
|
|
RegisterMethods<SBFileSpecList>(R);
|
|
RegisterMethods<SBFrame>(R);
|
|
RegisterMethods<SBFunction>(R);
|
|
RegisterMethods<SBHostOS>(R);
|
|
RegisterMethods<SBInstruction>(R);
|
|
RegisterMethods<SBInstructionList>(R);
|
|
RegisterMethods<SBLanguageRuntime>(R);
|
|
RegisterMethods<SBLaunchInfo>(R);
|
|
RegisterMethods<SBLineEntry>(R);
|
|
RegisterMethods<SBListener>(R);
|
|
RegisterMethods<SBMemoryRegionInfo>(R);
|
|
RegisterMethods<SBMemoryRegionInfoList>(R);
|
|
RegisterMethods<SBModule>(R);
|
|
RegisterMethods<SBModuleSpec>(R);
|
|
RegisterMethods<SBPlatformConnectOptions>(R);
|
|
RegisterMethods<SBPlatformShellCommand>(R);
|
|
RegisterMethods<SBPlatform>(R);
|
|
RegisterMethods<SBProcess>(R);
|
|
RegisterMethods<SBProcessInfo>(R);
|
|
RegisterMethods<SBQueue>(R);
|
|
RegisterMethods<SBQueueItem>(R);
|
|
RegisterMethods<SBSection>(R);
|
|
RegisterMethods<SBSourceManager>(R);
|
|
RegisterMethods<SBStream>(R);
|
|
RegisterMethods<SBStringList>(R);
|
|
RegisterMethods<SBStructuredData>(R);
|
|
RegisterMethods<SBSymbol>(R);
|
|
RegisterMethods<SBSymbolContext>(R);
|
|
RegisterMethods<SBSymbolContextList>(R);
|
|
RegisterMethods<SBTarget>(R);
|
|
RegisterMethods<SBThread>(R);
|
|
RegisterMethods<SBThreadCollection>(R);
|
|
RegisterMethods<SBThreadPlan>(R);
|
|
RegisterMethods<SBTrace>(R);
|
|
RegisterMethods<SBTraceOptions>(R);
|
|
RegisterMethods<SBType>(R);
|
|
RegisterMethods<SBTypeCategory>(R);
|
|
RegisterMethods<SBTypeEnumMember>(R);
|
|
RegisterMethods<SBTypeFilter>(R);
|
|
RegisterMethods<SBTypeFormat>(R);
|
|
RegisterMethods<SBTypeNameSpecifier>(R);
|
|
RegisterMethods<SBTypeSummaryOptions>(R);
|
|
RegisterMethods<SBTypeSummary>(R);
|
|
RegisterMethods<SBTypeSynthetic>(R);
|
|
RegisterMethods<SBUnixSignals>(R);
|
|
RegisterMethods<SBValue>(R);
|
|
RegisterMethods<SBValueList>(R);
|
|
RegisterMethods<SBVariablesOptions>(R);
|
|
RegisterMethods<SBWatchpoint>(R);
|
|
}
|
|
|
|
const char *SBReproducer::Capture() {
|
|
static std::string error;
|
|
if (auto e = Reproducer::Initialize(ReproducerMode::Capture, llvm::None)) {
|
|
error = llvm::toString(std::move(e));
|
|
return error.c_str();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
const char *SBReproducer::Capture(const char *path) {
|
|
static std::string error;
|
|
if (auto e =
|
|
Reproducer::Initialize(ReproducerMode::Capture, FileSpec(path))) {
|
|
error = llvm::toString(std::move(e));
|
|
return error.c_str();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
const char *SBReproducer::Replay(const char *path, bool skip_version_check) {
|
|
static std::string error;
|
|
if (auto e = Reproducer::Initialize(ReproducerMode::Replay, FileSpec(path))) {
|
|
error = llvm::toString(std::move(e));
|
|
return error.c_str();
|
|
}
|
|
|
|
repro::Loader *loader = repro::Reproducer::Instance().GetLoader();
|
|
if (!loader) {
|
|
error = "unable to get replay loader.";
|
|
return error.c_str();
|
|
}
|
|
|
|
if (!skip_version_check) {
|
|
llvm::Expected<std::string> version = loader->LoadBuffer<VersionProvider>();
|
|
if (!version) {
|
|
error = llvm::toString(version.takeError());
|
|
return error.c_str();
|
|
}
|
|
if (lldb_private::GetVersion() != llvm::StringRef(*version).rtrim()) {
|
|
error = "reproducer capture and replay version don't match:\n";
|
|
error.append("reproducer captured with:\n");
|
|
error.append(*version);
|
|
error.append("reproducer replayed with:\n");
|
|
error.append(lldb_private::GetVersion());
|
|
return error.c_str();
|
|
}
|
|
}
|
|
|
|
FileSpec file = loader->GetFile<SBProvider::Info>();
|
|
if (!file) {
|
|
error = "unable to get replay data from reproducer.";
|
|
return error.c_str();
|
|
}
|
|
|
|
SBRegistry registry;
|
|
registry.Replay(file);
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
bool SBReproducer::Generate() {
|
|
auto &r = Reproducer::Instance();
|
|
if (auto generator = r.GetGenerator()) {
|
|
generator->Keep();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
const char *SBReproducer::GetPath() {
|
|
static std::string path;
|
|
auto &r = Reproducer::Instance();
|
|
path = r.GetReproducerPath().GetCString();
|
|
return path.c_str();
|
|
}
|
|
|
|
char lldb_private::repro::SBProvider::ID = 0;
|
|
const char *SBProvider::Info::name = "sbapi";
|
|
const char *SBProvider::Info::file = "sbapi.bin";
|