For performance reasons the reproducers don't copy the files captured by the file collector eagerly, but wait until the reproducer needs to be generated. This is a problematic when LLDB crashes and we have to do all this signal-unsafe work in the signal handler. This patch uses a similar trick to clang, which has the driver invoke a new cc1 instance to do all this work out-of-process. This patch moves the writing of the mapping file as well as copying over the reproducers into a separate process spawned when lldb crashes. Differential revision: https://reviews.llvm.org/D89600
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
//===-- ModuleDependencyCollector.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 LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_MODULEDEPENDENCYCOLLECTOR_H
|
|
#define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_MODULEDEPENDENCYCOLLECTOR_H
|
|
|
|
#include "clang/Frontend/Utils.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Support/FileCollector.h"
|
|
|
|
namespace lldb_private {
|
|
class ModuleDependencyCollectorAdaptor
|
|
: public clang::ModuleDependencyCollector {
|
|
public:
|
|
ModuleDependencyCollectorAdaptor(
|
|
std::shared_ptr<llvm::FileCollectorBase> file_collector)
|
|
: clang::ModuleDependencyCollector(""), m_file_collector(file_collector) {
|
|
}
|
|
|
|
void addFile(llvm::StringRef Filename,
|
|
llvm::StringRef FileDst = {}) override {
|
|
if (m_file_collector)
|
|
m_file_collector->addFile(Filename);
|
|
}
|
|
|
|
bool insertSeen(llvm::StringRef Filename) override { return false; }
|
|
void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {}
|
|
void writeFileMap() override {}
|
|
|
|
private:
|
|
std::shared_ptr<llvm::FileCollectorBase> m_file_collector;
|
|
};
|
|
} // namespace lldb_private
|
|
|
|
#endif
|