//===-- ModelInjector.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 // //===----------------------------------------------------------------------===// /// /// \file /// This file defines the clang::ento::ModelInjector class which implements the /// clang::CodeInjector interface. This class is responsible for injecting /// function definitions that were synthesized from model files. /// /// Model files allow definitions of functions to be lazily constituted for functions /// which lack bodies in the original source code. This allows the analyzer /// to more precisely analyze code that calls such functions, analyzing the /// artificial definitions (which typically approximate the semantics of the /// called function) when called by client code. These definitions are /// reconstituted lazily, on-demand, by the static analyzer engine. /// //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_SA_FRONTEND_MODELINJECTOR_H #define LLVM_CLANG_SA_FRONTEND_MODELINJECTOR_H #include "clang/Analysis/CodeInjector.h" #include "llvm/ADT/StringMap.h" namespace clang { class CompilerInstance; class NamedDecl; namespace ento { class ModelInjector : public CodeInjector { … }; } } #endif