Since https://github.com/llvm/llvm-project/pull/158381 the `CompilerInstance` is aware of the VFS and co-owns it. To reduce scope of that PR, the VFS was being inherited from the `FileManager` during `setFileManager()` if it wasn't configured before. However, the implementation of that setter was buggy. This PR fixes the bug, and moves us closer to the long-term goal of `CompilerInstance` requiring the VFS to be configured explicitly and owned by the instance.
123 lines
4.2 KiB
C++
123 lines
4.2 KiB
C++
//===-- ModelInjector.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 "ModelInjector.h"
|
|
#include "clang/AST/Decl.h"
|
|
#include "clang/AST/DeclObjC.h"
|
|
#include "clang/Basic/DiagnosticDriver.h"
|
|
#include "clang/Basic/LangStandard.h"
|
|
#include "clang/Basic/Stack.h"
|
|
#include "clang/Frontend/ASTUnit.h"
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
#include "clang/Frontend/FrontendAction.h"
|
|
#include "clang/Lex/Preprocessor.h"
|
|
#include "clang/Serialization/ASTReader.h"
|
|
#include "clang/StaticAnalyzer/Frontend/FrontendActions.h"
|
|
#include "llvm/Support/CrashRecoveryContext.h"
|
|
#include "llvm/Support/FileSystem.h"
|
|
#include <utility>
|
|
|
|
using namespace clang;
|
|
using namespace ento;
|
|
|
|
ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {
|
|
if (CI.getAnalyzerOpts().ShouldEmitErrorsOnInvalidConfigValue &&
|
|
!CI.getAnalyzerOpts().ModelPath.empty()) {
|
|
auto S = CI.getVirtualFileSystem().status(CI.getAnalyzerOpts().ModelPath);
|
|
if (!S || S->getType() != llvm::sys::fs::file_type::directory_file)
|
|
CI.getDiagnostics().Report(diag::err_analyzer_config_invalid_input)
|
|
<< "model-path" << "a filename";
|
|
}
|
|
}
|
|
|
|
Stmt *ModelInjector::getBody(const FunctionDecl *D) {
|
|
onBodySynthesis(D);
|
|
return Bodies[D->getName()];
|
|
}
|
|
|
|
Stmt *ModelInjector::getBody(const ObjCMethodDecl *D) {
|
|
onBodySynthesis(D);
|
|
return Bodies[D->getName()];
|
|
}
|
|
|
|
void ModelInjector::onBodySynthesis(const NamedDecl *D) {
|
|
|
|
// FIXME: what about overloads? Declarations can be used as keys but what
|
|
// about file name index? Mangled names may not be suitable for that either.
|
|
if (Bodies.count(D->getName()) != 0)
|
|
return;
|
|
|
|
llvm::IntrusiveRefCntPtr<SourceManager> SM = CI.getSourceManagerPtr();
|
|
FileID mainFileID = SM->getMainFileID();
|
|
|
|
llvm::StringRef modelPath = CI.getAnalyzerOpts().ModelPath;
|
|
|
|
llvm::SmallString<128> fileName;
|
|
|
|
if (!modelPath.empty())
|
|
fileName =
|
|
llvm::StringRef(modelPath.str() + "/" + D->getName().str() + ".model");
|
|
else
|
|
fileName = llvm::StringRef(D->getName().str() + ".model");
|
|
|
|
if (!CI.getVirtualFileSystem().exists(fileName)) {
|
|
Bodies[D->getName()] = nullptr;
|
|
return;
|
|
}
|
|
|
|
auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation());
|
|
|
|
FrontendOptions &FrontendOpts = Invocation->getFrontendOpts();
|
|
InputKind IK = Language::CXX; // FIXME
|
|
FrontendOpts.Inputs.clear();
|
|
FrontendOpts.Inputs.emplace_back(fileName, IK);
|
|
FrontendOpts.DisableFree = true;
|
|
|
|
Invocation->getDiagnosticOpts().VerifyDiagnostics = 0;
|
|
|
|
// Modules are parsed by a separate CompilerInstance, so this code mimics that
|
|
// behavior for models
|
|
CompilerInstance Instance(std::move(Invocation),
|
|
CI.getPCHContainerOperations());
|
|
Instance.setVirtualFileSystem(CI.getVirtualFileSystemPtr());
|
|
Instance.createDiagnostics(
|
|
new ForwardingDiagnosticConsumer(CI.getDiagnosticClient()),
|
|
/*ShouldOwnClient=*/true);
|
|
|
|
Instance.getDiagnostics().setSourceManager(SM.get());
|
|
|
|
// The instance wants to take ownership, however DisableFree frontend option
|
|
// is set to true to avoid double free issues
|
|
Instance.setVirtualFileSystem(CI.getVirtualFileSystemPtr());
|
|
Instance.setFileManager(CI.getFileManagerPtr());
|
|
Instance.setSourceManager(SM);
|
|
Instance.setPreprocessor(CI.getPreprocessorPtr());
|
|
Instance.setASTContext(CI.getASTContextPtr());
|
|
|
|
Instance.getPreprocessor().InitializeForModelFile();
|
|
|
|
ParseModelFileAction parseModelFile(Bodies);
|
|
|
|
llvm::CrashRecoveryContext CRC;
|
|
|
|
CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); },
|
|
DesiredStackSize);
|
|
|
|
Instance.getPreprocessor().FinalizeForModelFile();
|
|
|
|
Instance.resetAndLeakSourceManager();
|
|
Instance.resetAndLeakFileManager();
|
|
Instance.resetAndLeakPreprocessor();
|
|
|
|
// The preprocessor enters to the main file id when parsing is started, so
|
|
// the main file id is changed to the model file during parsing and it needs
|
|
// to be reset to the former main file id after parsing of the model file
|
|
// is done.
|
|
SM->setMainFileID(mainFileID);
|
|
}
|