You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.7 KiB
47 lines
1.7 KiB
//===--- SanitizerBlacklist.cpp - Blacklist for sanitizers ----------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// User-provided blacklist used to disable/alter instrumentation done in
|
|
// sanitizers.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "clang/Basic/SanitizerBlacklist.h"
|
|
|
|
using namespace clang;
|
|
|
|
SanitizerBlacklist::SanitizerBlacklist(
|
|
const std::vector<std::string> &BlacklistPaths, SourceManager &SM)
|
|
: SCL(llvm::SpecialCaseList::createOrDie(BlacklistPaths)), SM(SM) {}
|
|
|
|
bool SanitizerBlacklist::isBlacklistedGlobal(StringRef GlobalName,
|
|
StringRef Category) const {
|
|
return SCL->inSection("global", GlobalName, Category);
|
|
}
|
|
|
|
bool SanitizerBlacklist::isBlacklistedType(StringRef MangledTypeName,
|
|
StringRef Category) const {
|
|
return SCL->inSection("type", MangledTypeName, Category);
|
|
}
|
|
|
|
bool SanitizerBlacklist::isBlacklistedFunction(StringRef FunctionName) const {
|
|
return SCL->inSection("fun", FunctionName);
|
|
}
|
|
|
|
bool SanitizerBlacklist::isBlacklistedFile(StringRef FileName,
|
|
StringRef Category) const {
|
|
return SCL->inSection("src", FileName, Category);
|
|
}
|
|
|
|
bool SanitizerBlacklist::isBlacklistedLocation(SourceLocation Loc,
|
|
StringRef Category) const {
|
|
return Loc.isValid() &&
|
|
isBlacklistedFile(SM.getFilename(SM.getFileLoc(Loc)), Category);
|
|
}
|
|
|