#include "clang/Analysis/FlowSensitive/Models/ChromiumCheckModel.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclCXX.h"
#include "llvm/ADT/DenseSet.h"
namespace clang {
namespace dataflow {
bool isCheckLikeMethod(llvm::SmallDenseSet<const CXXMethodDecl *> &CheckDecls,
const CXXMethodDecl &D) {
if (!D.isStatic())
return false;
if (CheckDecls.empty()) {
const CXXRecordDecl *ParentClass = D.getParent();
if (ParentClass == nullptr || !ParentClass->getDeclName().isIdentifier() ||
ParentClass->getName() != "CheckError")
return false;
const auto *N =
dyn_cast_or_null<NamespaceDecl>(ParentClass->getDeclContext());
if (N == nullptr || !N->getDeclName().isIdentifier() ||
N->getName() != "logging")
return false;
if (N->getParent() == nullptr || !N->getParent()->isTranslationUnit())
return false;
for (const CXXMethodDecl *M : ParentClass->methods())
if (M->getDeclName().isIdentifier() && M->getName().ends_with("Check"))
CheckDecls.insert(M);
}
return CheckDecls.contains(&D);
}
bool ChromiumCheckModel::transfer(const CFGElement &Element, Environment &Env) {
auto CS = Element.getAs<CFGStmt>();
if (!CS)
return false;
auto Stmt = CS->getStmt();
if (const auto *Call = dyn_cast<CallExpr>(Stmt)) {
if (const auto *M = dyn_cast<CXXMethodDecl>(Call->getDirectCallee())) {
if (isCheckLikeMethod(CheckDecls, *M)) {
Env.assume(Env.arena().makeLiteral(false));
return true;
}
}
}
return false;
}
}
}