mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-08 06:38:02 +00:00
6d87ce8bd5
This also handles the case where function name (not its body) is obtained from macro expansion. llvm-svn: 220407
47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
//===--- 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(StringRef BlacklistPath,
|
|
SourceManager &SM)
|
|
: SCL(llvm::SpecialCaseList::createOrDie(BlacklistPath)), 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.isInvalid() &&
|
|
isBlacklistedFile(SM.getFilename(SM.getFileLoc(Loc)), Category);
|
|
}
|
|
|